Mercurial > hg > Game > Cerium
view example/fft/cuda/task_init.cc @ 2048:6796d85f3d6b draft
remove error
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 28 Jan 2016 00:05:49 +0900 |
parents | 4cf85b48ab9e |
children |
line wrap: on
line source
#include "Func.h" #include "Scheduler.h" #include "CudaScheduler.h" void gpu_task_init(void) { CudaSchedRegister(SPIN_FACT, "cuda/spinFact.ptx", "spinFact"); CudaSchedRegister(NORMALIZATION, "cuda/norm.ptx", "norm"); CudaSchedRegister(BIT_REVERSE, "cuda/bitReverse.ptx", "bitReverse"); CudaSchedRegister(BUTTERFLY, "cuda/butterfly.ptx", "butterfly"); CudaSchedRegister(TRANSPOSE, "cuda/transpose.ptx", "transpose"); CudaSchedRegister(HIGH_PASS_FILTER, "cuda/highPassFilter.ptx", "highPassFilter"); }