mirror of https://github.com/alibaba/MNN.git
39 lines
1003 B
C++
39 lines
1003 B
C++
//
|
|
// CPUInterp.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2018/07/17.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef CPUInterp_hpp
|
|
#define CPUInterp_hpp
|
|
|
|
#include "backend/cpu/CPUResize.hpp"
|
|
|
|
namespace MNN {
|
|
|
|
class CPUInterp : public CPUResizeCommon {
|
|
public:
|
|
CPUInterp(Backend *backend, float widthScale, float heightScale, int resizeType, bool AlignCorners, bool halfPixelCenters);
|
|
virtual ~CPUInterp();
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
private:
|
|
Tensor mWidthPosition;
|
|
Tensor mWidthFactor;
|
|
Tensor mHeightPosition;
|
|
Tensor mHeightFactor;
|
|
Tensor mLineBuffer;
|
|
float mWidthScale;
|
|
float mHeightScale;
|
|
int mResizeType; // 1:near 2: bilinear 3: cubic
|
|
bool mAlignCorners;
|
|
bool mHalfPixelCenters;
|
|
};
|
|
|
|
} // namespace MNN
|
|
|
|
#endif /* CPUInterp_hpp */
|