mirror of https://github.com/alibaba/MNN.git
34 lines
933 B
C++
34 lines
933 B
C++
//
|
|
// VulkanBinary.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/01/31.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef VulkanBinary_hpp
|
|
#define VulkanBinary_hpp
|
|
|
|
#include <stdio.h>
|
|
#include "backend/vulkan/execution/VulkanBasicExecution.hpp"
|
|
|
|
namespace MNN {
|
|
class VulkanBinary : public VulkanBasicExecution {
|
|
public:
|
|
VulkanBinary(const std::string& shaderName, Backend* bn, bool image);
|
|
virtual ~VulkanBinary();
|
|
|
|
ErrorCode onEncode(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
|
|
const VulkanCommandPool::Buffer* cmdBuffer) override;
|
|
|
|
private:
|
|
std::shared_ptr<VulkanBuffer> mConstBuffer;
|
|
const VulkanPipeline* mBinaryPipeline;
|
|
std::shared_ptr<VulkanPipeline::DescriptorSet> mDescriptorSet;
|
|
std::vector<std::shared_ptr<VulkanPipeline::DescriptorSet>> mExtraDescriptorSet;
|
|
bool mImage;
|
|
};
|
|
} // namespace MNN
|
|
|
|
#endif /* VulkanBinary_hpp */
|