Skip to content

Commit 84cfdb2

Browse files
fix codespell
1 parent 62508c5 commit 84cfdb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csrc/permute_cols.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ static constexpr int div_ceil(int a, int b) { return (a + b - 1) / b; }
1010

1111
// For a given "a" of size [M,K] performs a permutation of the K columns based
1212
// on the given "perm" indices.
13-
// Currently only supports 16bit types (since we permute halfs)
13+
// Currently only supports 16bit types (since we permute half types)
1414
__global__ void permute_cols_kernel(int4 const* __restrict__ a_int4_ptr,
1515
int const* __restrict__ perm_int_ptr,
1616
int4* __restrict__ out_int4_ptr, int size_m,

0 commit comments

Comments
 (0)