Skip to content

Commit 4c1bbcc

Browse files
authored
feat: add fft_ifftn base (#184)
* feat: add `fft_ifftn` base * fix: add trailing newline to base header
1 parent 9e4815c commit 4c1bbcc

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

src/base/fft_ifftn.h

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#ifndef INFINI_OPS_BASE_FFT_IFFTN_H_
2+
#define INFINI_OPS_BASE_FFT_IFFTN_H_
3+
4+
#include "operator.h"
5+
6+
namespace infini::ops {
7+
8+
class FftIfftn : public Operator<FftIfftn> {
9+
public:
10+
FftIfftn(const Tensor input, Tensor out)
11+
: input_shape_{input.shape()},
12+
input_strides_{input.strides()},
13+
input_type_{input.dtype()},
14+
out_shape_{out.shape()},
15+
out_strides_{out.strides()},
16+
out_type_{out.dtype()},
17+
device_index_{out.device().index()} {}
18+
19+
virtual void operator()(const Tensor input, Tensor out) const = 0;
20+
21+
protected:
22+
Tensor::Shape input_shape_;
23+
24+
Tensor::Strides input_strides_;
25+
26+
DataType input_type_;
27+
28+
Tensor::Shape out_shape_;
29+
30+
Tensor::Strides out_strides_;
31+
32+
DataType out_type_;
33+
34+
int device_index_{0};
35+
};
36+
37+
} // namespace infini::ops
38+
39+
#endif

0 commit comments

Comments
 (0)