diff options
Diffstat (limited to 'src/CuBaseLib/cumatrix.tcc')
-rw-r--r-- | src/CuBaseLib/cumatrix.tcc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/CuBaseLib/cumatrix.tcc b/src/CuBaseLib/cumatrix.tcc index 3abca07..fd40349 100644 --- a/src/CuBaseLib/cumatrix.tcc +++ b/src/CuBaseLib/cumatrix.tcc @@ -378,12 +378,13 @@ namespace TNet { size_t n = ((transa=='T' || transa=='t')? A.Cols() : A.Rows()); 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; assert(m == Cols()); assert(n == Rows()); assert(k == k1); - #if 1 + #if 0 //DEBUG MESSAGE std::cout << "\n" << transb << " " << transa << " " << m << " " << n << " " << k << " " << alpha << " " << B << " " << B.Stride() << " " << |