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

10 lines
151 B
Plaintext

#include <cstdio>
__global__ void test_kernel() { /* Do nothing */
}
void call_test_kernel(void) {
printf("Hello\n");
test_kernel<<<1, 1>>>();
}