Closed DanPuzzuoli closed 1 year ago
As discussed in #243, the following function is not JAX compatible:
def signal_from_input(pulse_input): amp = Array(pulse_input[0]) w = pulse_input[1] sig = Signal(amp, carrier_freq = w) return sig(1.)
This is due to the code checking if carrier_freq == 0.0.
carrier_freq == 0.0
I'm pretty surprised this doesn't work - I would have thought this issue would have been caught very early in the development of the project.
As discussed in #243, the following function is not JAX compatible:
This is due to the code checking if
carrier_freq == 0.0
.I'm pretty surprised this doesn't work - I would have thought this issue would have been caught very early in the development of the project.