1 /**
2 * Copyright 2021 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 #ifndef _MSC_VER
17 #include <sys/time.h>
18 #endif
19 #include <string>
20 #include "utils/log_adapter.h"
21
22 namespace mindspore {
23 static const std::vector<std::string> sub_module_names = {
24 "UNKNOWN", // SM_UNKNOWN
25 "CORE", // SM_CORE
26 "ANALYZER", // SM_ANALYZER
27 "COMMON", // SM_COMMON
28 "DEBUG", // SM_DEBUG
29 "OFFLINE_DEBUG", // SM_OFFLINE_DEBUG
30 "DEVICE", // SM_DEVICE
31 "GE_ADPT", // SM_GE_ADPT
32 "IR", // SM_IR
33 "KERNEL", // SM_KERNEL
34 "MD", // SM_MD
35 "ME", // SM_ME
36 "EXPRESS", // SM_EXPRESS
37 "OPTIMIZER", // SM_OPTIMIZER
38 "PARALLEL", // SM_PARALLEL
39 "PARSER", // SM_PARSER
40 "PIPELINE", // SM_PIPELINE
41 "PRE_ACT", // SM_PRE_ACT
42 "PYNATIVE", // SM_PYNATIVE
43 "SESSION", // SM_SESSION
44 "UTILS", // SM_UTILS
45 "VM", // SM_VM
46 "PROFILER", // SM_PROFILER
47 "PS", // SM_PS
48 "FL", // SM_FL
49 "LITE", // SM_LITE
50 "ARMOUR", // SM_ARMOUR
51 "HCCL_ADPT", // SM_HCCL_ADPT
52 "RUNTIME_FRAMEWORK", // SM_RUNTIME_FRAMEWORK
53 "GE", // SM_GE
54 };
55
GetSubModuleName(SubModuleId module_id)56 const std::string GetSubModuleName(SubModuleId module_id) { return sub_module_names[(module_id % NUM_SUBMODUES)]; }
57
58 // export GetTimeString for all sub modules
GetTimeString()59 std::string GetTimeString() {
60 #define BUFLEN 80
61 char buf[BUFLEN] = {0};
62 #if defined(_WIN32) || defined(_WIN64)
63 time_t time_seconds = time(0);
64 struct tm now_time;
65 localtime_s(&now_time, &time_seconds);
66 (void)snprintf(buf, BUFLEN, "%d-%d-%d %d:%d:%d", now_time.tm_year + 1900, now_time.tm_mon + 1, now_time.tm_mday,
67 now_time.tm_hour, now_time.tm_min, now_time.tm_sec);
68 #else
69 struct timeval cur_time;
70 (void)gettimeofday(&cur_time, nullptr);
71
72 struct tm now;
73 constexpr size_t time_str_len = 19;
74 constexpr int64_t time_convert_unit = 1000;
75 (void)localtime_r(&cur_time.tv_sec, &now);
76 (void)strftime(buf, BUFLEN, "%Y-%m-%d-%H:%M:%S", &now); // format date and time
77 (void)snprintf(buf + time_str_len, BUFLEN - time_str_len, ".%03ld.%03ld", cur_time.tv_usec / time_convert_unit,
78 cur_time.tv_usec % time_convert_unit);
79 #endif
80 return std::string(buf);
81 }
82 } // namespace mindspore
83