From 8413d2d6ba1fa9ef5b574438b31c52b8895d7830 Mon Sep 17 00:00:00 2001 From: Aleksa Gordic Date: Thu, 25 Sep 2025 20:05:31 +0000 Subject: [PATCH] Reduce space for space len, remove spurious assert --- examples/matmul/matmul_11.cuh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/matmul/matmul_11.cuh b/examples/matmul/matmul_11.cuh index dea974a..521483e 100644 --- a/examples/matmul/matmul_11.cuh +++ b/examples/matmul/matmul_11.cuh @@ -303,7 +303,7 @@ __device__ static inline void load_async_multicast(bf16 *dst, void const* src_tm template struct Schedule; -constexpr int SPACE_LEN = 128; +constexpr int SPACE_LEN = 16; int *_dspace; template @@ -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;