// // VulkanSoftmax.hpp // MNN // // Created by MNN on 2019/01/31. // Copyright © 2018, Alibaba Group Holding Limited // #ifndef VulkanSoftmax_hpp #define VulkanSoftmax_hpp #include #include "VulkanBasicExecution.hpp" #include "VulkanRaster.hpp" namespace MNN { class VulkanSoftmax : public VulkanBasicExecution { public: VulkanSoftmax(const Op* op, Backend* bn); virtual ~VulkanSoftmax(); virtual ErrorCode onEncode(const std::vector& inputs, const std::vector& outputs, const VulkanCommandPool::Buffer* cmdBuffer) override; private: std::shared_ptr mConstBuffer; const VulkanPipeline* mSoftmaxPipeline; std::shared_ptr mDescriptorSet; int mAxis; struct ConvertComponent { std::shared_ptr mTempInputTensor; std::shared_ptr mTempOutputTensor; VulkanRaster::Componet mInputConvert; VulkanRaster::Componet mOutputConvert; }; std::shared_ptr mConvert; }; } // namespace MNN #endif /* VulkanSoftmax_hpp */