mirror of https://github.com/alibaba/MNN.git
39 lines
1012 B
C++
39 lines
1012 B
C++
//
|
|
// BatchToSpaceExecution.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/01/31.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef BatchToSpaceExecution_hpp
|
|
#define BatchToSpaceExecution_hpp
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include "Execution.hpp"
|
|
#include "core/OpenCLBackend.hpp"
|
|
|
|
namespace MNN {
|
|
namespace OpenCL {
|
|
|
|
class BatchToSpaceExecution : public Execution {
|
|
public:
|
|
BatchToSpaceExecution(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend);
|
|
virtual ~BatchToSpaceExecution() = default;
|
|
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
private:
|
|
int mPaddings[2] = {0, 0};
|
|
int mBlockShape[2] = {0, 0};
|
|
cl::Kernel mKernel;
|
|
OpenCLBackend *mOpenCLBackend;
|
|
};
|
|
|
|
} // namespace OpenCL
|
|
} // namespace MNN
|
|
#endif /* BatchToSpaceExecution_hpp */
|