Skip to content

Commit

Permalink
...EJB
Browse files Browse the repository at this point in the history
  • Loading branch information
ebylaska committed Mar 18, 2024
1 parent 087ba2c commit 03910a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Nwpw/pspw/cpsd/cpmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ int cpmd(MPI_Comm comm_world0, std::string &rtdbstring)
else
std::cout << " parallel mapping : not balanced" << std::endl;
if (mygrid.staged_gpu_fft_pipeline) std::cout << " parallel mapping : staged gpu fft" << "\n";
if (control.tile_factor() > 1)
if (control.tile_factor() > 0)
std::cout << " GPU tile factor : " << control.tile_factor() << std::endl;

std::cout << "\n options:" << std::endl;
Expand Down
2 changes: 1 addition & 1 deletion Nwpw/pspw/cpsd/cpsd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ int cpsd(MPI_Comm comm_world0, std::string &rtdbstring)
else
std::cout << " parallel mapping : not balanced" << std::endl;
if (mygrid.staged_gpu_fft_pipeline) std::cout << " parallel mapping : staged gpu fft" << std::endl;
if (control.tile_factor() > 1)
if (control.tile_factor() > 0)
std::cout << " GPU tile factor : " << control.tile_factor() << std::endl;

std::cout << "\n options:\n";
Expand Down
2 changes: 1 addition & 1 deletion Nwpw/pspw/minimizer/pspw_geovib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ int pspw_geovib(MPI_Comm comm_world0, std::string &rtdbstring, std::ostream &cou
else
coutput << " parallel mapping : not balanced" << std::endl;
if (mygrid.staged_gpu_fft_pipeline) coutput << " parallel mapping : staged gpu fft" << std::endl;
if (control.tile_factor() > 1)
if (control.tile_factor() > 0)
coutput << " GPU tile factor : " << control.tile_factor() << std::endl;

coutput << "\n options:\n";
Expand Down
2 changes: 1 addition & 1 deletion Nwpw/pspw/minimizer/pspw_minimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ int pspw_minimizer(MPI_Comm comm_world0, std::string &rtdbstring, std::ostream &
else
coutput << " parallel mapping : not balanced" << std::endl;
if (mygrid.staged_gpu_fft_pipeline) coutput << " parallel mapping : staged gpu fft" << std::endl;
if (control.tile_factor() > 1)
if (control.tile_factor() > 0)
coutput << " GPU tile factor : " << control.tile_factor() << std::endl;

coutput << "\n options:\n";
Expand Down

0 comments on commit 03910a7

Please sign in to comment.