Skip to content

Commit

Permalink
suppress one instance of console output by 'find_best_params'
Browse files Browse the repository at this point in the history
  • Loading branch information
kostrzewa committed Apr 4, 2022
1 parent ec02c47 commit 55bd8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quda_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -2810,7 +2810,7 @@ void quda_mg_tune_params(void * spinorOut, void * spinorIn, const int max_iter){
}
// when we switch tuning direction, we make sure to start off from the currently
// best set of parameters
int best_idx = find_best_params(tunable_params, i, mg_n_level, 1);
int best_idx = find_best_params(tunable_params, i, mg_n_level, 0);
copy_quda_mg_tunable_params(&cur_params, &tunable_params[best_idx]);
copy_quda_mg_tunable_params(&tunable_params[i], &cur_params);
}
Expand Down

0 comments on commit 55bd8b2

Please sign in to comment.