From b13465cfdd5a6341670f1ddfc16daa75b93c2778 Mon Sep 17 00:00:00 2001 From: Chris Kitching Date: Sat, 11 Nov 2017 10:59:26 +0000 Subject: [PATCH] Add a couple of missing CHECK directives to concurrentKernels.cu [ROCm/hip commit: 4ab091ce1eee1e88646bdfb13b869511b0d8bb88] --- projects/hip/tests/hipify-clang/concurentKernels.cu | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/hip/tests/hipify-clang/concurentKernels.cu b/projects/hip/tests/hipify-clang/concurentKernels.cu index e369baaf3e..27e9e0d0e7 100644 --- a/projects/hip/tests/hipify-clang/concurentKernels.cu +++ b/projects/hip/tests/hipify-clang/concurentKernels.cu @@ -99,6 +99,7 @@ int main(int argc, char **argv) // use command-line specified CUDA device, otherwise use device with highest Gflops/s cuda_device = findCudaDevice(argc, (const char **)argv); + // CHECK: hipDeviceProp_t deviceProp; cudaDeviceProp deviceProp; // CHECK: checkCudaErrors(hipGetDevice(&cuda_device)); checkCudaErrors(cudaGetDevice(&cuda_device)); @@ -135,6 +136,7 @@ int main(int argc, char **argv) checkCudaErrors(cudaStreamCreate(&(streams[i]))); } + // CHECK: hipEvent_t start_event, stop_event; // create CUDA event handles cudaEvent_t start_event, stop_event;