MNN/source/backend/opencl/execution/image/Interp3DExecution.hpp

36 lines
850 B
C++
Raw Permalink Normal View History

//
2023-07-18 09:36:26 +08:00
// Interp3DExecution.hpp
// MNN
//
// Created by MNN on 2019/02/02.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef Interp3DExecution_hpp
#define Interp3DExecution_hpp
2024-04-19 11:58:21 +08:00
#include "CommonExecution.hpp"
namespace MNN {
namespace OpenCL {
2024-04-19 11:58:21 +08:00
class Interp3DExecution : public CommonExecution {
public:
Interp3DExecution(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend);
virtual ~Interp3DExecution() = default;
2024-04-19 11:58:21 +08:00
virtual ErrorCode onEncode(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
private:
std::vector<uint32_t> mLWS{0, 0, 0, 0};
std::vector<uint32_t> mGWS{0, 0, 0, 0};
uint32_t mMaxWorkGroupSize;
OpenCLBackend *mOpenCLBackend;
float mCordTransform[6];
};
} // namespace OpenCL
} // namespace MNN
#endif /* InterpExecution_hpp */