# include dependency include(CMakePackageConfigHelpers) include(GNUInstallDirs) # set package information set(CPACK_PACKAGE_NAME ${PROJECT_NAME}) set(CPACK_GENERATOR "External") set(CPACK_EXTERNAL_PACKAGE_SCRIPT ${CMAKE_SOURCE_DIR}/cmake/package_script.cmake) set(CPACK_EXTERNAL_ENABLE_STAGING true) set(CPACK_TEMPORARY_PACKAGE_FILE_NAME ${CMAKE_SOURCE_DIR}/build/package/mindspore) set(CPACK_TEMPORARY_INSTALL_DIRECTORY ${CMAKE_SOURCE_DIR}/build/package/mindspore) if (ENABLE_GE) set(CPACK_MS_BACKEND "ge") set(CPACK_MS_PACKAGE_NAME "mindspore") elseif (ENABLE_GPU) set(CPACK_MS_BACKEND "ms") set(CPACK_MS_PACKAGE_NAME "mindspore-gpu") elseif (ENABLE_D) set(CPACK_MS_BACKEND "ms") set(CPACK_MS_PACKAGE_NAME "mindspore-ascend") elseif (ENABLE_CPU) set(CPACK_MS_BACKEND "ms") set(CPACK_MS_PACKAGE_NAME "mindspore") else () set(CPACK_MS_BACKEND "debug") set(CPACK_MS_PACKAGE_NAME "mindspore") endif () include(CPack) # set install path set(INSTALL_LIB_DIR ${CMAKE_INSTALL_LIBDIR} CACHE PATH "Installation directory for libraries") set(INSTALL_PY_DIR ".") set(INSTALL_LIB_DIR "lib") set(INSTALL_BASE_DIR ".") # set package files install( TARGETS _c_expression DESTINATION ${INSTALL_BASE_DIR} COMPONENT mindspore ) install( TARGETS mindspore_gvar DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) if (USE_GLOG) file(GLOB_RECURSE GLOG_LIB_LIST ${glog_LIBPATH}/libglog*) install( FILES ${GLOG_LIB_LIST} DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) endif () if (ENABLE_MINDDATA) install( TARGETS _c_dataengine _c_mindrecord DESTINATION ${INSTALL_BASE_DIR} COMPONENT mindspore ) file(GLOB_RECURSE OPENCV_LIB_LIST ${opencv_LIBPATH}/libopencv_core* ${opencv_LIBPATH}/libopencv_imgcodecs* ${opencv_LIBPATH}/libopencv_imgproc* ) install( FILES ${OPENCV_LIB_LIST} DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) endif () if (ENABLE_CPU) if (CMAKE_SYSTEM_NAME MATCHES "Linux") file(GLOB_RECURSE DNNL_LIB_LIST ${onednn_LIBPATH}/libdnnl${CMAKE_SHARED_LIBRARY_SUFFIX}*) elseif (CMAKE_SYSTEM_NAME MATCHES "Darwin") file(GLOB_RECURSE DNNL_LIB_LIST ${onednn_LIBPATH}/libdnnl*${CMAKE_SHARED_LIBRARY_SUFFIX}*) elseif (CMAKE_SYSTEM_NAME MATCHES "Windows") file(GLOB_RECURSE DNNL_LIB_LIST ${onednn_LIBPATH}/dnnl.lib) endif () install( FILES ${DNNL_LIB_LIST} DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) endif () if (ENABLE_GPU) if (ENABLE_MPI) install( TARGETS _ms_mpi gpu_collective DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) endif () install( TARGETS gpu_queue DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) endif () if (NOT ENABLE_GE) if (ENABLE_D) if (DEFINED ENV{ASCEND_CUSTOM_PATH}) set(ASCEND_PATH $ENV{ASCEND_CUSTOM_PATH}) else () set(ASCEND_PATH /usr/local/Ascend) endif () set(ASCEND_DRIVER_PATH ${ASCEND_PATH}/driver/lib64/common) install( FILES ${CMAKE_BINARY_DIR}/graphengine/src/common/graph/libgraph.so ${CMAKE_BINARY_DIR}/graphengine/src/ge/common/libge_common.so ${CMAKE_BINARY_DIR}/graphengine/src/ge/ge_runtime/libge_runtime.so ${ASCEND_DRIVER_PATH}/libslog.so ${ASCEND_DRIVER_PATH}/libc_sec.so DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) elseif (ENABLE_TESTCASES) install( FILES ${CMAKE_BINARY_DIR}/graphengine/src/common/graph/libgraph.so ${CMAKE_SOURCE_DIR}/graphengine/third_party/prebuild/${CMAKE_HOST_SYSTEM_PROCESSOR}/libslog.so ${CMAKE_SOURCE_DIR}/graphengine/third_party/prebuild/${CMAKE_HOST_SYSTEM_PROCESSOR}/libc_sec.so DESTINATION ${INSTALL_LIB_DIR} COMPONENT mindspore ) endif () endif () # set python files file(GLOB MS_PY_LIST ${CMAKE_SOURCE_DIR}/mindspore/*.py) install( FILES ${MS_PY_LIST} DESTINATION ${INSTALL_PY_DIR} COMPONENT mindspore ) install( DIRECTORY ${CMAKE_SOURCE_DIR}/mindspore/nn ${CMAKE_SOURCE_DIR}/mindspore/_extends ${CMAKE_SOURCE_DIR}/mindspore/parallel ${CMAKE_SOURCE_DIR}/mindspore/mindrecord ${CMAKE_SOURCE_DIR}/mindspore/train ${CMAKE_SOURCE_DIR}/mindspore/model_zoo ${CMAKE_SOURCE_DIR}/mindspore/common ${CMAKE_SOURCE_DIR}/mindspore/ops ${CMAKE_SOURCE_DIR}/mindspore/communication DESTINATION ${INSTALL_PY_DIR} COMPONENT mindspore ) if (ENABLE_GPU) install( DIRECTORY ${CMAKE_SOURCE_DIR}/mindspore/_akg DESTINATION ${INSTALL_PY_DIR}/../ COMPONENT mindspore ) if (EXISTS ${CMAKE_SOURCE_DIR}/mindspore/incubator-tvm) install( DIRECTORY ${CMAKE_SOURCE_DIR}/mindspore/incubator-tvm/topi/python/topi ${CMAKE_SOURCE_DIR}/mindspore/incubator-tvm/python/tvm DESTINATION ${INSTALL_PY_DIR}/../_akg COMPONENT mindspore ) endif () endif () if (EXISTS ${CMAKE_SOURCE_DIR}/mindspore/dataset) install( DIRECTORY ${CMAKE_SOURCE_DIR}/mindspore/dataset DESTINATION ${INSTALL_PY_DIR} COMPONENT mindspore ) endif ()