diff options
author | Pjotr Prins | 2017-12-06 16:36:11 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-12-06 16:36:11 +0000 |
commit | 29df576cca8052e4aa9142ce1bb0ab490b864976 (patch) | |
tree | f29ec0245a2cd58f9c598d8b3dae53144cc11887 /src/fastblas.cpp | |
parent | 996f70910c675e249fac753273b11555b1b7a4e3 (diff) | |
download | pangemma-29df576cca8052e4aa9142ce1bb0ab490b864976.tar.gz |
Some cleanup on matrix checking
Diffstat (limited to 'src/fastblas.cpp')
-rw-r--r-- | src/fastblas.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fastblas.cpp b/src/fastblas.cpp index 8d4a313..a7adc44 100644 --- a/src/fastblas.cpp +++ b/src/fastblas.cpp @@ -129,6 +129,7 @@ void fast_cblas_dgemm(const enum CBLAS_ORDER Order, enforce(N>0); enforce(K>0); + // cout << sizeof(blasint) << endl; blasint mi = M; blasint ni = N; blasint ki = K; |