mirror of https://github.com/alibaba/MNN.git
31 lines
670 B
C++
31 lines
670 B
C++
//
|
|
// MetalROIPooling.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/01/30.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef MetalROIPooling_hpp
|
|
#define MetalROIPooling_hpp
|
|
|
|
#import "core/Execution.hpp"
|
|
#import "MetalDefine.h"
|
|
|
|
#if MNN_METAL_ENABLED
|
|
namespace MNN {
|
|
|
|
class MetalROIPooling : public Execution {
|
|
public:
|
|
MetalROIPooling(Backend *backend, float spatialScale);
|
|
virtual ~MetalROIPooling() = default;
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
private:
|
|
float mSpatialScale;
|
|
};
|
|
|
|
} // namespace MNN
|
|
#endif /* MNN_METAL_ENABLED */
|
|
#endif /* MetalROIPooling_hpp */
|