diff options
-rw-r--r-- | src/CuBaseLib/cumatrix.tcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CuBaseLib/cumatrix.tcc b/src/CuBaseLib/cumatrix.tcc index fd40349..59094d8 100644 --- a/src/CuBaseLib/cumatrix.tcc +++ b/src/CuBaseLib/cumatrix.tcc @@ -379,7 +379,7 @@ 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<<m<<"\t"<<Cols()<<"\t"<<n<<"\t"<<Rows()<<std::endl; + std::cout<<A.Rows()<<"\t"<<A.Cols()<<"\t"<<B.Rows()<<"\t"<<B.Cols()<<std::endl; assert(m == Cols()); assert(n == Rows()); assert(k == k1); |