7 lines
141 B
Plaintext
7 lines
141 B
Plaintext
|
|
#include <cstdio>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
printf("Simple test running\n");
|
||
|
|
printf("If you see this, CUDA compilation works\n");
|
||
|
|
return 0;
|
||
|
|
}
|