Skip to content

Commit

Permalink
fix: add unsupported dtype to l1_normalize of jax backend
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel4078 authored Sep 5, 2023
1 parent 3f04ef1 commit 17ffca9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ivy/functional/backends/jax/experimental/norms.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import jax.numpy as jnp
from typing import Optional
from ivy.functional.backends.jax import JaxArray
from ivy.func_wrapper import with_unsupported_dtypes


@with_unsupported_dtypes(
{"0.4.14 and below": ("uint8")}, backend_version
)
def l1_normalize(
x: JaxArray,
/,
Expand Down

0 comments on commit 17ffca9

Please sign in to comment.