MNN/source/backend/vulkan/buffer/execution/VulkanUnary.hpp

34 lines
862 B
C++

//
// VulkanUnary.hpp
// MNN
//
// Created by MNN on 2019/01/31.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef VulkanUnary_hpp
#define VulkanUnary_hpp
#include <stdio.h>
#include "VulkanBasicExecution.hpp"
namespace MNN {
class VulkanUnary : public VulkanBasicExecution {
public:
VulkanUnary(const std::string& midType, Backend* bn, bool isInt, float slope0 = 0.0f, float slope1 = 6.0f, bool iscast = false);
virtual ~VulkanUnary();
ErrorCode onEncode(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
const VulkanCommandPool::Buffer* cmdBuffer) override;
private:
std::shared_ptr<VulkanBuffer> mParam;
const VulkanPipeline* mUnaryPipeline;
std::shared_ptr<VulkanLayout::DescriptorSet> mDesSet;
vec4 mSlopes;
};
} // namespace MNN
#endif /* VulkanUnary_hpp */