From 9e2f3f995d23fb6bfe07889dc40fdf2180d1bec4 Mon Sep 17 00:00:00 2001 From: Pieter Ghysels Date: Fri, 14 Jul 2023 21:02:48 -0700 Subject: [PATCH] Comment printing subnormals --- src/sparse/fronts/FrontalMatrixBLR.cpp | 10 +++++----- src/sparse/fronts/FrontalMatrixDense.cpp | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/sparse/fronts/FrontalMatrixBLR.cpp b/src/sparse/fronts/FrontalMatrixBLR.cpp index f82e8cd4..343360d6 100644 --- a/src/sparse/fronts/FrontalMatrixBLR.cpp +++ b/src/sparse/fronts/FrontalMatrixBLR.cpp @@ -558,11 +558,11 @@ namespace strumpack { (std::size_t& ns, std::size_t& nz) const { auto dns = F11blr_.subnormals() + F12blr_.subnormals() + F21blr_.subnormals(); auto dnz = F11blr_.zeros() + F12blr_.zeros() + F21blr_.zeros(); - if (dns || dnz) - std::cout << "BLR front ds= " << this->dim_sep() - << " du= " << this->dim_upd() - << " subnormals= " << dns - << " zeros= " << dnz << std::endl; + // if (dns || dnz) + // std::cout << "BLR front ds= " << this->dim_sep() + // << " du= " << this->dim_upd() + // << " subnormals= " << dns + // << " zeros= " << dnz << std::endl; ns += dns; nz += dnz; return ReturnCode::SUCCESS; diff --git a/src/sparse/fronts/FrontalMatrixDense.cpp b/src/sparse/fronts/FrontalMatrixDense.cpp index c08a1ce5..3fea551e 100644 --- a/src/sparse/fronts/FrontalMatrixDense.cpp +++ b/src/sparse/fronts/FrontalMatrixDense.cpp @@ -81,11 +81,11 @@ namespace strumpack { (std::size_t& ns, std::size_t& nz) const { auto dns = F11_.subnormals() + F12_.subnormals() + F21_.subnormals(); auto dnz = F11_.zeros() + F12_.zeros() + F21_.zeros(); - if (dns || dnz) - std::cout << "DENSE front ds= " << this->dim_sep() - << " du= " << this->dim_upd() - << " subnormals= " << dns - << " zeros= " << dnz << std::endl; + // if (dns || dnz) + // std::cout << "DENSE front ds= " << this->dim_sep() + // << " du= " << this->dim_upd() + // << " subnormals= " << dns + // << " zeros= " << dnz << std::endl; ns += dns; nz += dnz; return ReturnCode::SUCCESS;