Skip to content

Commit

Permalink
cuda: default method for t3 is 1
Browse files Browse the repository at this point in the history
  • Loading branch information
janden committed Oct 15, 2024
1 parent b842ccd commit bf96f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cufinufft/impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ int cufinufft_makeplan_impl(int type, int dim, int *nmodes, int iflag, int ntran
*
* For type 2, we always default to method 1 (GM).
*/
if (type == 2) {
if (type == 2 || type == 3) {
d_plan->opts.gpu_method = 1;
} else {
// query the device for the amount of shared memory available
Expand Down

0 comments on commit bf96f5c

Please sign in to comment.