mirror of https://github.com/alibaba/MNN.git
28 lines
610 B
C++
28 lines
610 B
C++
//
|
|
// Execution.cpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2018/07/06.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#include "core/Execution.hpp"
|
|
|
|
namespace MNN {
|
|
|
|
const Execution::Creator* Execution::searchExtraCreator(const std::string& key, MNNForwardType type) {
|
|
// Depercerate
|
|
return nullptr;
|
|
}
|
|
|
|
bool Execution::insertExtraCreator(std::shared_ptr<Creator> creator, const std::string& key, MNNForwardType type) {
|
|
// Depercerate
|
|
return true;
|
|
}
|
|
|
|
bool Execution::removeExtraCreator(const std::string& key, MNNForwardType type) {
|
|
// Depercerate
|
|
return true;
|
|
}
|
|
} // namespace MNN
|