Skip to content
Snippets Groups Projects
Select Git revision
  • c0018df05d1caf84bafc8073aa5dcdb5cf36c79f
  • master default
  • msauth
  • set-sast-config-1
  • email-template
  • 1.4.20 protected
  • 1.4.19 protected
  • 1.4.18 protected
  • 1.4.17 protected
  • 1.4.16 protected
  • 1.4.15 protected
  • 1.4.14 protected
  • 1.4.13 protected
  • 1.4.12 protected
  • 1.4.11-3 protected
  • 1.4.11-2 protected
  • 1.4.11 protected
  • 1.4.10 protected
  • 1.4.9 protected
  • 1.4.8 protected
  • 1.4.7 protected
  • 1.4.6 protected
  • 1.4.5 protected
  • 1.4.4 protected
  • 1.4.3 protected
25 results

email.py

Blame
  • fft_rpi.c 533 B
    #ifdef USE_RPI_FFT
    
    //I had an idea to use the GPU based FFT on Raspberry Pi boards.
    //It would speed up filtering and spectrum display.
    //However, this feature is not implemented yet. I've just started to work on it.
    
    FFT_PLAN_T* make_fft_c(int size, complexf* input, complexf* output, int forward, int benchmark)
    {
    	int hmailbox = mbox_open();
    	int returned = gpu_fft_prepare(hmailbox, log2N, (forward)?GPU_FFT_FWD:GPU_FFT_REV, jobs, &fft);
    }
    
    void fft_execute(FFT_PLAN_T* plan)
    {
    }
    
    void fft_destroy(FFT_PLAN_T* plan)
    {
    }
    
    #endif