Skip to content

Commit

Permalink
Reference
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Chu <justinchu@microsoft.com>
  • Loading branch information
justinchuby committed Sep 21, 2023
1 parent 5a84146 commit a017b3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onnx/reference/ops/op_dft.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _run(self, x: np.ndarray, dft_length: int | None = None, axis: int = 1, inve


class DFT_20(OpRun):
def _run(self, x: np.ndarray, axis: int = -1, dft_length: int | None = None, inverse: bool = False, onesided: bool = False) -> tuple[np.ndarray]: # type: ignore
def _run(self, x: np.ndarray, dft_length: int | None = None, axis: int = -1, inverse: bool = False, onesided: bool = False) -> tuple[np.ndarray]: # type: ignore
if dft_length is None:
dft_length = x.shape[axis]
if inverse: # type: ignore
Expand Down

0 comments on commit a017b3b

Please sign in to comment.