Mentions légales du service

Skip to content
Snippets Groups Projects
Commit fd37d5ee authored by hhakim's avatar hhakim
Browse files

Minor change.

Removing debug outputs.
parent 6f985cf3
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,6 @@ void GivensFGFTParallel<FPP,DEVICE,FPP2>::max_L() ...@@ -22,7 +22,6 @@ void GivensFGFTParallel<FPP,DEVICE,FPP2>::max_L()
MatDense<FPP,DEVICE> L_low = this->L; MatDense<FPP,DEVICE> L_low = this->L;
L_low.abs(); L_low.abs();
L_low = L_low.lower_tri(false); L_low = L_low.lower_tri(false);
cout << " GivensFGFTParallel::max_L() norm(L_low): " << L_low.norm() << endl;
fact_nz_inds = L_low.nonzeros_indices(); fact_nz_inds = L_low.nonzeros_indices();
#ifdef DEBUG_GIVENS #ifdef DEBUG_GIVENS
......
...@@ -55,7 +55,6 @@ namespace Faust ...@@ -55,7 +55,6 @@ namespace Faust
// set init_D from diagonal vector init_D_diag // set init_D from diagonal vector init_D_diag
for(int i=0;i<nbRow;i++) for(int i=0;i<nbRow;i++)
init_D.getData()[i*nbRow+i] = init_D_diag.getData()[i]; init_D.getData()[i*nbRow+i] = init_D_diag.getData()[i];
cout << "src/algorithm/factorization/faust_ParamsFFT.h init_D norm" << init_D.norm() << endl;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment