Skip to content

Commit

Permalink
fix: update name.
Browse files Browse the repository at this point in the history
  • Loading branch information
paquiteau committed Feb 13, 2024
1 parent 80159e4 commit bf93674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modopt/opt/linear/wavelet.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def __init__(self,
if compute_backend == "cupy" and ptwt_available:
self.operator = CupyWaveletTransform(wavelet=wavelet_name, shape=shape, level=level, mode=mode)
elif compute_backend == "numpy" and pywt_available:
self.operator = CPUWaveletTransform(wavelet_name=wavelet_name, shape=shape, nb_scales=level, **kwargs)
self.operator = CPUWaveletTransform(wavelet_name=wavelet_name, shape=shape, level=level, **kwargs)
else:
raise ValueError(f"Compute Backend {compute_backend} not available")

Expand Down

0 comments on commit bf93674

Please sign in to comment.