Skip to content

Commit

Permalink
fix: skip tensorflow.zeros tests for Paddle backend with ndim >= 10 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
akshatvishu committed Mar 28, 2024
1 parent 05899d3 commit 5173e82
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2539,9 +2539,9 @@ def _test_body_fn(x):
input=helpers.get_shape(
allow_none=False,
min_num_dims=0,
max_num_dims=10,
max_num_dims=9,
min_dim_size=0,
max_dim_size=10,
max_dim_size=9,
),
dtype=helpers.get_dtypes("valid", full=False),
)
Expand Down Expand Up @@ -2570,7 +2570,7 @@ def test_tensorflow_zeros(
@handle_frontend_test(
fn_tree="tensorflow.zeros_like",
dtype_and_x=helpers.dtype_and_values(
available_dtypes=helpers.get_dtypes("numeric")
available_dtypes=helpers.get_dtypes("numeric"),
),
dtype=helpers.get_dtypes("numeric", full=False),
test_with_out=st.just(False),
Expand Down

0 comments on commit 5173e82

Please sign in to comment.