From fea32c36114ea0da4dea5140cb2cf73b85044c0c Mon Sep 17 00:00:00 2001 From: Jiri Pittner Date: Wed, 4 Mar 2026 12:51:37 +0100 Subject: [PATCH] cleanup debug prints --- noncblas.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noncblas.cc b/noncblas.cc index 4511d1c..316594a 100644 --- a/noncblas.cc +++ b/noncblas.cc @@ -648,7 +648,7 @@ int clapack_dgesv(const CBLAS_ORDER Order, const int N, const int NRHS, double *A, const int lda, int *ipiv, double *B, const int ldb) { -std::cout <<"In MY clapack_dgesv, N and NRHS = "<< N<<" "<< NRHS<<"\n"; +//std::cout <<"In MY clapack_dgesv, N and NRHS = "<< N<<" "<< NRHS<<"\n"; FINT INFO=0; if(Order!=CblasRowMajor) laerror("CblasRowMajor order asserted"); //B should be in the same physical order, just transpose A in place and the LU result on output