Skip to content

Commit

Permalink
fix: specify complex and bfloat16 as unsupported for msort in paddle …
Browse files Browse the repository at this point in the history
…backend and fix the test (#28460)
  • Loading branch information
MuhammadNizamani committed Mar 8, 2024
1 parent 36a36bf commit 95bd809
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ivy/functional/backends/paddle/sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ def searchsorted(


@with_unsupported_device_and_dtypes(
{"2.6.0 and below": {"cpu": ("int8", "uint8", "int16", "float16", "complex")}},
{
"2.6.0 and below": {
"cpu": ("int8", "uint8", "int16", "float16", "bfloat16", "complex")
}
},
backend_version,
)
def msort(
Expand Down

0 comments on commit 95bd809

Please sign in to comment.