mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-24 02:29:33 +08:00
Fix CUDA syntax error introduced by clang-format.
This commit is contained in:
parent
61b7155d77
commit
383506fcb2
@ -55,7 +55,7 @@ void run_on_gpu(const Kernel& ker, int n, const Input& in, Output& out) {
|
|||||||
typename std::decay<decltype(*d_out)>::type>),
|
typename std::decay<decltype(*d_out)>::type>),
|
||||||
dim3(Grids), dim3(Blocks), 0, 0, ker, n, d_in, d_out);
|
dim3(Grids), dim3(Blocks), 0, 0, ker, n, d_in, d_out);
|
||||||
#else
|
#else
|
||||||
run_on_gpu_meta_kernel<<<Grids, Blocks> > >(ker, n, d_in, d_out);
|
run_on_gpu_meta_kernel<<<Grids, Blocks>>>(ker, n, d_in, d_out);
|
||||||
#endif
|
#endif
|
||||||
// Pre-launch errors.
|
// Pre-launch errors.
|
||||||
gpuError_t err = gpuGetLastError();
|
gpuError_t err = gpuGetLastError();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user