Browse Source

Adapte ge lib name change form ge_client_train to ge_runner.

tags/v0.6.0-beta
梁成辉 5 years ago
parent
commit
11089e6077
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      mindspore/ccsrc/CMakeLists.txt
  2. +1
    -1
      tests/ut/cpp/CMakeLists.txt

+ 1
- 1
mindspore/ccsrc/CMakeLists.txt View File

@@ -125,7 +125,7 @@ endif()

if (ENABLE_GE)
if(ENABLE_TRAIN)
target_link_libraries(mindspore ge_client_train hccl)
target_link_libraries(mindspore ge_runner hccl)
else ()
target_link_libraries(mindspore ge_client)
endif ()


+ 1
- 1
tests/ut/cpp/CMakeLists.txt View File

@@ -128,7 +128,7 @@ add_executable(ut_tests ${UT_SRCS} ${MINDSPORE_SRC_LIST} ${UT_SUTB_SRC_LIST})

if (ENABLE_GE)
if(ENABLE_TRAIN)
target_link_libraries(ut_tests PRIVATE graph ge_client_train)
target_link_libraries(ut_tests PRIVATE graph ge_runner)
else()
target_link_libraries(ut_tests PRIVATE graph ge_client)
endif()


Loading…
Cancel
Save