与用Cython功率谱(Power spectrum with Cython)

2019-09-17 13:48发布

我试图优化我用用Cython代码。 它是做AA功率谱,不使用FFT,因为这是我们被告知在课堂上做的。 我试着写在用Cython代码,但看不出任何区别。 这里是我的代码

#! /usr/bin/env python
# -*- coding: utf8 -*-

from __future__ import division
cimport numpy as np
import numpy as np
cimport cython

@cython.boundscheck(False)
def power_spectrum(time, data, double f_min, double f_max, double df,w=1 ):

    cdef double com,f
    cdef double s,c,sc,cc,ss
    cdef np.ndarray[double, ndim=1] power
    cdef np.ndarray[double, ndim=1] freq

    alfa, beta = [],[] 
    m = np.mean(data)
    data -= m       

    freq = np.arange( f_min,f_max,df )
    for f in freq:
            sft = np.sin(2*np.pi*f*time)
            cft = np.cos(2*np.pi*f*time)
            s   = np.sum( w*data*sft )
            c   = np.sum( w*data*cft )
            ss  = np.sum( w*sft**2  )
            cc  = np.sum( w*cft**2  )
            sc  = np.sum( w*sft*cft )

            alfa.append( ( s*cc-c*sc )/( ss*cc-sc**2 ))
            beta.append( ( c*ss-s*sc )/( ss*cc-sc**2 ))
            com = -(f-f_min)/(f_min-f_max)*100
            print "%0.3f%% complete" %com

    power = np.array(alfa)**2 + np.array(beta)**2
    return freq,power,alfa,beta

的时间和数据经由numpy.loadtxt加载并发送至该功能。 当我做

cython -a power_spectrum.pyx

.html文件很黄,所以不是很有效。 尤其是整个for循环和权力的calulation和返回的一切。

我试图读取用Cython官方指导,但我从来没有在C语言编写的它是有点令人费解。

所有帮助非常preciated :)

Answer 1:

用Cython可以阅读numpy的阵列根据这个 ,但它不会奇迹般地编译东西,如np.sum -你仍然只是调用numpy的方法。

你需要做的是重新写在纯用Cython你的内循环,然后可以编译它。 所以,你需要重新实现np.sumnp.sin等预分配aplfabeta是一个好主意,这样你就不会使用append并尝试cdef尽可能多的变量可能的。

编辑

这里是表示内环完全条件编译(没有黄色)一个完整的例子。 我不知道该代码是正确的,但它应该是一个很好的起点! 特别注意使用的cdef无处不在,打开cdivision和进口sincos标准库中。

from __future__ import division
cimport numpy as np
import numpy as np
cimport cython
from math import pi

cdef extern from "math.h":
    double cos(double theta)
    double sin(double theta)

@cython.boundscheck(False)
@cython.cdivision(True)
def power_spectrum(np.ndarray[double, ndim=1] time, np.ndarray[double, ndim=1] data, double f_min, double f_max, double df, double w=1 ):

    cdef double com,f
    cdef double s,c,sc,cc,ss,t,d
    cdef double twopi = 6.283185307179586
    cdef np.ndarray[double, ndim=1] power
    cdef np.ndarray[double, ndim=1] freq = np.arange( f_min,f_max,df )
    cdef int n = len(freq)
    cdef np.ndarray[double, ndim=1] alfa = np.zeros(n)
    cdef np.ndarray[double, ndim=1] beta = np.zeros(n)
    cdef int ndata = len(data)
    cdef int i, j

    m = np.mean(data)
    data -= m       

    for i in range(ndata):
        f = freq[i]

        s = 0.0
        c = 0.0
        ss = 0.0
        cc = 0.0
        sc = 0.0
        for j in range(n):
            t = time[j]
            d = data[j]
            sf = sin(twopi*f*t)
            cf = cos(twopi*f*t)
            s += w*d*sf
            c += w*d*cf
            ss += w*sf**2
            cc += w*cf**2
            sc += w*sf*cf

        alfa[i] = ( s*cc-c*sc )/( ss*cc-sc**2 )
        beta[i] = ( c*ss-s*sc )/( ss*cc-sc**2 )

    power = np.array(alfa)**2 + np.array(beta)**2
    return freq,power,alfa,beta


文章来源: Power spectrum with Cython