|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /**
- * Copyright 2020 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 "profiling_init.h"
-
- #include "common/properties_manager.h"
- #include "framework/common/debug/ge_log.h"
- #include "framework/common/debug/log.h"
- #include "common/profiling/profiling_properties.h"
- #include "runtime/base.h"
-
- namespace ge {
-
- PorfilingInit &PorfilingInit::Instance() {
- static PorfilingInit profiling_init;
- return profiling_init;
- }
-
- ge::Status PorfilingInit::Init(const Options &options) {
- GELOGI("ProfilingManager::Init job_id:%s", options.job_id.c_str());
-
- struct MsprofGeOptions prof_conf = {{0}};
- bool is_execute_profiling = false;
- Status ret = InitFromOptions(options, prof_conf, is_execute_profiling);
- if (ret != SUCCESS) {
- GELOGE(ret, "[Init][Profiling]Failed, error_code %u", ret);
- REPORT_CALL_ERROR("E19999", "Init profiling failed, error_code %u", ret);
- return ret;
- }
-
- if (is_execute_profiling) {
- int32_t cb_ret = msprofInit(static_cast<uint32_t>(MsprofCtrlCallbackType::MSPROF_CTRL_INIT_GE_OPTIONS),
- static_cast<void *>(&prof_conf), sizeof(MsprofGeOptions));
- if (cb_ret != 0) {
- GELOGE(FAILED, "[Call][msprofCtrlCallback]Failed, type %u, return %d",
- static_cast<uint32_t>(MsprofCtrlCallbackType::MSPROF_CTRL_INIT_GE_OPTIONS), cb_ret);
- REPORT_CALL_ERROR("E19999", "Call msprofCtrlCallback failed, type %u, return %d",
- static_cast<uint32_t>(MsprofCtrlCallbackType::MSPROF_CTRL_INIT_GE_OPTIONS), cb_ret);
- return FAILED;
- }
- GELOGI("Profiling init success");
- }
- else {
- GELOGI("The profiling is off, skip the initialization");
- }
- return SUCCESS;
- }
-
- ge::Status PorfilingInit::InitFromOptions(const Options &options, MsprofGeOptions &prof_conf,
- bool &is_execute_profiling) {
- // enable profiling by env
- char env_profiling_mode[MMPA_MAX_PATH] = {0x00};
-
- if (options.profiling_mode == "1" && !options.profiling_options.empty()) {
- // enable profiling by ge option
- if (strncpy_s(prof_conf.options, MSPROF_OPTIONS_DEF_LEN_MAX, options.profiling_options.c_str(),
- MSPROF_OPTIONS_DEF_LEN_MAX - 1) != EOK) {
- GELOGE(INTERNAL_ERROR, "[copy][ProfilingOptions]Failed, options %s", options.profiling_options.c_str());
- REPORT_CALL_ERROR("E19999", "Copy profiling_options %s failed", options.profiling_options.c_str());
- return INTERNAL_ERROR;
- }
- is_execute_profiling = true;
- GELOGI("The profiling in options is %s, %s. origin option: %s", options.profiling_mode.c_str(), prof_conf.options,
- options.profiling_options.c_str());
- } else {
- (void)mmGetEnv("PROFILING_MODE", env_profiling_mode, MMPA_MAX_PATH);
- (void)mmGetEnv("PROFILING_OPTIONS", prof_conf.options, MSPROF_OPTIONS_DEF_LEN_MAX);
- // The env is invalid
- if ((strcmp("true", env_profiling_mode) != 0) || (strcmp(prof_conf.options, "\0") == 0)) {
- return SUCCESS;
- }
- // enable profiling by env
- is_execute_profiling = true;
- GELOGI("The profiling in env is %s, %s", env_profiling_mode, prof_conf.options);
- }
-
- ProfilingProperties::Instance().SetExecuteProfiling(is_execute_profiling);
- if (!is_execute_profiling) {
- return SUCCESS;
- }
-
- // Parse json str for bp fp
- Status ret = ParseOptions(prof_conf.options);
- if (ret != ge::SUCCESS) {
- GELOGE(ge::PARAM_INVALID, "[Parse][Options]Parse training trace param %s failed, error_code %u", prof_conf.options,
- ret);
- REPORT_CALL_ERROR("E19999", "Parse training trace param %s failed, error_code %u", prof_conf.options, ret);
- return ge::PARAM_INVALID;
- }
-
- if (strncpy_s(prof_conf.jobId, MSPROF_OPTIONS_DEF_LEN_MAX, options.job_id.c_str(), MSPROF_OPTIONS_DEF_LEN_MAX - 1) !=
- EOK) {
- GELOGE(INTERNAL_ERROR, "[Copy][JobId]Failed, original job_id %s", options.job_id.c_str());
- REPORT_CALL_ERROR("E19999", "Copy job_id %s failed", options.job_id.c_str());
- return INTERNAL_ERROR;
- }
- GELOGI("Job id: %s, original job id: %s.", prof_conf.jobId, options.job_id.c_str());
- return ge::SUCCESS;
- }
-
- ge::Status PorfilingInit::ParseOptions(const std::string &options) {
- if (options.empty()) {
- GELOGE(ge::PARAM_INVALID, "[Check][Param]Profiling options is empty");
- REPORT_INNER_ERROR("E19999", "Profiling options is empty");
- return ge::PARAM_INVALID;
- }
- try {
- Json prof_options = Json::parse(options);
- if (options.find(kTrainingTrace) == std::string::npos) {
- return ge::SUCCESS;
- }
- std::string training_trace;
- if (prof_options.contains(kTrainingTrace)) {
- training_trace = prof_options[kTrainingTrace];
- }
- if (training_trace.empty()) {
- GELOGI("Training trace will not take effect.");
- return ge::SUCCESS;
- }
- GELOGI("GE profiling training trace:%s", training_trace.c_str());
- if (training_trace != "on") {
- GELOGE(ge::PARAM_INVALID, "[Check][Param]Training trace param:%s is invalid.", training_trace.c_str());
- REPORT_INNER_ERROR("E19999", "Training trace param:%s is invalid.", training_trace.c_str());
- return ge::PARAM_INVALID;
- }
- string fp_point;
- string bp_point;
- if (prof_options.contains(kFpPoint)) {
- fp_point = prof_options[kFpPoint];
- }
- if (prof_options.contains(kBpPoint)) {
- bp_point = prof_options[kBpPoint];
- }
- if (!fp_point_.empty() && !bp_point_.empty()) {
- GELOGI("Training trace bp fp is set, bp_point:%s, fp_point:%s.", bp_point_.c_str(), fp_point_.c_str());
- }
- ProfilingProperties::Instance().SetTrainingTrace(true);
- ProfilingProperties::Instance().SetFpBpPoint(fp_point,bp_point);
- } catch (...) {
- GELOGE(FAILED, "[Check][Param]Json prof_conf options is invalid");
- REPORT_INNER_ERROR("E19999", "Json prof_conf options is invalid");
- return ge::PARAM_INVALID;
- }
- return ge::SUCCESS;
- }
-
- void PorfilingInit::StopProfiling() {
- uint64_t module = GetProfilingModule();
- // The following if case will not be executed in normal case, inc case of ProfStopProfiling is abnormal
- auto device_id = ProfilingProperties::Instance().GetDeviceID();
- int32_t device_num = static_cast<int32_t>(device_id.size());
- if (device_num != 0) {
- auto device_id_ptr = std::unique_ptr<uint32_t[]>(new (std::nothrow) uint32_t[device_num]);
- if (device_id_ptr == nullptr) {
- GELOGE(FAILED, "[Stop][Profiling]Device id ptr is null.");
- REPORT_INNER_ERROR("E19999", "Stop profiling, device id ptr is null");
- return;
- }
- for (int32_t i = 0; i < device_num; i++) {
- device_id_ptr[i] = static_cast<uint32_t>(device_id[i]);
- }
- rtError_t rt_ret = rtProfilerStop(module, device_num, device_id_ptr.get());
- if (rt_ret != RT_ERROR_NONE) {
- GELOGW("Call rtProfilerStop failed, ret:%d", rt_ret);
- }
- }
-
- void PorfilingInit::PluginUnInit() const {
- if (report_callback_ == nullptr) {
- GELOGE(ge::PARAM_INVALID, "[Check][Param]MsprofReporterCallback callback is nullptr");
- REPORT_INNER_ERROR("E19999", "MsprofReporterCallback callback is nullptr");
- return;
- }
- int32_t cb_ret = report_callback_(
- static_cast<uint32_t>(MsprofReporterModuleId::MSPROF_MODULE_FRAMEWORK),
- static_cast<uint32_t>(MsprofReporterCallbackType::MSPROF_REPORTER_UNINIT),
- nullptr, 0);
- if (cb_ret != 0) {
- GELOGW("profiling plugin uninit failed, ret:%d", cb_ret);
- }
- }
-
- // stop profiling
- int32_t cb_ret = mspuninit(static_cast<uint32_t>(MsprofCtrlCallbackType::MSPROF_CTRL_FINALIZE),
- nullptr, 0);
- if (cb_ret != 0) {
- GELOGW("call msprofCtrlCallback failed, type:%u, return:%d",
- static_cast<uint32_t>(MsprofCtrlCallbackType::MSPROF_CTRL_FINALIZE), cb_ret);
- return;
- }
- GELOGI("Stop Profiling success.");
- }
-
- uint64_t PorfilingInit::GetProfilingModule() {
- uint64_t module = PROF_MODEL_EXECUTE_MASK |
- PROF_RUNTIME_API_MASK |
- PROF_RUNTIME_TRACE_MASK |
- PROF_SCHEDULE_TIMELINE_MASK |
- PROF_SCHEDULE_TRACE_MASK |
- PROF_TASK_TIME_MASK |
- PROF_SUBTASK_TIME_MASK |
- PROF_AICPU_TRACE_MASK |
- PROF_AICORE_METRICS_MASK |
- PROF_AIVECTORCORE_METRICS_MASK |
- PROF_MODEL_LOAD_MASK;
- return module;
- }
-
-
- } // namespace ge
|