diff options
author | Joe Zhao <ztuowen@gmail.com> | 2014-10-06 22:44:36 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2014-10-06 22:44:36 +0800 |
commit | 0fab92658509a4139d5937eac9149af7c2c96456 (patch) | |
tree | 8aaa551b1c0613dd2ddfc1d07c7d4292ebc3f588 /src/CuBaseLib/cumatrix.tcc | |
parent | 84c51bec05a64b4c3b7be2f68d80d23e6804ed07 (diff) | |
download | tnet-0fab92658509a4139d5937eac9149af7c2c96456.tar.gz tnet-0fab92658509a4139d5937eac9149af7c2c96456.tar.bz2 tnet-0fab92658509a4139d5937eac9149af7c2c96456.zip |
Virtual 10
Diffstat (limited to 'src/CuBaseLib/cumatrix.tcc')
-rw-r--r-- | src/CuBaseLib/cumatrix.tcc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/CuBaseLib/cumatrix.tcc b/src/CuBaseLib/cumatrix.tcc index 59094d8..f64cee0 100644 --- a/src/CuBaseLib/cumatrix.tcc +++ b/src/CuBaseLib/cumatrix.tcc @@ -379,7 +379,6 @@ namespace TNet { size_t k = ((transb=='T' || transb=='t')? B.Cols() : B.Rows()); size_t k1 = ((transa=='T' || transa=='t')? A.Rows() : A.Cols()); - std::cout<<A.Rows()<<"\t"<<A.Cols()<<"\t"<<B.Rows()<<"\t"<<B.Cols()<<std::endl; assert(m == Cols()); assert(n == Rows()); assert(k == k1); |