Skip to content

Commit

Permalink
feat: implement rfftn to Paddle Frontend (#23484)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilvny committed Sep 19, 2023
1 parent 2fead11 commit 9dba0fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/demos
Submodule demos updated from 9cb7ad to db3947
2 changes: 1 addition & 1 deletion ivy/functional/frontends/paddle/fft.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def rfftn(x, s=None, axes=None, norm="backward", name=None):
s = x.shape

# Apply rfft along the last axis
rfft_result = ivy.rfftn(x, s=s, axes=axes, norm=norm, name=name)
rfft_result = ivy.rfftn(x, s=s, axes=axes, norm=norm, out=name)

if axes is None:
# If axes is not specified, transform all axes except the last one.
Expand Down

0 comments on commit 9dba0fb

Please sign in to comment.