| @@ -1 +1 @@ | |||||
| Subproject commit 19b157b42550825b95170c9ad25f5ba16fb4ec79 | |||||
| Subproject commit 8fb59a00c6291207f3491fee0c4064efff94d79f | |||||
| @@ -158,6 +158,17 @@ mmTimespec mmGetTickCount() { | |||||
| return rts; | return rts; | ||||
| } | } | ||||
| INT32 mmGetSystemTime(mmSystemTime_t *sysTime) { | |||||
| // Beijing olympics | |||||
| sysTime->wYear = 2008; | |||||
| sysTime->wMonth = 8; | |||||
| sysTime->wDay = 8; | |||||
| sysTime->wHour = 20; | |||||
| sysTime->wMinute = 8; | |||||
| sysTime->wSecond = 0; | |||||
| return 0; | |||||
| } | |||||
| INT32 mmGetTid() { | INT32 mmGetTid() { | ||||
| INT32 ret = (INT32)syscall(SYS_gettid); | INT32 ret = (INT32)syscall(SYS_gettid); | ||||
| @@ -118,6 +118,7 @@ set(MATEDEF_SRC_FILES | |||||
| "${PARSER_DIR}/metadef/graph/resource_context_mgr.cc" | "${PARSER_DIR}/metadef/graph/resource_context_mgr.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/constant_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/constant_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/anchor_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/anchor_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/file_utils.cc" | |||||
| "${PARSER_DIR}/metadef/graph/utils/ge_ir_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/ge_ir_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/connection_matrix.cc" | "${PARSER_DIR}/metadef/graph/utils/connection_matrix.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/cycle_detector.cc" | "${PARSER_DIR}/metadef/graph/utils/cycle_detector.cc" | ||||
| @@ -128,6 +129,7 @@ set(MATEDEF_SRC_FILES | |||||
| "${PARSER_DIR}/metadef/graph/utils/transformer_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/transformer_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/tuning_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/tuning_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/type_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/type_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/trace/trace_manager.cc" | |||||
| "${PARSER_DIR}/metadef/graph/common/large_bm.cc" | "${PARSER_DIR}/metadef/graph/common/large_bm.cc" | ||||
| "${PARSER_DIR}/metadef/ops/op_imp.cpp" | "${PARSER_DIR}/metadef/ops/op_imp.cpp" | ||||
| "${PARSER_DIR}/metadef/third_party/transformer/src/axis_util.cc" | "${PARSER_DIR}/metadef/third_party/transformer/src/axis_util.cc" | ||||
| @@ -119,6 +119,7 @@ set(MATEDEF_SRC_FILES | |||||
| "${PARSER_DIR}/metadef/graph/tensor.cc" | "${PARSER_DIR}/metadef/graph/tensor.cc" | ||||
| "${PARSER_DIR}/metadef/graph/types.cc" | "${PARSER_DIR}/metadef/graph/types.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/anchor_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/anchor_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/file_utils.cc" | |||||
| "${PARSER_DIR}/metadef/graph/utils/ge_ir_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/ge_ir_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/graph_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/graph_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/connection_matrix.cc" | "${PARSER_DIR}/metadef/graph/utils/connection_matrix.cc" | ||||
| @@ -129,6 +130,7 @@ set(MATEDEF_SRC_FILES | |||||
| "${PARSER_DIR}/metadef/graph/utils/transformer_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/transformer_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/tuning_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/tuning_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/type_utils.cc" | "${PARSER_DIR}/metadef/graph/utils/type_utils.cc" | ||||
| "${PARSER_DIR}/metadef/graph/utils/trace/trace_manager.cc" | |||||
| "${PARSER_DIR}/metadef/graph/common/large_bm.cc" | "${PARSER_DIR}/metadef/graph/common/large_bm.cc" | ||||
| "${PARSER_DIR}/metadef/ops/op_imp.cpp" | "${PARSER_DIR}/metadef/ops/op_imp.cpp" | ||||
| "${PARSER_DIR}/metadef/third_party/transformer/src/axis_util.cc" | "${PARSER_DIR}/metadef/third_party/transformer/src/axis_util.cc" | ||||