11 lines
204 B
C
11 lines
204 B
C
|
#ifndef HELLO_WORLD_CU_H
|
||
|
#define HELLO_WORLD_CU_H
|
||
|
|
||
|
extern "C" {
|
||
|
// Declaration of the CUDA function that will be called from C++
|
||
|
void launch_hello_cuda();
|
||
|
void check_cuda();
|
||
|
}
|
||
|
|
||
|
#endif // HELLO_WORLD_CU_H
|