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.
|
- if(NOT ENABLE_SECURITY)
- if(ENABLE_GPU)
- file(GLOB_RECURSE PROFILER_SRC_LIST RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
- "device/gpu/*.cc" "device/cpu/*.cc")
- endif()
-
- if(ENABLE_D)
- file(GLOB_RECURSE PROFILER_SRC_LIST RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
- "device/cpu/*.cc" "device/ascend/*.cc")
- endif()
-
- if(ENABLE_CPU AND NOT (ENABLE_D OR ENABLE_GPU))
- file(GLOB_RECURSE PROFILER_SRC_LIST RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
- "device/cpu/*.cc")
- endif()
-
- list(APPEND PROFILER_SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/device/profiling.cc
- ${CMAKE_CURRENT_SOURCE_DIR}/device/data_saver.cc)
-
- set_property(SOURCE ${PROFILER_SRC_LIST} PROPERTY COMPILE_DEFINITIONS
- SUBMODULE_ID=mindspore::SubModuleId::SM_PROFILER)
- add_library(_mindspore_profiler_obj OBJECT ${PROFILER_SRC_LIST})
-
- if(ENABLE_D)
- add_dependencies(_mindspore_profiler_obj mindspore::protobuf)
- endif()
- endif()
|