MNN/source/backend/opencl/execution/buffer/Interp3DBufExecution.hpp

48 lines
1.3 KiB
C++
Raw Normal View History

//
2023-07-18 09:36:26 +08:00
// Interp3DBufExecution.hpp
// MNN
//
// Created by MNN on 2019/02/02.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef MNN_OPENCL_BUFFER_CLOSED
#ifndef Interp3DBufExecution_hpp
#define Interp3DBufExecution_hpp
#include <array>
#include <memory>
#include <vector>
#include "core/Execution.hpp"
#include "backend/opencl/core/OpenCLBackend.hpp"
#include "backend/opencl/core/OpenCLRunningUtils.hpp"
2023-12-27 17:26:44 +08:00
#include "backend/opencl/execution/image/CommonExtension.hpp"
namespace MNN {
namespace OpenCL {
2023-12-27 17:26:44 +08:00
class Interp3DBufExecution : public Execution, public CommonExtension {
public:
Interp3DBufExecution(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend);
virtual ~Interp3DBufExecution() = default;
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:
cl::Kernel mKernel;
std::vector<uint32_t> mLWS{0, 0, 0, 0};
std::vector<uint32_t> mGWS{0, 0, 0, 0};
uint32_t mMaxWorkGroupSize;
std::string mKernelName;
OpenCLBackend *mOpenCLBackend;
float mCordTransform[6];
};
} // namespace OpenCL
} // namespace MNN
#endif /* InterpBufExecution_hpp */
#endif /* MNN_OPENCL_BUFFER_CLOSED */