Skip to content

Commit

Permalink
Removesomthing that breaks the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GarethCabournDavies committed Nov 29, 2024
1 parent 35b5889 commit 99c3770
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pycbc/waveform/waveform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1167,8 +1167,8 @@ def td_fd_waveform_transform(approximant):

td_wav = _scheme.ChooseBySchemeDict()
fd_wav = _scheme.ChooseBySchemeDict()
td_wav.update({_scheme.CPUScheme:cpu_td,_scheme.CUDAScheme:cuda_td,_scheme.CUPYScheme:cpu_td,})
fd_wav.update({_scheme.CPUScheme:cpu_fd,_scheme.CUDAScheme:cuda_fd,_scheme.CUPYScheme:cpu_fd,})
td_wav.update({_scheme.CPUScheme:cpu_td,_scheme.CUDAScheme:cuda_td})
fd_wav.update({_scheme.CPUScheme:cpu_fd,_scheme.CUDAScheme:cuda_fd})
sgburst_wav = {_scheme.CPUScheme:cpu_sgburst}

def get_waveform_filter(out, template=None, **kwargs):
Expand Down

0 comments on commit 99c3770

Please sign in to comment.