You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix crash in log-mel frontend when waveform samples are integers. (apple#1017)
After updating JAX, this existing hidden bug started causing CI failures.
When the sample dtype is int32 (which is valid), `jnp.finfo` returns None,
even though `jnp.iinfo` is available.
The previous JAX version seemed to handle this case more forgivingly.
```
../axlearn/axlearn/audio/frontend_utils.py:297: in linear_to_log_spectrogram
return jnp.log(jnp.maximum(x, jnp.finfo(x.dtype).tiny))
```
0 commit comments