Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oppenheimli committed Aug 13, 2024
1 parent 808b073 commit a8e6171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/merlin/core_kernels.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ __global__ void dump_kernel_v2(const Table<K, V, S>* __restrict table,
size_t tid = blockIdx.x * blockDim.x + threadIdx.x;
size_t N = n * TILE_SIZE;

for (size_t ii = tid; i < N; i += gridDim.x * blockDim.x) {
for (size_t ii = tid; ii < N; ii += gridDim.x * blockDim.x) {
size_t i = ii / TILE_SIZE;

/*
Expand Down

0 comments on commit a8e6171

Please sign in to comment.