Skip to content

Commit a0afb56

Browse files
committed
wip
1 parent f70ccd0 commit a0afb56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/python/unittest/test_mma_16x8x32_int8.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,11 +366,11 @@ def shared_32x16_to_ldmatrix_32x16_layout(i, j):
366366

367367
a_np = np.random.randint(-128, 128, (M, K)).astype("int8")
368368
b_np = np.random.randint(-128, 128, (K, N)).astype("int8")
369-
c_np = np.dot(a_np.astype("int3232"), b_np.astype("in32"))
369+
c_np = np.dot(a_np.astype("int32"), b_np.astype("int32"))
370370

371371
a = tvm.nd.array(a_np, dev)
372372
b = tvm.nd.array(b_np, dev)
373-
c = tvm.nd.array(np.zeros((16, K), dtype="float32"), dev)
373+
c = tvm.nd.array(np.zeros((M, N), dtype="int32"), dev)
374374

375375
# print(f.imported_modules[0].get_source())
376376
f(a, b, c)

0 commit comments

Comments
 (0)