2019-04-17 10:49:11 +08:00
|
|
|
//
|
|
|
|
// GLConcat.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/GLConcat.hpp"
|
|
|
|
#include "AllShader.hpp"
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "backend/opengl/GLBackend.hpp"
|
|
|
|
#include "core/Macro.h"
|
2019-04-17 10:49:11 +08:00
|
|
|
namespace MNN {
|
2019-05-24 11:26:54 +08:00
|
|
|
namespace OpenGL {
|
2019-07-02 18:01:08 +08:00
|
|
|
GLConcat::GLConcat(const std::vector<Tensor *> &inputs, const Op *op, Backend *bn): Execution(bn) {
|
|
|
|
mAxis = op->main_as_Axis()->axis();
|
|
|
|
mProgram = ((GLBackend *)backend())->getProgram("blit", glsl_blit_glsl);
|
|
|
|
}
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-04-17 10:49:11 +08:00
|
|
|
GLConcat::~GLConcat() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorCode GLConcat::onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) {
|
|
|
|
auto outputTensor = outputs[0];
|
2019-07-02 18:01:08 +08:00
|
|
|
std::vector<int> outputShape = tensorShapeFormat(outputTensor);
|
2019-04-17 10:49:11 +08:00
|
|
|
int dx = 0;
|
|
|
|
int dy = 0;
|
|
|
|
int dz = 0;
|
|
|
|
for (int i = 0; i < inputs.size(); ++i) {
|
|
|
|
auto inputTensor = inputs[i];
|
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
std::vector<int> inputShape = tensorShapeFormat(inputTensor);
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
int sy = inputShape.at(1);
|
|
|
|
int sx = inputShape.at(2);
|
|
|
|
int ic = inputShape.at(3);
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
int sz = UP_DIV(ic, 4);
|
2019-04-17 10:49:11 +08:00
|
|
|
|
2019-05-24 11:26:54 +08:00
|
|
|
mProgram->useProgram();
|
2019-07-25 13:36:35 +08:00
|
|
|
glBindImageTexture(0, (GLuint)outputTensor->deviceId(), 0, GL_TRUE, 0, GL_WRITE_ONLY, ((GLBackend *)backend())->getTextrueFormat());
|
2019-04-17 10:49:11 +08:00
|
|
|
|
2019-07-25 13:36:35 +08:00
|
|
|
glBindImageTexture(1, (GLuint)inputTensor->deviceId(), 0, GL_TRUE, 0, GL_READ_ONLY, ((GLBackend *)backend())->getTextrueFormat());
|
2019-04-17 10:49:11 +08:00
|
|
|
|
|
|
|
OPENGL_CHECK_ERROR;
|
|
|
|
|
|
|
|
glUniform3i(2, 0, 0, 0);
|
|
|
|
glUniform3i(3, dx, dy, dz);
|
|
|
|
glUniform3i(4, sx, sy, sz);
|
|
|
|
|
|
|
|
OPENGL_CHECK_ERROR;
|
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
((GLBackend *)backend())->compute(UP_DIV(sx, 4), UP_DIV(sy, 4), UP_DIV(sz, 4));
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-04-17 10:49:11 +08:00
|
|
|
OPENGL_CHECK_ERROR;
|
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
if (sx != outputShape.at(2)) {
|
2019-04-17 10:49:11 +08:00
|
|
|
dx += sx;
|
2019-07-02 18:01:08 +08:00
|
|
|
} else if (sy != outputShape.at(1)) {
|
2019-04-17 10:49:11 +08:00
|
|
|
dy += sy;
|
|
|
|
} else {
|
|
|
|
dz += sz;
|
|
|
|
}
|
|
|
|
}
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-04-17 10:49:11 +08:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
class ConcatCreator : public GLBackend::Creator {
|
|
|
|
public:
|
|
|
|
virtual ~ConcatCreator() = default;
|
|
|
|
virtual Execution *onCreate(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs,
|
|
|
|
const MNN::Op *op, Backend *backend) const override {
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
auto axis = op->main_as_Axis()->axis();
|
|
|
|
if (0 > axis) {
|
|
|
|
axis = outputs[0]->dimensions() + axis;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < inputs.size(); ++i) {
|
|
|
|
if (inputs[i]->getDimensionType() != Tensor::CAFFE) {
|
|
|
|
// TODO Support NHWC format
|
|
|
|
return nullptr;
|
2019-05-24 11:26:54 +08:00
|
|
|
}
|
|
|
|
}
|
2019-07-02 18:01:08 +08:00
|
|
|
if (axis == 1) {
|
|
|
|
for (int i = 0; i < inputs.size() - 1; ++i) {
|
|
|
|
if (inputs[i]->channel() % 4 != 0) {
|
|
|
|
MNN_PRINT("concat only support 4 alignment, back to cpu !!! \n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
return new GLConcat(inputs, op, backend);
|
2019-05-24 11:26:54 +08:00
|
|
|
}
|
2019-07-02 18:01:08 +08:00
|
|
|
};
|
2019-12-27 22:16:57 +08:00
|
|
|
|
2019-07-02 18:01:08 +08:00
|
|
|
GLCreatorRegister<ConcatCreator> __concat_op(OpType_Concat);
|
2019-05-24 11:26:54 +08:00
|
|
|
} // namespace OpenGL
|
2019-04-17 10:49:11 +08:00
|
|
|
} // namespace MNN
|