2019-04-17 10:49:11 +08:00
|
|
|
//
|
|
|
|
|
// SizeComputer.cpp
|
|
|
|
|
// MNN
|
|
|
|
|
//
|
|
|
|
|
// Created by MNN on 2019/01/10.
|
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include "SizeComputer.hpp"
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <mutex>
|
|
|
|
|
#include "Macro.h"
|
|
|
|
|
|
|
|
|
|
namespace MNN {
|
2019-05-09 19:39:33 +08:00
|
|
|
#ifdef MNN_CODEGEN_REGISTER
|
|
|
|
|
void registerShapeOps();
|
|
|
|
|
#endif
|
2019-04-17 10:49:11 +08:00
|
|
|
SizeComputerSuite* SizeComputerSuite::gInstance = nullptr;
|
|
|
|
|
|
|
|
|
|
SizeComputerSuite::~SizeComputerSuite() {
|
|
|
|
|
for (auto& iter : mRegistry) {
|
|
|
|
|
delete iter.second;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SizeComputerSuite* SizeComputerSuite::get() {
|
|
|
|
|
if (nullptr == gInstance) {
|
|
|
|
|
gInstance = new SizeComputerSuite;
|
2019-05-09 19:39:33 +08:00
|
|
|
#ifdef MNN_CODEGEN_REGISTER
|
2019-05-08 16:37:43 +08:00
|
|
|
registerShapeOps();
|
2019-05-09 19:39:33 +08:00
|
|
|
#endif
|
2019-04-17 10:49:11 +08:00
|
|
|
}
|
|
|
|
|
return gInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SizeComputerSuite::insert(SizeComputer* t, OpType type) {
|
|
|
|
|
mRegistry.insert(std::make_pair(type, t));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SizeComputer* SizeComputerSuite::search(OpType name) {
|
|
|
|
|
auto iter = mRegistry.find(name);
|
|
|
|
|
if (iter == mRegistry.end()) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
return iter->second;
|
|
|
|
|
}
|
|
|
|
|
float SizeComputer::onComputeFlops(const MNN::Op* op, const std::vector<Tensor*>& inputs,
|
2019-05-09 19:39:33 +08:00
|
|
|
const std::vector<Tensor*>& outputs) const {
|
2019-04-17 10:49:11 +08:00
|
|
|
MNN_ASSERT(outputs.size() >= 1);
|
|
|
|
|
return (float)outputs[0]->elementSize() / 1024.0f / 1024.0f;
|
|
|
|
|
}
|
|
|
|
|
bool SizeComputer::computeOutputSize(const MNN::Op* op, const std::vector<Tensor*>& inputs,
|
|
|
|
|
const std::vector<Tensor*>& outputs) {
|
|
|
|
|
auto computeFactory = SizeComputerSuite::get();
|
|
|
|
|
// When op is nullptr, it means a copy op
|
|
|
|
|
if (nullptr != op) {
|
|
|
|
|
auto computer = computeFactory->search(op->type());
|
|
|
|
|
if (nullptr != computer) {
|
|
|
|
|
bool ret = computer->onComputeSize(op, inputs, outputs);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Default Set to the same
|
|
|
|
|
if (inputs.size() == 1 && outputs.size() == 1) {
|
|
|
|
|
if (inputs[0] == outputs[0]) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
const auto& ib = inputs[0]->buffer();
|
|
|
|
|
auto& ob = outputs[0]->buffer();
|
|
|
|
|
memcpy(ob.dim, ib.dim, sizeof(halide_dimension_t) * ib.dimensions);
|
|
|
|
|
ob.dimensions = ib.dimensions;
|
|
|
|
|
ob.type = ib.type;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
// Not Support
|
|
|
|
|
MNN_PRINT("Can't compute size for %d, name=%s\n", op->type(), op->name()->c_str());
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} // namespace MNN
|