From 931cfd03aca8ee5b268867292da63f189911d1e6 Mon Sep 17 00:00:00 2001 From: Sai-Suraj-27 Date: Sun, 25 Feb 2024 20:00:30 +0530 Subject: [PATCH] Fixed paddle.math.floor for jax, torch, and tensorflow backends. --- ivy/functional/frontends/paddle/math.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ivy/functional/frontends/paddle/math.py b/ivy/functional/frontends/paddle/math.py index a70fc6179477f..8fa65a8648615 100644 --- a/ivy/functional/frontends/paddle/math.py +++ b/ivy/functional/frontends/paddle/math.py @@ -257,9 +257,7 @@ def expm1(x, name=None): return ivy.expm1(x) -@with_supported_dtypes( - {"2.6.0 and below": ("bfloat16", "float32", "float64")}, "paddle" -) +@with_supported_dtypes({"2.6.0 and below": ("float32", "float64")}, "paddle") @to_ivy_arrays_and_back def floor(x, name=None): return ivy.floor(x)