Skip to content

Commit

Permalink
Adding missing ifft inside S & D modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyfle committed Nov 10, 2024
1 parent 78e1c55 commit 0f6195c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/owl/fftpack/owl_fft_d.mli
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ val fft
-> (Complex.t, complex64_elt) Owl_dense_ndarray_generic.t
-> (Complex.t, complex64_elt) Owl_dense_ndarray_generic.t

val ifft
: ?axis:int
-> ?norm:int
-> ?nthreads:int
-> (Complex.t, complex64_elt) Owl_dense_ndarray_generic.t
-> (Complex.t, complex64_elt) Owl_dense_ndarray_generic.t

val rfft
: ?axis:int
-> ?norm:int
Expand Down
7 changes: 7 additions & 0 deletions src/owl/fftpack/owl_fft_s.mli
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ val fft
-> (Complex.t, complex32_elt) Owl_dense_ndarray_generic.t
-> (Complex.t, complex32_elt) Owl_dense_ndarray_generic.t

val ifft
: ?axis:int
-> ?norm:int
-> ?nthreads:int
-> (Complex.t, complex32_elt) Owl_dense_ndarray_generic.t
-> (Complex.t, complex32_elt) Owl_dense_ndarray_generic.t

val rfft
: ?axis:int
-> ?norm:int
Expand Down

0 comments on commit 0f6195c

Please sign in to comment.