// file: lecture_14/01_single_call/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, char* lbl); bool vadd(int* c, int* a, int* b, int N); // declare local GPU functions // __global__ void add(int*c, int* a, int* b, int N); // end of include file // #endif