Skip to content

Commit

Permalink
remove n_jobs gate
Browse files Browse the repository at this point in the history
  • Loading branch information
scottrbrtsn committed Dec 4, 2024
1 parent 57bc1b4 commit bbf0448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne/cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _share_cuda_mem(x):
"""
from mne.fixes import has_numba

if n_jobs == "cuda" and _cuda_capable and has_numba:
if _cuda_capable and has_numba:
from numba import cuda

out = cuda.mapped_array(x.shape, ...)
Expand Down

0 comments on commit bbf0448

Please sign in to comment.