From b9246794ba8412d3b94f271db257d96485345acd Mon Sep 17 00:00:00 2001 From: Muhammad Ishaque Nizamani <49721249+MuhammadNizamani@users.noreply.github.com> Date: Sun, 25 Feb 2024 02:08:22 -0800 Subject: [PATCH] Fix Ivy Failing Test: tensorflow - elementwise.pow (#28153) Co-authored-by: NripeshN <86844847+NripeshN@users.noreply.github.com> --- .../test_ivy/test_functional/test_core/test_elementwise.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ivy_tests/test_ivy/test_functional/test_core/test_elementwise.py b/ivy_tests/test_ivy/test_functional/test_core/test_elementwise.py index 5e2dc42aa3322..7f24ba2d6e656 100644 --- a/ivy_tests/test_ivy/test_functional/test_core/test_elementwise.py +++ b/ivy_tests/test_ivy/test_functional/test_core/test_elementwise.py @@ -1630,8 +1630,8 @@ def test_pow(*, dtype_and_x, test_flags, backend_fw, fn_name, on_device): backend_to_test=backend_fw, fn_name=fn_name, on_device=on_device, - rtol_=1e-2, - atol_=1e-2, + rtol_=1e-3, + atol_=1e-3, x1=x[0], x2=x[1], )