mirror of https://github.com/Jittor/Jittor
remove matmul print
This commit is contained in:
parent
84c10c7a06
commit
bd506460be
|
@ -118,7 +118,7 @@ Example::
|
||||||
# TODO:ugly implementation for tuner
|
# TODO:ugly implementation for tuner
|
||||||
aa = a.reshape((-1, m))
|
aa = a.reshape((-1, m))
|
||||||
cc = matmul(aa, b)
|
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])
|
return cc.reshape(a.shape[:-1] + [k])
|
||||||
for i in range(len_c-2):
|
for i in range(len_c-2):
|
||||||
ai = len_a-(len_c-i)
|
ai = len_a-(len_c-i)
|
||||||
|
|
Loading…
Reference in New Issue