Mentions légales du service

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

Fix bug in pyfaust FaustFactGivensFGFT.hpp, t == 1 wasn't triggering the...

Fix bug in pyfaust FaustFactGivensFGFT.hpp, t == 1 wasn't triggering the Givens algorithm but the parallel Givens algorithm.
parent 1cda1295
Branches
Tags
No related merge requests found
...@@ -15,7 +15,7 @@ FaustCoreCpp<FPP>* fact_givens_fgft(const FPP* Lap, unsigned int num_rows, unsig ...@@ -15,7 +15,7 @@ FaustCoreCpp<FPP>* fact_givens_fgft(const FPP* Lap, unsigned int num_rows, unsig
GivensFGFT<FPP, Cpu, FPP2>* algo; GivensFGFT<FPP, Cpu, FPP2>* algo;
if(t <= 0) if(t <= 1)
{ {
algo = new GivensFGFT<FPP, Cpu, FPP2>(mat_Lap, (int)J, verbosity); algo = new GivensFGFT<FPP, Cpu, FPP2>(mat_Lap, (int)J, verbosity);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment