forked from huawei/mindspore2022
208 lines
6.9 KiB
C++
208 lines
6.9 KiB
C++
/**
|
|
* Copyright 2021 Huawei Technologies Co., Ltd
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#include "coder/coder.h"
|
|
#include <getopt.h>
|
|
#include <iomanip>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include "schema/inner/model_generated.h"
|
|
#include "tools/common/flag_parser.h"
|
|
#include "coder/session.h"
|
|
#include "coder/context.h"
|
|
#include "utils/dir_utils.h"
|
|
#include "securec/include/securec.h"
|
|
#include "src/common/file_utils.h"
|
|
#include "src/common/utils.h"
|
|
#include "coder/coder_config.h"
|
|
|
|
namespace mindspore::lite::micro {
|
|
|
|
class CoderFlags : public virtual FlagParser {
|
|
public:
|
|
CoderFlags() {
|
|
AddFlag(&CoderFlags::is_weight_file_, "isWeightFile", "whether generating weight .net file, true| false", false);
|
|
AddFlag(&CoderFlags::model_path_, "modelPath", "Input model path", "");
|
|
AddFlag(&CoderFlags::code_path_, "codePath", "Input code path", ".");
|
|
AddFlag(&CoderFlags::code_module_name_, "moduleName", "Input code module name", "");
|
|
AddFlag(&CoderFlags::target_, "target", "generateed code target, x86| ARM32M| ARM32A| ARM64", "x86");
|
|
AddFlag(&CoderFlags::code_mode_, "codeMode", "generated code mode, Normal | Android ", "Normal");
|
|
AddFlag(&CoderFlags::debug_mode_, "debugMode", "dump perlayer's time cost and tensor, true | false", false);
|
|
}
|
|
|
|
~CoderFlags() override = default;
|
|
|
|
public:
|
|
std::string model_path_;
|
|
bool is_weight_file_{false};
|
|
std::string code_module_name_;
|
|
std::string code_path_;
|
|
std::string code_mode_;
|
|
bool debug_mode_{false};
|
|
std::string target_;
|
|
};
|
|
|
|
int Coder::Run(const std::string &model_path) {
|
|
session_ = CreateCoderSession();
|
|
if (session_ == nullptr) {
|
|
MS_LOG(ERROR) << "new session failed while running";
|
|
return RET_ERROR;
|
|
}
|
|
STATUS status = session_->Init(model_path);
|
|
if (status != RET_OK) {
|
|
MS_LOG(ERROR) << "Init session failed.";
|
|
return RET_ERROR;
|
|
}
|
|
|
|
status = session_->Build();
|
|
if (status != RET_OK) {
|
|
MS_LOG(ERROR) << "Set Input resize shapes error";
|
|
return status;
|
|
}
|
|
status = session_->Run();
|
|
if (status != RET_OK) {
|
|
MS_LOG(ERROR) << "Generate Code Files error. " << status;
|
|
return status;
|
|
}
|
|
status = session_->GenerateCode();
|
|
if (status != RET_OK) {
|
|
MS_LOG(ERROR) << "Generate Code Files error " << status;
|
|
}
|
|
return status;
|
|
}
|
|
|
|
int Coder::Init(const CoderFlags &flags) const {
|
|
static const std::map<std::string, Target> kTargetMap = {
|
|
{"x86", kX86}, {"ARM32M", kARM32M}, {"ARM32A", kARM32A}, {"ARM64", kARM64}, {"All", kAllTargets}};
|
|
static const std::map<std::string, CodeMode> kCodeModeMap = {{"Normal", Code_Normal}, {"Android", Code_Android}};
|
|
|
|
Configurator *config = Configurator::GetInstance();
|
|
|
|
std::vector<std::function<bool()>> parsers;
|
|
parsers.emplace_back([flags, config]() -> bool {
|
|
config->set_is_weight_file(flags.is_weight_file_);
|
|
return true;
|
|
});
|
|
|
|
parsers.emplace_back([&flags, config]() -> bool {
|
|
auto target_item = kTargetMap.find(flags.target_);
|
|
MS_CHECK_TRUE_RET_BOOL(target_item != kTargetMap.end(), "unsupported target: " + flags.target_);
|
|
config->set_target(target_item->second);
|
|
return true;
|
|
});
|
|
|
|
parsers.emplace_back([&flags, config]() -> bool {
|
|
auto code_item = kCodeModeMap.find(flags.code_mode_);
|
|
MS_CHECK_TRUE_RET_BOOL(code_item != kCodeModeMap.end(), "unsupported code mode: " + flags.code_mode_);
|
|
config->set_code_mode(code_item->second);
|
|
return true;
|
|
});
|
|
|
|
parsers.emplace_back([&flags, config]() -> bool {
|
|
config->set_debug_mode(flags.debug_mode_);
|
|
return true;
|
|
});
|
|
|
|
parsers.emplace_back([&flags, config]() -> bool {
|
|
if (!FileExists(flags.model_path_)) {
|
|
MS_LOG(ERROR) << "code_gen model_path " << flags.model_path_ << " is not valid";
|
|
return false;
|
|
}
|
|
if (flags.code_module_name_.empty() || isdigit(flags.code_module_name_.at(0))) {
|
|
MS_LOG(ERROR) << "code_gen code module name " << flags.code_module_name_
|
|
<< " not valid: it must be given and the first char could not be number";
|
|
return false;
|
|
}
|
|
config->set_module_name(flags.code_module_name_);
|
|
return true;
|
|
});
|
|
|
|
parsers.emplace_back([&flags, config]() -> bool {
|
|
const std::string slash = std::string(kSlash);
|
|
if (!flags.code_path_.empty() && !DirExists(flags.code_path_)) {
|
|
MS_LOG(ERROR) << "code_gen code path " << flags.code_path_ << " is not valid";
|
|
return false;
|
|
}
|
|
config->set_code_path(flags.code_path_);
|
|
if (flags.code_path_.empty()) {
|
|
std::string path = ".." + slash + config->module_name();
|
|
config->set_code_path(path);
|
|
} else {
|
|
if (flags.code_path_.substr(flags.code_path_.size() - 1, 1) != slash) {
|
|
std::string path = flags.code_path_ + slash + config->module_name();
|
|
config->set_code_path(path);
|
|
} else {
|
|
std::string path = flags.code_path_ + config->module_name();
|
|
config->set_code_path(path);
|
|
}
|
|
}
|
|
return InitProjDirs(flags.code_path_, config->module_name()) != RET_ERROR;
|
|
});
|
|
|
|
if (!std::all_of(parsers.begin(), parsers.end(), [](auto &parser) -> bool { return parser(); })) {
|
|
if (!flags.help) {
|
|
std::cerr << flags.Usage() << std::endl;
|
|
return 0;
|
|
}
|
|
return RET_ERROR;
|
|
}
|
|
|
|
auto print_parameter = [](auto name, auto value) {
|
|
MS_LOG(INFO) << std::setw(20) << std::left << name << "= " << value;
|
|
};
|
|
|
|
print_parameter("modelPath", flags.model_path_);
|
|
print_parameter("target", config->target());
|
|
print_parameter("codePath", config->code_path());
|
|
print_parameter("codeMode", config->code_mode());
|
|
print_parameter("codeModuleName", config->module_name());
|
|
print_parameter("isWeightFile", config->is_weight_file());
|
|
print_parameter("debugMode", config->debug_mode());
|
|
|
|
return RET_OK;
|
|
}
|
|
|
|
int RunCoder(int argc, const char **argv) {
|
|
CoderFlags flags;
|
|
Option<std::string> err = flags.ParseFlags(argc, argv, false, false);
|
|
if (err.IsSome()) {
|
|
std::cerr << err.Get() << std::endl;
|
|
std::cerr << flags.Usage() << std::endl;
|
|
return RET_ERROR;
|
|
}
|
|
|
|
if (flags.help) {
|
|
std::cerr << flags.Usage() << std::endl;
|
|
return RET_OK;
|
|
}
|
|
|
|
Coder code_gen;
|
|
STATUS status = code_gen.Init(flags);
|
|
if (status != RET_OK) {
|
|
MS_LOG(ERROR) << "Coder init Error : " << status;
|
|
return status;
|
|
}
|
|
status = code_gen.Run(flags.model_path_);
|
|
if (status != RET_OK) {
|
|
MS_LOG(ERROR) << "Run Coder Error : " << status;
|
|
return status;
|
|
}
|
|
MS_LOG(INFO) << "end of Coder";
|
|
return RET_OK;
|
|
}
|
|
|
|
} // namespace mindspore::lite::micro
|