MNN/source/backend/vulkan/execution/VulkanReduce.hpp

36 lines
879 B
C++

//
// VulkanReduce.hpp
// MNN
//
// Created by MNN on 2020/03/09.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef VulkanReduce_hpp
#define VulkanReduce_hpp
#include "VulkanBasicExecution.hpp"
namespace MNN {
class VulkanReduce : public VulkanBasicExecution {
public:
VulkanReduce(const std::string& name, const Op* op, Backend* bn);
virtual ~VulkanReduce();
ErrorCode onEncode(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
const VulkanCommandPool::Buffer* cmdBuffer) override;
private:
struct Unit {
std::shared_ptr<VulkanPipeline::DescriptorSet> mDescriptorSet;
std::shared_ptr<VulkanBuffer> mConstBuffer;
};
std::vector<std::shared_ptr<VulkanBuffer>> mMidBuffers;
std::vector<Unit> mUnits;
const VulkanPipeline* mPipeline;
const Op* mOp;
};
}
#endif