Skip to content

Commit 243d05f

Browse files
authored
feat: add maximum base (#334)
1 parent 3634a2c commit 243d05f

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

src/base/maximum.h

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#ifndef INFINI_OPS_BASE_MAXIMUM_H_
2+
#define INFINI_OPS_BASE_MAXIMUM_H_
3+
4+
#include "operator.h"
5+
6+
namespace infini::ops {
7+
8+
class Maximum : public Operator<Maximum> {
9+
public:
10+
Maximum(const Tensor input, const Tensor other, Tensor out)
11+
: input_shape_{input.shape()},
12+
input_strides_{input.strides()},
13+
input_type_{input.dtype()},
14+
other_shape_{other.shape()},
15+
other_strides_{other.strides()},
16+
other_type_{other.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 input, const Tensor other,
23+
Tensor out) const = 0;
24+
25+
protected:
26+
Tensor::Shape input_shape_;
27+
28+
Tensor::Strides input_strides_;
29+
30+
DataType input_type_;
31+
32+
Tensor::Shape other_shape_;
33+
34+
Tensor::Strides other_strides_;
35+
36+
DataType other_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)