2019-04-17 10:49:11 +08:00
|
|
|
//
|
|
|
|
// CPUROIPooling.hpp
|
|
|
|
// MNN
|
|
|
|
//
|
|
|
|
// Created by MNN on 2018/07/19.
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CPUROIPooling_hpp
|
|
|
|
#define CPUROIPooling_hpp
|
|
|
|
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "core/Execution.hpp"
|
2024-04-19 11:58:21 +08:00
|
|
|
#include "CPUROIAlign.hpp"
|
2019-04-17 10:49:11 +08:00
|
|
|
|
|
|
|
namespace MNN {
|
|
|
|
|
2024-04-19 11:58:21 +08:00
|
|
|
class CPUROIPooling : public CPUROIAlign {
|
2019-04-17 10:49:11 +08:00
|
|
|
public:
|
2023-03-20 11:32:29 +08:00
|
|
|
CPUROIPooling(Backend *backend, int pooledWidth, int pooledHeight, float spatialScale, bool outputGrad);
|
2019-04-17 10:49:11 +08:00
|
|
|
virtual ~CPUROIPooling() = default;
|
|
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace MNN
|
|
|
|
|
|
|
|
#endif /* CPUROIPooling_hpp */
|