diff --git a/ivy/functional/backends/paddle/elementwise.py b/ivy/functional/backends/paddle/elementwise.py index a9cd43fd5e930..c7b538c640dd1 100644 --- a/ivy/functional/backends/paddle/elementwise.py +++ b/ivy/functional/backends/paddle/elementwise.py @@ -612,6 +612,10 @@ def negative( return paddle.neg(x) +@with_supported_dtypes( + {"2.6.0 and below": ("float32", "float64", "int32", "int64")}, + backend_version, +) def not_equal( x1: Union[float, paddle.Tensor], x2: Union[float, paddle.Tensor],