Skip to content

Commit 3bef207

Browse files
authored
Bugfix: fix a compilation error (#336)
< < < should be <<<
1 parent ace5f16 commit 3bef207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernels/mat-transpose/mat_transpose.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ __global__ void mat_transpose_f32x4_shared_bcf_row2col2d_kernel(float *x,
334334
dim3 block(WARP_SIZE_S, WARP_SIZE_S); \
335335
dim3 grid((N + WARP_SIZE_S - 1) / (WARP_SIZE_S * n_element_col), \
336336
(M + WARP_SIZE_S - 1) / (WARP_SIZE_S * n_element_row)); \
337-
mat_transpose_##tag##2d_kernel < < < grid, \
337+
mat_transpose_##tag##2d_kernel <<< grid, \
338338
block >>> (reinterpret_cast<element_type *>(x.data_ptr()), \
339339
reinterpret_cast<element_type *>(y.data_ptr()), M, N); \
340340
}

0 commit comments

Comments
 (0)