Skip to content

Commit

Permalink
fix: Ivy Failing Test: paddle - manipulation.permute_dims
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadNizamani committed Feb 17, 2024
1 parent 7f2a8b3 commit 5bda3ac
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions ivy/functional/backends/paddle/manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,19 @@ def flip(
return paddle.flip(x, axis)


@with_unsupported_dtypes(
{"2.6.0 and below": ("uint8", "int8", "int16", "bfloat16")}, backend_version
@with_supported_dtypes(
{
"2.6.0 and below": (
"int32",
"int64",
"float64",
"complex128",
"float32",
"complex64",
"bool",
)
},
backend_version,
)
def permute_dims(
x: paddle.Tensor,
Expand Down

0 comments on commit 5bda3ac

Please sign in to comment.