From bd506460be82d8a1024e0c3f6a31a6116bb23058 Mon Sep 17 00:00:00 2001 From: li-xl <1905692338@qq.com> Date: Wed, 21 Oct 2020 11:36:59 +0800 Subject: [PATCH] remove matmul print --- python/jittor/nn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/jittor/nn.py b/python/jittor/nn.py index 6cfd34f0..66447592 100644 --- a/python/jittor/nn.py +++ b/python/jittor/nn.py @@ -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)