You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

dnnengine_manager.cc 22 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
3 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  1. /**
  2. * Copyright 2019-2020 Huawei Technologies Co., Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "engine_manager/dnnengine_manager.h"
  17. #include <cstdio>
  18. #include <fstream>
  19. #include <map>
  20. #include <utility>
  21. #include "framework/common/debug/log.h"
  22. #include "common/ge/ge_util.h"
  23. #include "common/util/error_manager/error_manager.h"
  24. #include "framework/common/debug/ge_log.h"
  25. #include "analyzer/analyzer.h"
  26. #include "graph/ge_context.h"
  27. #include "graph/utils/graph_utils.h"
  28. #include "graph/utils/node_utils.h"
  29. #include "init/gelib.h"
  30. #include "framework/common/types.h"
  31. namespace {
  32. const char *const kSchedulerUnits = "schedule_units";
  33. const char *const kId = "id";
  34. const char *const kName = "name";
  35. const char *const kExAttrs = "ex_attrs";
  36. const char *const kIndependent = "independent";
  37. const char *const kSkipAssignStream = "skip_assign_stream";
  38. const char *const kCalEngines = "cal_engines";
  39. const char *const kAttch = "attach";
  40. const char *const kVectorCore = "VectorCore";
  41. const char *const kVectorEngine = "VectorEngine";
  42. const char *const kAIcoreEngine = "AIcoreEngine";
  43. const char *const kHostCpuEngineName = "DNN_VM_HOST_CPU";
  44. const char *const kHostCpuOpKernelLibName = "DNN_VM_HOST_CPU_OP_STORE";
  45. } // namespace
  46. namespace ge {
  47. namespace {
  48. const std::set<std::string> kNotCpuOp = {DATA, CONSTANT, CONSTANTOP, VARIABLE, NETOUTPUT};
  49. bool ExecOnHostCpu(const OpDescPtr &op_desc) {
  50. bool is_host_cpu_op = (kNotCpuOp.find(op_desc->GetType()) == kNotCpuOp.end());
  51. return ge::GetContext().GetHostExecFlag() && is_host_cpu_op;
  52. }
  53. } // namespace
  54. DNNEngineManager::DNNEngineManager() : init_flag_(false) {}
  55. DNNEngineManager::~DNNEngineManager() {
  56. engines_attrs_map_.clear();
  57. schedulers_.clear();
  58. }
  59. Status DNNEngineManager::Initialize(const std::map<std::string, std::string> &options) {
  60. // Multiple initializations are not supported
  61. if (init_flag_) {
  62. GELOGW("DNNEngineManager has been initialized.");
  63. return SUCCESS;
  64. }
  65. // Load engine so
  66. std::string so_path = "plugin/nnengine/";
  67. std::string path = PluginManager::GetPath();
  68. path.append(so_path);
  69. std::string so_api_func = "GetDNNEngineObjs";
  70. std::vector<std::string> so_func{so_api_func};
  71. Status status = plugin_mgr_.Load(path, so_func);
  72. if (status != SUCCESS) {
  73. GELOGE(status, "[Load][EngineSo]Failed, lib path %s", path.c_str());
  74. REPORT_CALL_ERROR("E19999", "Load engine so failed, lib path %s", path.c_str());
  75. return status;
  76. }
  77. status = plugin_mgr_.InvokeAll<std::map<std::string, DNNEnginePtr> &>(so_api_func, engines_map_);
  78. if (status != SUCCESS) {
  79. GELOGE(status, "[Get][DNNEngineObjs]Failed, so_api_func %s", so_api_func.c_str());
  80. REPORT_CALL_ERROR("E19999", "Get DNNEngineObjs failed, so_api_func %s", so_api_func.c_str());
  81. return status;
  82. }
  83. GELOGI("The number of DNNEngineObjs is %zu.", engines_map_.size());
  84. // Engines initialize
  85. for (auto iter = engines_map_.begin(); iter != engines_map_.end(); ++iter) {
  86. if (iter->second == nullptr) {
  87. GELOGI("Engine: %s point to nullptr", (iter->first).c_str());
  88. continue;
  89. }
  90. GELOGI("DNNEngine name: %s.", (iter->first).c_str());
  91. status = iter->second->Initialize(options);
  92. if (status != SUCCESS) {
  93. GELOGE(status, "[Init][Engine]Failed, engine %s", (iter->first).c_str());
  94. REPORT_CALL_ERROR("E19999", "Initialize engine %s failed", (iter->first).c_str());
  95. return status;
  96. }
  97. // Check engines' attribute
  98. DNNEngineAttribute attrs;
  99. iter->second->GetAttributes(attrs);
  100. if (attrs.runtime_type == RuntimeType::DEVICE) {
  101. if ((attrs.mem_type.size()) != 1 || (attrs.mem_type[0] != GE_ENGINE_ATTR_MEM_TYPE_HBM)) {
  102. GELOGE(GE_ENG_MEMTYPE_ERROR, "[Check][Param]Engine %s in aicore, but the memory type is "
  103. "not HBM, mem_type_size %lu", (iter->first).c_str(), attrs.mem_type.size());
  104. REPORT_INNER_ERROR("E19999", "Engine %s in aicore, but the memory type is not HBM, "
  105. "mem_type_size %lu", (iter->first).c_str(), attrs.mem_type.size());
  106. return GE_ENG_MEMTYPE_ERROR;
  107. }
  108. }
  109. }
  110. status = ParserJsonFile();
  111. if (status != SUCCESS) {
  112. GELOGE(status, "[Parse][JsonFile]Failed");
  113. return status;
  114. }
  115. status = CheckJsonFile();
  116. if (status != SUCCESS) {
  117. GELOGE(status, "[Check][JsonFile]Failed");
  118. return status;
  119. }
  120. init_flag_ = true;
  121. return SUCCESS;
  122. }
  123. Status DNNEngineManager::Finalize() {
  124. // Finalize is not allowed, initialize first is necessary
  125. if (!init_flag_) {
  126. GELOGW("DNNEngineManager has been finalized.");
  127. return SUCCESS;
  128. }
  129. for (auto iter = engines_map_.begin(); iter != engines_map_.end(); ++iter) {
  130. if (iter->second != nullptr) {
  131. GELOGI("DNNEngine name: %s.", (iter->first).c_str());
  132. Status status = iter->second->Finalize();
  133. if (status != SUCCESS) {
  134. GELOGE(status, "[Finalize][Engine]Failed, engine %s", (iter->first).c_str());
  135. REPORT_CALL_ERROR("E19999", "Finalize engine %s failed", (iter->first).c_str());
  136. return status;
  137. }
  138. }
  139. }
  140. init_flag_ = false;
  141. engines_map_.clear();
  142. return SUCCESS;
  143. }
  144. std::shared_ptr<ge::DNNEngine> DNNEngineManager::GetEngine(const std::string &name) const {
  145. auto iter = engines_map_.find(name);
  146. if (iter != engines_map_.end()) {
  147. return iter->second;
  148. }
  149. GELOGW("Failed to get engine object by engine name. %s.", name.c_str());
  150. return nullptr;
  151. }
  152. bool DNNEngineManager::IsEngineRegistered(const std::string &name) {
  153. auto iter = engines_map_.find(name);
  154. if (iter != engines_map_.end()) {
  155. return true;
  156. }
  157. GELOGW("Engine: %s is not Registered", name.c_str());
  158. return false;
  159. }
  160. void DNNEngineManager::InitPerformanceStaistic() {
  161. std::lock_guard<std::mutex> lock(mutex_);
  162. checksupport_cost_.clear();
  163. }
  164. const map<string, uint64_t> &DNNEngineManager::GetCheckSupportCost() const {
  165. std::lock_guard<std::mutex> lock(mutex_);
  166. return checksupport_cost_;
  167. }
  168. std::string DNNEngineManager::GetDNNEngineName(const ge::NodePtr &node_ptr) {
  169. std::lock_guard<std::mutex> lock(mutex_);
  170. GE_IF_BOOL_EXEC(node_ptr == nullptr, GELOGE(GE_CLI_GE_NOT_INITIALIZED, "DNNEngineManager: node_ptr is nullptr");
  171. return "");
  172. auto op_desc = node_ptr->GetOpDesc();
  173. GE_IF_BOOL_EXEC(op_desc == nullptr, GELOGE(GE_CLI_GE_NOT_INITIALIZED, "DNNEngineManager: op_desc is nullptr");
  174. return "");
  175. // Use the OpsKernelManager in GELib to get the opInfos for this opCode
  176. std::shared_ptr<GELib> instance_ptr = ge::GELib::GetInstance();
  177. if ((instance_ptr == nullptr) || (!instance_ptr->InitFlag())) {
  178. GELOGE(GE_CLI_GE_NOT_INITIALIZED, "[Get][DNNEngineName]Failed, gelib not init before");
  179. REPORT_INNER_ERROR("E19999", "Get DNNEngineName failed, gelib not init before");
  180. return "";
  181. }
  182. OpsKernelManager &ops_kernel_manager = instance_ptr->OpsKernelManagerObj();
  183. std::vector<OpInfo> op_infos = ops_kernel_manager.GetOpsKernelInfo(op_desc->GetType());
  184. if (op_infos.empty()) {
  185. GELOGI("DNNEngineManager: Can not get op info by op type %s", op_desc->GetType().c_str());
  186. return "";
  187. }
  188. GE_IF_BOOL_EXEC(ExecOnHostCpu(op_desc), return GetHostCpuEngineName(op_infos, op_desc));
  189. std::string ge_core_type;
  190. Status ret = ge::GetContext().GetOption(ge::CORE_TYPE, ge_core_type);
  191. GE_IF_BOOL_EXEC(ret != SUCCESS, GELOGD("get the option CORE_TYPE fail, set it to default value VECTOR_ENGINE"));
  192. std::string exclude_core_Type = (ge_core_type == kVectorCore) ? kAIcoreEngine : kVectorEngine;
  193. GELOGD("engine type will exclude: %s", exclude_core_Type.c_str());
  194. auto root_graph = ge::GraphUtils::FindRootGraph(node_ptr->GetOwnerComputeGraph());
  195. std::map<std::string, std::string> unsupported_reasons;
  196. for (const auto &it : op_infos) {
  197. if (it.engine == exclude_core_Type) {
  198. continue;
  199. }
  200. auto &kernel_map = ops_kernel_manager.GetAllOpsKernelInfoStores();
  201. auto &kernel_name = it.opKernelLib;
  202. auto kernel_info_store = kernel_map.find(kernel_name);
  203. if (kernel_info_store != kernel_map.end()) {
  204. std::string unsupported_reason;
  205. // It will be replaced by engine' checksupport
  206. uint64_t start_time = GetCurrentTimestamp();
  207. if (kernel_info_store->second->CheckSupported(node_ptr, unsupported_reason)) {
  208. checksupport_cost_[kernel_name] += GetCurrentTimestamp() - start_time;
  209. op_desc->SetOpEngineName(it.engine);
  210. op_desc->SetOpKernelLibName(kernel_name);
  211. // set attrs for taking information when load txt to graph object
  212. if (it.flagAsync) {
  213. GELOGD("Set aicpu blocking op:%s attribute(is_blocking_op):true", op_desc->GetName().c_str());
  214. (void)AttrUtils::SetBool(op_desc, ATTR_NAME_IS_BLOCKING_OP, true);
  215. }
  216. (void) AttrUtils::SetStr(op_desc, ATTR_NAME_ENGINE_NAME_FOR_LX, it.engine);
  217. (void) AttrUtils::SetStr(op_desc, ATTR_NAME_KKERNEL_LIB_NAME_FOR_LX, kernel_name);
  218. GELOGD("DNNEngineManager:Set OpKernelLibName %s and engine name %s to op_desc %s", kernel_name.c_str(),
  219. it.engine.c_str(), op_desc->GetName().c_str());
  220. return it.engine;
  221. } else {
  222. checksupport_cost_[kernel_name] += GetCurrentTimestamp() - start_time;
  223. unsupported_reasons.emplace(kernel_name, unsupported_reason);
  224. GELOGI("DNNEngineManager:Check support failed, kernel_name is %s, op type is %s, op name is %s",
  225. kernel_name.c_str(), op_desc->GetType().c_str(), op_desc->GetName().c_str());
  226. if (!op_desc->HasAttr("_is_ge_op")) {
  227. ErrorManager::GetInstance().ATCReportErrMessage("W11001", {"opname"}, {op_desc->GetName()});
  228. }
  229. }
  230. } else {
  231. GELOGW(
  232. "DNNEngineManager:Can not find any supported ops kernel info store by kernel_name %s,"
  233. "op type is %s, op name is %s",
  234. kernel_name.c_str(), op_desc->GetType().c_str(), op_desc->GetName().c_str());
  235. }
  236. }
  237. // concat unsupported reasons analyzed data selection
  238. string reason;
  239. for (const auto &it : unsupported_reasons) {
  240. reason += it.first + ":" + it.second + ";";
  241. ErrorManager::GetInstance().ATCReportErrMessage(
  242. "E13002", {"optype", "opskernel", "reason"}, {op_desc->GetType(), it.first, it.second});
  243. GELOGE(GE_GRAPH_ASSIGN_ENGINE_FAILED, "[Check][OpSupported]Op type %s of ops kernel %s "
  244. "is unsupported, reason : %s",
  245. op_desc->GetType().c_str(), it.first.c_str(), it.second.c_str());
  246. }
  247. analyzer::DataInfo analyze_info{root_graph->GetSessionID(), root_graph->GetGraphID(),
  248. analyzer::CHECKSUPPORT, node_ptr, reason};
  249. // do not change original process
  250. (void)Analyzer::GetInstance()->DoAnalyze(analyze_info);
  251. ErrorManager::GetInstance().ATCReportErrMessage(
  252. "E13003", {"opname", "optype"}, {op_desc->GetName(), op_desc->GetType()});
  253. GELOGE(GE_GRAPH_ASSIGN_ENGINE_FAILED, "[Get][DNNEngineName]Can't find any supported ops kernel "
  254. "and engine of %s, type is %s",
  255. op_desc->GetName().c_str(), op_desc->GetType().c_str());
  256. return "";
  257. }
  258. std::string DNNEngineManager::GetHostCpuEngineName(const std::vector<OpInfo> &op_infos,
  259. const OpDescPtr &op_desc) const {
  260. for (const auto &it : op_infos) {
  261. if ((it.engine == kHostCpuEngineName) && (it.opKernelLib == kHostCpuOpKernelLibName)) {
  262. op_desc->SetOpEngineName(kHostCpuEngineName);
  263. op_desc->SetOpKernelLibName(kHostCpuOpKernelLibName);
  264. GELOGI("DNNEngineManager: Set OpKernelLibName %s and OpEngineName %s to %s",
  265. kHostCpuOpKernelLibName, kHostCpuEngineName, op_desc->GetName().c_str());
  266. return kHostCpuEngineName;
  267. }
  268. }
  269. GELOGE(FAILED, "[Get][HostCpuEngineName]Failed, HostCpuEngine not support [%s, %s]",
  270. op_desc->GetName().c_str(), op_desc->GetType().c_str());
  271. REPORT_INNER_ERROR("E19999", "Get HostCpuEngineName failed, HostCpuEngine not support [%s, %s]",
  272. op_desc->GetName().c_str(), op_desc->GetType().c_str());
  273. return "";
  274. }
  275. const std::map<std::string, SchedulerConf> &DNNEngineManager::GetSchedulers() const { return schedulers_; }
  276. Status DNNEngineManager::ParserJsonFile() {
  277. GELOGI("Begin to parser json file");
  278. std::string json_file_path = "plugin/nnengine/ge_config/engine_conf.json";
  279. std::string path = PluginManager::GetPath();
  280. path.append(json_file_path);
  281. nlohmann::json scheduler_json_file;
  282. Status status = ReadJsonFile(path, &scheduler_json_file);
  283. if (status != SUCCESS) {
  284. GELOGE(FAILED, "[Read][JsonFile]Failed, file %s", path.c_str());
  285. REPORT_CALL_ERROR("E19999", "Read json file %s failed", path.c_str());
  286. return FAILED;
  287. }
  288. if (scheduler_json_file.is_null()) {
  289. // when engine_conf.json is not exist, just return success
  290. GELOGW("Json file is null");
  291. return SUCCESS;
  292. }
  293. try {
  294. nlohmann::json scheduler_utils_json = scheduler_json_file[kSchedulerUnits];
  295. if (scheduler_utils_json.is_null()) {
  296. GELOGE(FAILED, "[Check[Param]Find scheduler units failed, the message is null, file %s", path.c_str());
  297. REPORT_INNER_ERROR("E19999", "Find scheduler units failed, the message is null, file %s", path.c_str());
  298. return FAILED;
  299. }
  300. if (!scheduler_utils_json.is_array()) {
  301. GELOGE(FAILED, "[Check][Param]The message of kSchedulerUnits is not array and "
  302. "the file path is %s", path.c_str());
  303. REPORT_INNER_ERROR("E19999", "The message of kSchedulerUnits is not array and "
  304. "the file path is %s", path.c_str());
  305. return FAILED;
  306. }
  307. auto size = scheduler_json_file[kSchedulerUnits].size();
  308. for (size_t i = 0; i < size; i++) {
  309. SchedulerConf scheduler_conf;
  310. std::map<std::string, EngineConfPtr> engine_conf_map;
  311. nlohmann::json engines_json_map = scheduler_utils_json[i][kCalEngines];
  312. if (engines_json_map.is_null()) {
  313. GELOGE(FAILED, "[Check][Param]The message of cal_engines is null, file %s", path.c_str());
  314. REPORT_INNER_ERROR("E19999", "The message of cal_engines is null, file %s", path.c_str());
  315. return FAILED;
  316. }
  317. std::string scheduler_id_temp = scheduler_utils_json[i][kId];
  318. if (!scheduler_id_temp.empty()) {
  319. scheduler_conf.id = scheduler_id_temp;
  320. } else {
  321. GELOGE(FAILED, "[Check][Param]Scheduler ID is null, file %s", path.c_str());
  322. REPORT_INNER_ERROR("E19999", "Scheduler ID is null, file %s", path.c_str());
  323. return FAILED;
  324. }
  325. status = ParserEngineMessage(engines_json_map, scheduler_id_temp, engine_conf_map);
  326. if (status != SUCCESS) {
  327. GELOGE(FAILED, "[Parse][EngineMessage]Failed, scheduler_id_temp %s", scheduler_id_temp.c_str());
  328. REPORT_CALL_ERROR("E19999", "Parse engine message failed, scheduler_id_temp %s",
  329. scheduler_id_temp.c_str());
  330. return FAILED;
  331. }
  332. scheduler_conf.name = scheduler_utils_json[i][kName];
  333. scheduler_conf.ex_attrs = scheduler_utils_json[i][kExAttrs];
  334. scheduler_conf.cal_engines = engine_conf_map;
  335. auto it = schedulers_.find(scheduler_id_temp);
  336. if (it != schedulers_.end()) {
  337. GELOGE(FAILED, "[Check][Param]There are the same scheduler ts %s in the json file",
  338. scheduler_id_temp.c_str());
  339. REPORT_INNER_ERROR("E19999", "[Check][Param]There are the same scheduler ts %s "
  340. "in the json file", scheduler_id_temp.c_str());
  341. return FAILED;
  342. }
  343. schedulers_.emplace(scheduler_id_temp, scheduler_conf);
  344. }
  345. } catch (const nlohmann::detail::type_error &e) {
  346. GELOGE(FAILED, "[Parse][JsonFile]Failed, file %s, reason %s", path.c_str(), e.what());
  347. REPORT_CALL_ERROR("E19999", "Parse json file %s failed, reason %s", path.c_str(), e.what());
  348. return FAILED;
  349. }
  350. GELOGI("Parser json file SUCCESS");
  351. return SUCCESS;
  352. }
  353. Status DNNEngineManager::ParserEngineMessage(const json engines_json, const std::string &scheduler_mark,
  354. std::map<std::string, EngineConfPtr> &engines) {
  355. GELOGI("Begin to parser engine massage");
  356. if (engines_json.is_null()) {
  357. GELOGE(FAILED, "[Check][Param]The message of cal_engines is null");
  358. REPORT_INNER_ERROR("E19999", "The message of cal_engines is null");
  359. return FAILED;
  360. }
  361. try {
  362. if (engines_json.is_array()) {
  363. for (size_t i = 0; i < engines_json.size(); i++) {
  364. nlohmann::json engines_elems = engines_json[i];
  365. EngineConfPtr engine_conf_ptr = MakeShared<EngineConf>();
  366. if (engine_conf_ptr == nullptr) {
  367. return FAILED;
  368. }
  369. std::string engine_id = engines_elems[kId];
  370. if (!engine_id.empty()) {
  371. engine_conf_ptr->id = engine_id;
  372. } else {
  373. GELOGE(FAILED, "[Check][Param]Engine ID is null");
  374. REPORT_INNER_ERROR("E19999", "Engine ID is null");
  375. return FAILED;
  376. }
  377. if (engines_elems.find(kName) != engines_elems.end()) {
  378. engine_conf_ptr->name = engines_elems[kName];
  379. } else {
  380. GELOGW("The engine %s name is null", engine_id.c_str());
  381. }
  382. if (engines_elems.find(kIndependent) != engines_elems.end()) {
  383. engine_conf_ptr->independent = engines_elems[kIndependent];
  384. }
  385. if (engines_elems.find(kAttch) != engines_elems.end()) {
  386. engine_conf_ptr->attach = engines_elems[kAttch];
  387. }
  388. if (engines_elems.find(kSkipAssignStream) != engines_elems.end()) {
  389. engine_conf_ptr->skip_assign_stream = engines_elems[kSkipAssignStream];
  390. }
  391. engine_conf_ptr->scheduler_id = scheduler_mark;
  392. auto it = engines.find(engine_id);
  393. if (it != engines.end()) {
  394. GELOGE(FAILED, "[Check][Param]There are the same engine %s message in the json file",
  395. engine_id.c_str());
  396. REPORT_INNER_ERROR("E19999", "There are the same engine %s message in the json file",
  397. engine_id.c_str());
  398. return FAILED;
  399. }
  400. engines.emplace(engine_id, engine_conf_ptr);
  401. }
  402. } else {
  403. GELOGE(FAILED, "[Check][Param]The message of cal_engines is not array in the json file");
  404. REPORT_INNER_ERROR("E19999", "The message of cal_engines is not array in the json file");
  405. return FAILED;
  406. }
  407. } catch (const json::exception &e) {
  408. GELOGE(FAILED, "[Construct][JsonContent]Failed, reason %s", e.what());
  409. REPORT_INNER_ERROR("E19999", "Construct json content failed, reason %s", e.what());
  410. return FAILED;
  411. }
  412. GELOGI("Parser engine massage success");
  413. return SUCCESS;
  414. }
  415. Status DNNEngineManager::ReadJsonFile(const std::string &file_path, JsonHandle handle) {
  416. GELOGD("Begin to read json file");
  417. if (file_path.empty()) {
  418. GELOGE(FAILED, "[Check][Param]Json path is empty");
  419. REPORT_INNER_ERROR("E19999", "Json path is empty");
  420. return FAILED;
  421. }
  422. nlohmann::json *json_file = reinterpret_cast<nlohmann::json *>(handle);
  423. if (json_file == nullptr) {
  424. GELOGE(FAILED, "[Check][Param]Json file is nullptr");
  425. REPORT_CALL_ERROR("E19999", "Json file is nullptr");
  426. return FAILED;
  427. }
  428. const char *file = file_path.data();
  429. if ((mmAccess2(file, M_F_OK)) != EN_OK) {
  430. if (engines_map_.size() != 0) {
  431. GELOGE(FAILED, "[Check][Param]The json file %s not exists, err %s",
  432. file_path.c_str(), strerror(errno));
  433. REPORT_CALL_ERROR("E19999", "Json file %s not exists, err %s",
  434. file_path.c_str(), strerror(errno));
  435. return FAILED;
  436. } else {
  437. GELOGW("The json file %s is not needed.", file_path.c_str());
  438. return SUCCESS;
  439. }
  440. }
  441. std::ifstream ifs(file_path);
  442. if (!ifs.is_open()) {
  443. GELOGE(FAILED, "[Open][JsonFile]Failed, file %s", file_path.c_str());
  444. REPORT_CALL_ERROR("E19999", "Open json file %s failed", file_path.c_str());
  445. return FAILED;
  446. }
  447. try {
  448. ifs >> *json_file;
  449. } catch (const json::exception &e) {
  450. GELOGE(FAILED, "[Read][JsonFile]Failed, reason %s", e.what());
  451. REPORT_CALL_ERROR("E19999", "Read json file failed, reason %s", e.what());
  452. ifs.close();
  453. return FAILED;
  454. }
  455. ifs.close();
  456. GELOGD("Read json file success");
  457. return SUCCESS;
  458. }
  459. Status DNNEngineManager::CheckJsonFile() {
  460. GELOGD("Begin to check json file");
  461. for (auto &it : engines_map_) {
  462. std::string engine_name = it.first;
  463. int count = 0;
  464. for (auto &iter : schedulers_) {
  465. auto engine_map = iter.second.cal_engines;
  466. auto iter_engine_name = engine_map.find(engine_name);
  467. if (iter_engine_name != engine_map.end()) {
  468. count++;
  469. }
  470. }
  471. if (count == 0) {
  472. GELOGE(FAILED, "[Check][JsonFile]The engine message %s is not found in the json file",
  473. engine_name.c_str());
  474. REPORT_INNER_ERROR("E19999", "The engine message %s is not found in the json file",
  475. engine_name.c_str());
  476. return FAILED;
  477. }
  478. if (count > 1) {
  479. GELOGE(FAILED, "[Check][JsonFile]The same engine message %s exists in the json file",
  480. engine_name.c_str());
  481. REPORT_INNER_ERROR("E19999", "The same engine message %s exists in the json file",
  482. engine_name.c_str());
  483. return FAILED;
  484. }
  485. }
  486. GELOGD("Check json file success");
  487. return SUCCESS;
  488. }
  489. } // namespace ge

图引擎模块(GE)是MindSpore的一个子模块,其代码由C++实现,位于前端模块ME和底层硬件之间,起到承接作用。图引擎模块以ME下发的图作为输入,然后进行一系列的深度图优化操作,最后输出一张可以在底层硬件上高效运行的图。GE针对昇腾AI处理器的硬件结构特点,做了特定的优化工作,以此来充分发挥出昇腾AI处理器的强大算力。在进行模型训练/推理时,GE会被自动调用而用户并不感知。GE主要由GE API和GE Core两部分组成,详细的架构图如下所示