Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Interpreter / CUDA / device-function.cu
blob396f8f0f93e0cdebd0712fcebebcaf660d5ca7f0
1 // Tests __device__ function calls
2 // RUN: cat %s | clang-repl --cuda | FileCheck %s
4 extern "C" int printf(const char*, ...);
6 __device__ inline void test_device(int* value) { *value = 42; }
7 __global__ void test_kernel(int* value) { test_device(value); }
9 int var;
10 int* devptr = nullptr;
11 printf("cudaMalloc: %d\n", cudaMalloc((void **) &devptr, sizeof(int)));
12 // CHECK: cudaMalloc: 0
14 test_kernel<<<1,1>>>(devptr);
15 printf("CUDA Error: %d\n", cudaGetLastError());
16 // CHECK-NEXT: CUDA Error: 0
18 printf("cudaMemcpy: %d\n", cudaMemcpy(&var, devptr, sizeof(int), cudaMemcpyDeviceToHost));
19 // CHECK-NEXT: cudaMemcpy: 0
21 printf("Value: %d\n", var);
22 // CHECK-NEXT: Value: 42
24 %quit