We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0004cc commit cfc5b68Copy full SHA for cfc5b68
mkl_fft/_scipy_fft_backend.py
@@ -186,8 +186,8 @@ def _check_norm(norm):
186
def _check_plan(plan):
187
if plan is None:
188
return
189
- raise ValueError(
190
- f"Value plan={plan} is currently not supported"
+ raise NotImplementedError(
+ f"Passing a precomputed plan with value={plan} is currently not supported"
191
)
192
193
0 commit comments