view example/fft/gpu/gpu_task_init.cc @ 1786:ba6ffc679a8f draft

minor fix
author Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp>
date Sat, 30 Nov 2013 21:06:44 +0900
parents e99dc86d39e2
children
line wrap: on
line source

#include "Func.h"
#include "Scheduler.h"
#include "GpuScheduler.h"

void
gpu_task_init(void)
{
    GpuSchedRegister(SPIN_FACT, "gpu/spinFact.cl", "spinFact");
    GpuSchedRegister(BIT_REVERSE, "gpu/bitReverse.cl", "bitReverse");
    GpuSchedRegister(NORMALIZATION, "gpu/norm.cl", "norm");
    GpuSchedRegister(BUTTERFLY, "gpu/butterfly.cl", "butterfly");
    GpuSchedRegister(TRANSPOSE, "gpu/transpose.cl", "transpose");
    GpuSchedRegister(HIGH_PASS_FILTER, "gpu/highPassFilter.cl", "highPassFilter");
}