예제 #1
0
void register_smooth_functions() {
    add_smooth_function(&smooth, smooth_descr);
    add_smooth_function(&naive_smooth, naive_smooth_descr);
    add_smooth_function(&smooth1,smooth1_descr);
    add_smooth_function(&smooth2, smooth2_descr);
    /*add_smooth_function(&smooth4, smooth4_descr);*/
    add_smooth_function(&smooth5, smooth5_descr);
    /* ... Register additional test functions here */
}
예제 #2
0
파일: kernels.c 프로젝트: kywe665/ECEn-324
void register_smooth_functions() {
    add_smooth_function(&smooth, smooth_descr);
    add_smooth_function(&naive_smooth, naive_smooth_descr);
    /* ... Register additional test functions here */
}
예제 #3
0
파일: kernels.c 프로젝트: hausdorf/hw
void register_smooth_functions() {
    add_smooth_function(&naive_smooth, naive_smooth_descr);
    add_smooth_function(&smooth, smooth_descr);
}