Skip to content

Commit 9977876

Browse files
authored
feat: add polar base (#378)
1 parent ce638da commit 9977876

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

src/base/polar.h

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#ifndef INFINI_OPS_BASE_POLAR_H_
2+
#define INFINI_OPS_BASE_POLAR_H_
3+
4+
#include "operator.h"
5+
6+
namespace infini::ops {
7+
8+
class Polar : public Operator<Polar> {
9+
public:
10+
Polar(const Tensor abs, const Tensor angle, Tensor out)
11+
: abs_shape_{abs.shape()},
12+
abs_strides_{abs.strides()},
13+
abs_type_{abs.dtype()},
14+
angle_shape_{angle.shape()},
15+
angle_strides_{angle.strides()},
16+
angle_type_{angle.dtype()},
17+
out_shape_{out.shape()},
18+
out_strides_{out.strides()},
19+
out_type_{out.dtype()},
20+
device_index_{out.device().index()} {}
21+
22+
virtual void operator()(const Tensor abs, const Tensor angle,
23+
Tensor out) const = 0;
24+
25+
protected:
26+
Tensor::Shape abs_shape_;
27+
28+
Tensor::Strides abs_strides_;
29+
30+
DataType abs_type_;
31+
32+
Tensor::Shape angle_shape_;
33+
34+
Tensor::Strides angle_strides_;
35+
36+
DataType angle_type_;
37+
38+
Tensor::Shape out_shape_;
39+
40+
Tensor::Strides out_strides_;
41+
42+
DataType out_type_;
43+
44+
int device_index_{0};
45+
};
46+
47+
} // namespace infini::ops
48+
49+
#endif

0 commit comments

Comments
 (0)