Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Fastest way to call special function (elliptic integral) from cython code for gsl ode_solver()

I am using sage.gsl.ode.ode_solver to solve an ode, and overloading the c_f() function as detailed here.

The code is working using an approximate c_f() function. For the exact one, I need to use the complete elliptic integrals. These are special functions that are not part of the libc.math library. They seem to be available through a couple packages on sage. I found I could call them by using sage.all.elliptic_ec(k) and sage.all.elliptic_kc(k)

This is causing the code to slow down by a factor of about 10^3. I know those special functions are going to be expensive, but timing the elliptic_ec() function in a separate cell returns 0 for the time, so these functions aren't that slow.

I'm wondering if the problem is mostly just that I'm calling a python function from cython and losing the speed up because of that? Is there a better way to do that? There are c libraries available with those functions - would it be better to import the files into my project, and call them from the cython code? (not sure how to do that...) Sage seems to have some gsl packages already - does it also have those special functions through gsl? Is there a different package with a faster form of those functions?

Disclaimer: I've played around with sage a bit in the past, but this is the first intensive numerical simulation I've attempted with it, so sage/python/cython are all relatively new to me. I'm more accustomed to Mathematica, Matlab/Octave and c++

Here are (I believe) the relevant bits of code:

%cython
from libc.math cimport pow
cimport sage.gsl.ode
import sage.gsl.ode
include 'gsl.pxi'

cdef class zeeman_acceleration(sage.gsl.ode.ode_system):
    ... other stuff ...
    cdef double coilFieldR(self, double rp, double zp, double coilR): # T
        cdef double B0, alpha, beta, Q, k
        ... some basic arithmetic ...
        if rp > coilR/10e4 :
            gamma = zp/rp
            EC = sage.all.elliptic_ec(k)
            EK = sage.all.elliptic_kc(k)
            Br = B0*gamma/(self.pi*sqrt(Q))*(EC*(1+alpha**2+beta**2)/(Q-4*alpha)-EK)
            return Br
        return 0
... other stuff (including c_f() function that calls coilField...
click to hide/show revision 2
retagged

Fastest way to call special function (elliptic integral) from cython code for gsl ode_solver()

I am using sage.gsl.ode.ode_solver to solve an ode, and overloading the c_f() function as detailed here.

The code is working using an approximate c_f() function. For the exact one, I need to use the complete elliptic integrals. These are special functions that are not part of the libc.math library. They seem to be available through a couple packages on sage. I found I could call them by using sage.all.elliptic_ec(k) and sage.all.elliptic_kc(k)

This is causing the code to slow down by a factor of about 10^3. I know those special functions are going to be expensive, but timing the elliptic_ec() function in a separate cell returns 0 for the time, so these functions aren't that slow.

I'm wondering if the problem is mostly just that I'm calling a python function from cython and losing the speed up because of that? Is there a better way to do that? There are c libraries available with those functions - would it be better to import the files into my project, and call them from the cython code? (not sure how to do that...) Sage seems to have some gsl packages already - does it also have those special functions through gsl? Is there a different package with a faster form of those functions?

Disclaimer: I've played around with sage a bit in the past, but this is the first intensive numerical simulation I've attempted with it, so sage/python/cython are all relatively new to me. I'm more accustomed to Mathematica, Matlab/Octave and c++

Here are (I believe) the relevant bits of code:

%cython
from libc.math cimport pow
cimport sage.gsl.ode
import sage.gsl.ode
include 'gsl.pxi'

cdef class zeeman_acceleration(sage.gsl.ode.ode_system):
    ... other stuff ...
    cdef double coilFieldR(self, double rp, double zp, double coilR): # T
        cdef double B0, alpha, beta, Q, k
        ... some basic arithmetic ...
        if rp > coilR/10e4 :
            gamma = zp/rp
            EC = sage.all.elliptic_ec(k)
            EK = sage.all.elliptic_kc(k)
            Br = B0*gamma/(self.pi*sqrt(Q))*(EC*(1+alpha**2+beta**2)/(Q-4*alpha)-EK)
            return Br
        return 0
... other stuff (including c_f() function that calls coilField...
click to hide/show revision 3
retagged

Fastest way to call special function (elliptic integral) from cython code for gsl ode_solver()

I am using sage.gsl.ode.ode_solver to solve an ode, and overloading the c_f() function as detailed here.

The code is working using an approximate c_f() function. For the exact one, I need to use the complete elliptic integrals. These are special functions that are not part of the libc.math library. They seem to be available through a couple packages on sage. I found I could call them by using sage.all.elliptic_ec(k) and sage.all.elliptic_kc(k)

This is causing the code to slow down by a factor of about 10^3. I know those special functions are going to be expensive, but timing the elliptic_ec() function in a separate cell returns 0 for the time, so these functions aren't that slow.

I'm wondering if the problem is mostly just that I'm calling a python function from cython and losing the speed up because of that? Is there a better way to do that? There are c libraries available with those functions - would it be better to import the files into my project, and call them from the cython code? (not sure how to do that...) Sage seems to have some gsl packages already - does it also have those special functions through gsl? Is there a different package with a faster form of those functions?

Disclaimer: I've played around with sage a bit in the past, but this is the first intensive numerical simulation I've attempted with it, so sage/python/cython are all relatively new to me. I'm more accustomed to Mathematica, Matlab/Octave and c++

Here are (I believe) the relevant bits of code:

%cython
from libc.math cimport pow
cimport sage.gsl.ode
import sage.gsl.ode
include 'gsl.pxi'

cdef class zeeman_acceleration(sage.gsl.ode.ode_system):
    ... other stuff ...
    cdef double coilFieldR(self, double rp, double zp, double coilR): # T
        cdef double B0, alpha, beta, Q, k
        ... some basic arithmetic ...
        if rp > coilR/10e4 :
            gamma = zp/rp
            EC = sage.all.elliptic_ec(k)
            EK = sage.all.elliptic_kc(k)
            Br = B0*gamma/(self.pi*sqrt(Q))*(EC*(1+alpha**2+beta**2)/(Q-4*alpha)-EK)
            return Br
        return 0
... other stuff (including c_f() function that calls coilField...