// file: lecture_12/example.h // // make sure definitions are only made once // #ifndef ISIP_EXAMPLE #define ISIP_EXAMPLE // system include files // #include "stdio.h" // declare local C/C++ functions // bool vinit(int* a, int N); bool vadd(int* c, int* a, int* b, int N); // declare local GPU functions // __global__ void mykernel(); __global__ void myadd(int*c, int* a, int* b); __global__ void vadd_gpu(int*c, int* a, int* b, int* N); // end of include file // #endif