MNN/source/backend/opencl/execution/image/SoftmaxExecution.hpp

34 lines
845 B
C++
Raw Permalink Normal View History

2019-04-17 10:49:11 +08:00
//
// SoftmaxExecution.hpp
// MNN
//
// Created by MNN on 2019/01/31.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef SoftmaxExecution_hpp
#define SoftmaxExecution_hpp
2024-04-19 11:58:21 +08:00
#include "CommonExecution.hpp"
2019-04-17 10:49:11 +08:00
namespace MNN {
namespace OpenCL {
2024-04-19 11:58:21 +08:00
class SoftmaxExecution : public CommonExecution {
2019-04-17 10:49:11 +08:00
public:
2024-04-19 11:58:21 +08:00
SoftmaxExecution(const std::vector<Tensor *> &inputs, int axis, const MNN::Op *op, Backend *backend);
2019-04-17 10:49:11 +08:00
virtual ~SoftmaxExecution() = default;
2024-04-19 11:58:21 +08:00
virtual ErrorCode onEncode(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
2019-04-17 10:49:11 +08:00
2023-09-20 20:16:25 +08:00
bool buildSoftmaxKernel(int localSize);
2019-04-17 10:49:11 +08:00
private:
2023-09-20 20:16:25 +08:00
int getLocalSize(int size, int maxGroupSize);
2019-04-17 10:49:11 +08:00
uint32_t mMaxWorkGroupSize;
OpenCLBackend *mOpenCLBackend;
int mAxis;
};
} // namespace OpenCL
} // namespace MNN
#endif /* SoftmaxExecution_hpp */