Skip to content

Commit

Permalink
code updated
Browse files Browse the repository at this point in the history
  • Loading branch information
VaishnaviMudaliar committed Oct 12, 2023
1 parent 30e8ee2 commit 3c821f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ivy/functional/frontends/jax/numpy/fft.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def ifftshift(x, axes=None):

# If axes is None, shift all axes
if axes is None:
axes = list(range(len(shape))
axes = list(range(len(shape)))

# Initialize a list to store the shift values
shift_values = []
Expand Down
2 changes: 1 addition & 1 deletion ivy/functional/frontends/torch/comparison_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def topk(input, k, dim=None, largest=True, sorted=True, *, out=None):


gt = greater
ne = not_equal
ge = greater_equal
le = less_equal
lt = less
ne = not_equal

0 comments on commit 3c821f3

Please sign in to comment.