Skip to content

Commit

Permalink
Comment printing subnormals
Browse files Browse the repository at this point in the history
  • Loading branch information
pghysels committed Jul 15, 2023
1 parent a081f5f commit 9e2f3f9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions src/sparse/fronts/FrontalMatrixBLR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
10 changes: 5 additions & 5 deletions src/sparse/fronts/FrontalMatrixDense.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9e2f3f9

Please sign in to comment.