remove matmul print

This commit is contained in:
li-xl 2020-10-21 11:36:59 +08:00
parent 84c10c7a06
commit bd506460be
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ Example::
# TODO:ugly implementation for tuner
aa = a.reshape((-1, m))
cc = matmul(aa, b)
print(a.shape, b.shape, cc.shape)
# print(a.shape, b.shape, cc.shape)
return cc.reshape(a.shape[:-1] + [k])
for i in range(len_c-2):
ai = len_a-(len_c-i)