Skip to content

Commit

Permalink
fix: fix failing test case at jax backend (#27815)
Browse files Browse the repository at this point in the history
Co-authored-by: NripeshN <[email protected]>
  • Loading branch information
samthakur587 and NripeshN authored Dec 31, 2023
1 parent 980f9c6 commit 4e2905c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ivy/functional/backends/jax/activations.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def leaky_relu(
def relu(
x: JaxArray, /, *, complex_mode="jax", out: Optional[JaxArray] = None
) -> JaxArray:
return jnp.maximum(x, 0)
return jax.nn.relu(x)


def sigmoid(
Expand Down

0 comments on commit 4e2905c

Please sign in to comment.