Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions examples/matmul/matmul_11.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ __device__ static inline void load_async_multicast(bf16 *dst, void const* src_tm
template<int VERSION, int NUM_SM, int BM, int BN, int TM, int TN>
struct Schedule;

constexpr int SPACE_LEN = 128;
constexpr int SPACE_LEN = 16;
int *_dspace;

template<int NUM_SM, int BM, int BN, int TM, int TN>
Expand Down Expand Up @@ -572,7 +572,6 @@ void createHilbert(int M, int N, int CORES, int *space) {
int x, y;
d2xy(dim, i, x, y);
if (x < M && y < N) {
assert(loc < SPACE_LEN);
assert(v[x][y] == '.');
v[x][y] = '*';
++total;
Expand Down