Skip to content

Commit

Permalink
fix: specify the supported types for the tril in paddle frontend(ivy-…
Browse files Browse the repository at this point in the history
  • Loading branch information
ZJay07 authored Mar 16, 2024
1 parent e0791d1 commit aec6e1d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ivy/functional/frontends/paddle/creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,16 +153,16 @@ def to_tensor(data, /, *, dtype=None, place=None, stop_gradient=True):
return paddle_frontend.Tensor(array, dtype=dtype, place=place)


@with_unsupported_dtypes(
@with_supported_dtypes(
{
"2.6.0 and below": (
"uint8",
"int8",
"int16",
"float16",
"bool",
"float64",
"float32",
"int32",
"int64",
"complex64",
"complex128",
"bool",
)
},
"paddle",
Expand Down

0 comments on commit aec6e1d

Please sign in to comment.