summaryrefslogtreecommitdiff
path: root/compiler/mir/include/mir/ops/AvgPool2DOp.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/mir/include/mir/ops/AvgPool2DOp.h')
-rw-r--r--compiler/mir/include/mir/ops/AvgPool2DOp.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/compiler/mir/include/mir/ops/AvgPool2DOp.h b/compiler/mir/include/mir/ops/AvgPool2DOp.h
new file mode 100644
index 000000000..47fe058ee
--- /dev/null
+++ b/compiler/mir/include/mir/ops/AvgPool2DOp.h
@@ -0,0 +1,68 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef _MIR_OPS_AVG_POOL_OP_H_
+#define _MIR_OPS_AVG_POOL_OP_H_
+
+#include "mir/Operation.h"
+#include "mir/Attributes.h"
+
+#include <cstdint>
+#include <vector>
+
+namespace mir
+{
+namespace ops
+{
+
+class AvgPool2DOp : public Operation
+{
+public:
+ AvgPool2DOp(Output *arg, const AvgPool2DOpAttributes &attributes)
+ : Operation(Type::avgPool2D, {arg}), _attributes(attributes)
+ {
+ inferOutputTypes();
+ }
+
+ Operation *copyWithInputs(const std::vector<Output *> &inputs) override
+ {
+ return new AvgPool2DOp(inputs[0], _attributes);
+ };
+
+ const std::vector<std::int32_t> &getWindowSize() const { return _attributes.window; }
+
+ const std::vector<std::int32_t> &getStrides() const { return _attributes.strides; }
+
+ const std::vector<std::int32_t> &getPaddingBefore() const { return _attributes.padding_before; }
+
+ const std::vector<std::int32_t> &getPaddingAfter() const { return _attributes.padding_after; }
+
+ bool getIncludePad() const { return _attributes.include_pad; }
+
+ DataFormat getDataFormat() const { return _attributes.data_format; }
+
+ const AvgPool2DOpAttributes &getAttributes() const { return _attributes; }
+
+private:
+ void inferOutputTypes();
+
+ AvgPool2DOpAttributes _attributes;
+};
+
+} // namespace ops
+} // namespace mir
+
+#endif //_MIR_OPS_AVG_POOL_OP_H_