mirror of
https://github.com/MartinOpat/cuda-based-raytrace.git
synced 2025-06-07 02:13:10 +02:00
17 lines
253 B
Plaintext
17 lines
253 B
Plaintext
#include <iostream>
|
|
#include <cuda_runtime.h>
|
|
|
|
__global__ void hello_from_gpu() {
|
|
printf("Hello from GPU!\n");
|
|
}
|
|
|
|
int main() {
|
|
hello_from_gpu<<<1, 1>>>();
|
|
|
|
cudaDeviceSynchronize();
|
|
|
|
// Reset device
|
|
cudaDeviceReset();
|
|
return 0;
|
|
}
|