summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Zhao <ztuowen@gmail.com>2014-10-06 22:01:34 +0800
committerJoe Zhao <ztuowen@gmail.com>2014-10-06 22:01:34 +0800
commit27657df29fddbe6dbd5c0d340c5528be30e494be (patch)
treeb42a779a48eaa3abff355027d96e9b4c5aad8448
parentc55cbb86f9ca2c26590918e1134c6a47cf4dd3c3 (diff)
downloadtnet-27657df29fddbe6dbd5c0d340c5528be30e494be.tar.gz
tnet-27657df29fddbe6dbd5c0d340c5528be30e494be.tar.bz2
tnet-27657df29fddbe6dbd5c0d340c5528be30e494be.zip
Virtual 9+++++++++
-rw-r--r--src/CuTNetLib/cuBiasedLinearity.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CuTNetLib/cuBiasedLinearity.cc b/src/CuTNetLib/cuBiasedLinearity.cc
index b9ac137..48c9c45 100644
--- a/src/CuTNetLib/cuBiasedLinearity.cc
+++ b/src/CuTNetLib/cuBiasedLinearity.cc
@@ -21,6 +21,7 @@ namespace TNet
BackpropagateFnc(const CuMatrix<BaseFloat>& X, CuMatrix<BaseFloat>& Y)
{
//Y.SetConst(0.0);
+ std::cout<<UID<<":"<<mLinearity.Rows()<<"\t"<<mLinearity.Cols()<<endl;
Y.Gemm('N', 'T', 1.0, X, mLinearity, 0.0);
}