2019-06-24 11:32:41 +08:00
|
|
|
//
|
|
|
|
// GLSoftmax.cpp
|
|
|
|
// MNN
|
|
|
|
//
|
|
|
|
// Created by MNN on 2019/01/31.
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
//
|
|
|
|
|
2020-01-15 13:33:47 +08:00
|
|
|
#include "backend/opengl/GLSoftmax.hpp"
|
2019-06-24 11:32:41 +08:00
|
|
|
#include <sstream>
|
2020-01-15 13:33:47 +08:00
|
|
|
#include "AllShader.hpp"
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "core/Macro.h"
|
|
|
|
#include "core/TensorUtils.hpp"
|
2019-06-24 11:32:41 +08:00
|
|
|
|
|
|
|
namespace MNN {
|
|
|
|
namespace OpenGL {
|
|
|
|
GLSoftmax::GLSoftmax(const std::vector<Tensor *> &inputs, const Op *op, Backend *bn) : Execution(bn) {
|
|
|
|
const auto softmaxParam = op->main_as_Axis();
|
|
|
|
mAxis = softmaxParam->axis();
|
|
|
|
mGLBackend = (GLBackend *)bn;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
GLSoftmax::~GLSoftmax() {
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-06-24 11:32:41 +08:00
|
|
|
}
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-06-24 11:32:41 +08:00
|
|
|
ErrorCode GLSoftmax::onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) {
|
2019-07-02 18:01:08 +08:00
|
|
|
auto input = inputs[0];
|
|
|
|
auto output = outputs[0];
|
2019-06-24 11:32:41 +08:00
|
|
|
std::vector<std::string> prefix;
|
|
|
|
setLocalSize(prefix, mLocalSize, 8, 8, 1);
|
2019-07-02 18:01:08 +08:00
|
|
|
if (mAxis < 0) {
|
|
|
|
mAxis = inputs[0]->dimensions() + mAxis;
|
|
|
|
}
|
2019-06-24 11:32:41 +08:00
|
|
|
if (1 == mAxis) { //channel
|
2019-07-02 18:01:08 +08:00
|
|
|
mProgram = mGLBackend->getProgram("softmax_channel", glsl_softmaxChannel_glsl, prefix);
|
2019-06-24 11:32:41 +08:00
|
|
|
} else if (2 == mAxis) { //height
|
|
|
|
mProgram = mGLBackend->getProgram("softmax_height", glsl_softmaxHeight_glsl, prefix);
|
|
|
|
} else if (3 == mAxis) { //width
|
|
|
|
mProgram = mGLBackend->getProgram("softmax_width", glsl_softmaxWidth_glsl, prefix);
|
|
|
|
} else {
|
|
|
|
MNN_ASSERT(false);
|
|
|
|
}
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorCode GLSoftmax::onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) {
|
|
|
|
|
|
|
|
auto input = inputs[0];
|
|
|
|
auto output = outputs[0];
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
std::vector<int> inputShape = tensorShapeFormat(input);
|
|
|
|
std::vector<int> outputShape = tensorShapeFormat(output);
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
int ib = inputShape.at(0);
|
|
|
|
int ih = inputShape.at(1);
|
|
|
|
int iw = inputShape.at(2);
|
|
|
|
int ic = inputShape.at(3);
|
|
|
|
int ic_4 = UP_DIV(ic, 4);
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
int ob = outputShape.at(0);
|
|
|
|
int oh = outputShape.at(1);
|
|
|
|
int ow = outputShape.at(2);
|
|
|
|
int oc = outputShape.at(3);
|
|
|
|
int oc_4 = UP_DIV(oc, 4);
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
// NC4HW4 input
|
|
|
|
mProgram->useProgram();
|
2019-07-25 13:36:35 +08:00
|
|
|
glBindImageTexture(0, output->deviceId(), 0, GL_TRUE, 0, GL_WRITE_ONLY, ((GLBackend *)backend())->getTextrueFormat());
|
2019-07-02 18:01:08 +08:00
|
|
|
OPENGL_CHECK_ERROR;
|
|
|
|
{
|
|
|
|
int texId = 0;
|
|
|
|
glActiveTexture(GL_TEXTURE0 + texId);
|
|
|
|
glUniform1i(1, texId);
|
|
|
|
glBindTexture(GL_TEXTURE_3D, input->deviceId());
|
2019-06-24 11:32:41 +08:00
|
|
|
OPENGL_CHECK_ERROR;
|
|
|
|
}
|
2019-07-02 18:01:08 +08:00
|
|
|
glUniform1i(2, iw);
|
|
|
|
glUniform1i(3, ih);
|
|
|
|
glUniform1i(4, ic);
|
|
|
|
if (1 == mAxis) { //channel
|
|
|
|
((GLBackend *)backend())->compute(UP_DIV(iw, mLocalSize[0]), UP_DIV(ih, mLocalSize[1]), UP_DIV(ib, mLocalSize[2]));
|
|
|
|
} else if (2 == mAxis) { //height
|
|
|
|
((GLBackend *)backend())->compute(UP_DIV(iw, mLocalSize[0]), UP_DIV(1, mLocalSize[1]), UP_DIV(ic_4*ib, mLocalSize[2]));
|
|
|
|
} else if (3 == mAxis) { //width
|
|
|
|
((GLBackend *)backend())->compute(UP_DIV(1, mLocalSize[0]), UP_DIV(ih, mLocalSize[1]), UP_DIV(ic_4*ib, mLocalSize[2]));
|
|
|
|
} else {
|
|
|
|
MNN_ASSERT(false);
|
|
|
|
}
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-06-24 11:32:41 +08:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
class SoftmaxCreator : public GLBackend::Creator {
|
|
|
|
public:
|
|
|
|
virtual ~SoftmaxCreator() = default;
|
|
|
|
virtual Execution *onCreate(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs,
|
|
|
|
const MNN::Op *op, Backend *backend) const override {
|
|
|
|
if(TensorUtils::getDescribe(inputs[0])->dimensionFormat == MNN_DATA_FORMAT_NHWC){
|
|
|
|
MNN_PRINT("softmax not support dimensionFormat == MNN_DATA_FORMAT_NHWC \n");
|
|
|
|
return nullptr;
|
|
|
|
}else if(inputs[0]->dimensions() == 3 || outputs[0]->dimensions() == 3){
|
|
|
|
MNN_PRINT("softmax not support dimensions == 3 \n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return new GLSoftmax(inputs, op, backend);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
GLCreatorRegister<SoftmaxCreator> __softmax_op(OpType_Softmax);
|
2019-06-24 11:32:41 +08:00
|
|
|
} // namespace OpenGL
|
|
|
|
} // namespace MNN
|