Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcdanie committed Jul 14, 2020
1 parent ee3da8e commit 2a0a3e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kgemm_nt.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ DEVICE_FUNCTION void kgemm_nt(int const mm, int const nn, int const kk,
// reorganize threads as nx_threads by ny_threads
// -----------------------------------------


int const ij_start = threadIdx.x + 1;
int const ij_start = threadIdx.x;
int const ij_size = blockDim.x;

#else
Expand Down

0 comments on commit 2a0a3e1

Please sign in to comment.