diff --git a/test/gpu_common.h b/test/gpu_common.h index 03b9e8f42..3b4aefc25 100644 --- a/test/gpu_common.h +++ b/test/gpu_common.h @@ -55,7 +55,7 @@ void run_on_gpu(const Kernel& ker, int n, const Input& in, Output& out) { typename std::decay::type>), dim3(Grids), dim3(Blocks), 0, 0, ker, n, d_in, d_out); #else - run_on_gpu_meta_kernel<< > >(ker, n, d_in, d_out); + run_on_gpu_meta_kernel<<>>(ker, n, d_in, d_out); #endif // Pre-launch errors. gpuError_t err = gpuGetLastError();