chundoong-lab-ta/APWS23/compile-skeleton/file2.cu

10 lines
151 B
Plaintext
Raw Normal View History

2023-02-15 01:33:28 +09:00
#include <cstdio>
__global__ void test_kernel() { /* Do nothing */
}
void call_test_kernel(void) {
printf("Hello\n");
test_kernel<<<1, 1>>>();
}