From 383506fcb295aa5a090ddbb682e60a3ab0491d20 Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Tue, 5 Dec 2023 14:06:27 -0800 Subject: [PATCH] Fix CUDA syntax error introduced by clang-format. --- test/gpu_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();