MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Compiling Runge-kutta

  • To: mathgroup at smc.vnet.net
  • Subject: [mg125670] Re: Compiling Runge-kutta
  • From: Peter Klamser <klamser at googlemail.com>
  • Date: Wed, 28 Mar 2012 00:33:56 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201203200721.CAA11925@smc.vnet.net>

... I don't think it is useful to compile complex functions.
Mathematica optimizes the code itself an also uses compilation
automatically. In older versions (about 5.0 and earlier) it could be
useful for simple code as a function that was called often. But today
compiling is wasting time during development.

Kind regards

Peter

Am 23. M=E4rz 2012 07:32 schrieb Oliver Ruebenkoenig <ruebenko at wolfram.com>:
>
> Joao,
>
> it's hard to say what the issue is without seeing the code. I suspect you
> get more answers if you actually post your code. Please make sure it is
> complete and easy to copy and past.
>
> Oliver
>
>
>
> On Tue, 20 Mar 2012, Joao wrote:
>
>> Hi there, I've been going through this thread (Vector Runge-Kutta ODE solver with compilation?) and I would like to know if anyone could give me an opinion on the problem I have.
>>
>> Basically I am using the same runge-kutta 4 taken from Jason Cantarella's page than Dmitry was, but I am using the NestList version.
>>
>> I really need to speed up this algorithm. When I did one of the examples you provided on this thread, the compiled version solved it at a duration of 7% of the non compiled version which was pretty cool.
>>
>> My problem was that when I tried to use it on the work I'm doing the compiled and non compiled versions took the same time. My guess is that the compiled version wasn't able to compute and it returned to the non-compiled version.
>>
>> At this moment I don't know if I'm doing something wrong or if the nature of the RHS of the functions I'm using prevents the compiled algorithm to work in a proper way.
>>
>> I can send the code if necessary.
>>
>> Nevertheless, I may advance that my RHS is a system of 6 ODE (hamiltonian), these ODE call other functions (controls). These last functions (controls) are coded in a module box. Inside that box are some implicit functions in R1 (hence a newton algorithm is called) and there is also a switch - if a given condition is above a threshold the control box assumes one form, below that threshold another form is assumed. After all these calculations inside the control box it returns simply a vector of order 3.
>>
>> I would appreciate any help. At the moment I do not know if this is feasible with Compile or not. Maybe I have to put all this different boxes inside a compile?
>>
>> Thanks in advance
>>
>> Joao Pereira
>>
>>
>



  • Prev by Date: Re: Exporting a formula to Excel via copypaste
  • Next by Date: Re: new functional operator
  • Previous by thread: Re: Compiling Runge-kutta
  • Next by thread: Re: Mathematica results different on different