MNN/source/shape/ShapeLSTM.cpp

77 lines
2.5 KiB
C++
Raw Normal View History

2019-04-17 10:49:11 +08:00
//
// ShapeLSTM.cpp
// MNN
//
// Created by MNN on 2019/01/10.
// Copyright © 2018, Alibaba Group Holding Limited
//
2020-11-05 16:41:56 +08:00
#include "shape/SizeComputer.hpp"
2019-12-27 22:16:57 +08:00
#include "core/Macro.h"
#include "core/TensorUtils.hpp"
2019-04-17 10:49:11 +08:00
namespace MNN {
// Size Computer
class LSTMComputer : public SizeComputer {
virtual bool onComputeSize(const MNN::Op *op, const std::vector<Tensor *> &inputs,
const std::vector<Tensor *> &outputs) const override {
2020-11-05 16:41:56 +08:00
if (1 == outputs.size()) {
// For compability for old version model
MNN_ASSERT(2 >= inputs.size());
MNN_ASSERT(1 == outputs.size());
// copy dims
auto &input = inputs[0]->buffer();
auto &output = outputs[0]->buffer();
memcpy(output.dim, input.dim, sizeof(halide_dimension_t) * input.dimensions);
auto LSTM = op->main_as_LSTM();
output.dimensions = 4;
output.dim[3].extent = LSTM->outputCount();
output.dim[2].extent = 1;
output.type = halide_type_of<float>();
TensorUtils::getDescribe(outputs[0])->dimensionFormat = TensorUtils::getDescribe(inputs[0])->dimensionFormat;
return true;
}
// Onnx's LSTM
MNN_ASSERT(inputs.size() >= 4);
MNN_ASSERT(outputs.size() == 3);
auto X = inputs[0];
auto seqLength = X->length(0);
auto batchSize = X->length(1);
auto hiddenSize = op->main_as_LSTM()->outputCount();
auto Y = outputs[0];
auto ht = outputs[1];
auto ct = outputs[2];
Y->buffer().dimensions = 4;
ht->buffer().dimensions = 3;
ct->buffer().dimensions = 3;
Y->setLength(0, seqLength);
int direction = inputs[1]->length(0);
MNN_ASSERT(1 == direction || 2 == direction);
Y->setLength(1, direction);
Y->setLength(2, batchSize);
Y->setLength(3, hiddenSize);
ht->setLength(0, direction);
ht->setLength(1, batchSize);
ht->setLength(2, hiddenSize);
ct->setLength(0, direction);
ct->setLength(1, batchSize);
ct->setLength(2, hiddenSize);
TensorUtils::getDescribe(Y)->dimensionFormat = TensorUtils::getDescribe(X)->dimensionFormat;
TensorUtils::getDescribe(ht)->dimensionFormat = TensorUtils::getDescribe(X)->dimensionFormat;
TensorUtils::getDescribe(ct)->dimensionFormat = TensorUtils::getDescribe(X)->dimensionFormat;
2019-04-17 10:49:11 +08:00
return true;
}
};
REGISTER_SHAPE(LSTMComputer, OpType_LSTM);
} // namespace MNN