Browse Source

dependencies graphengine_protos

pull/1613/head
李磊 4 years ago
parent
commit
37b3eb07a9
7 changed files with 34 additions and 14 deletions
  1. +4
    -0
      ge/CMakeLists.txt
  2. +3
    -3
      ge/common/CMakeLists.txt
  3. +2
    -2
      ge/executor/CMakeLists.txt
  4. +5
    -5
      ge/ge_local_engine/CMakeLists.txt
  5. +14
    -2
      ge/host_cpu_engine/CMakeLists.txt
  6. +2
    -2
      ge/offline/CMakeLists.txt
  7. +4
    -0
      ge/plugin/engine/CMakeLists.txt

+ 4
- 0
ge/CMakeLists.txt View File

@@ -811,6 +811,10 @@ add_library(ge_compiler SHARED
${INFER_SRC_LIST}
)

add_dependencies(ge_compiler
graphengine_protos
)

target_compile_definitions(ge_compiler PRIVATE
PROTOBUF_INLINE_NOT_IN_HEADERS=0
REUSE_MEMORY=1


+ 3
- 3
ge/common/CMakeLists.txt View File

@@ -50,7 +50,7 @@ if (NOT ENABLE_D AND NOT ENABLE_ACL)
add_library(ge_common SHARED ${SRC_LIST})

add_dependencies(ge_common
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_definitions(ge_common PRIVATE
@@ -116,7 +116,7 @@ target_link_libraries(ge_common PRIVATE
add_library(ge_common_static STATIC ${SRC_LIST})

add_dependencies(ge_common_static
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_definitions(ge_common_static PRIVATE
@@ -173,7 +173,7 @@ else ()
add_library(ge_common SHARED ${SRC_LIST})

add_dependencies(ge_common
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_definitions(ge_common PRIVATE


+ 2
- 2
ge/executor/CMakeLists.txt View File

@@ -154,7 +154,7 @@ set(SRC_LIST
add_library(ge_executor STATIC ${SRC_LIST})

add_dependencies(ge_executor
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(ge_executor PRIVATE
@@ -206,7 +206,7 @@ target_link_libraries(ge_executor PRIVATE
add_library(ge_executor_shared SHARED ${SRC_LIST})

add_dependencies(ge_executor_shared
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(ge_executor_shared PRIVATE


+ 5
- 5
ge/ge_local_engine/CMakeLists.txt View File

@@ -19,7 +19,7 @@ set(OPS_KERNEL_SRC_LIST
add_library(ge_local_engine SHARED ${SRC_LIST})

add_dependencies(ge_local_engine
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(ge_local_engine PRIVATE
@@ -69,7 +69,7 @@ target_link_libraries(ge_local_engine PRIVATE
add_library(atc_ge_local_engine SHARED ${SRC_LIST})

add_dependencies(atc_ge_local_engine
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(atc_ge_local_engine PRIVATE
@@ -124,7 +124,7 @@ set_target_properties(atc_ge_local_engine PROPERTIES
add_library(ge_local_opskernel_builder SHARED ${OPS_KERNEL_SRC_LIST})

add_dependencies(ge_local_opskernel_builder
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(ge_local_opskernel_builder PRIVATE
@@ -175,7 +175,7 @@ target_link_libraries(ge_local_opskernel_builder PRIVATE
add_library(atc_ge_local_opskernel_builder SHARED ${OPS_KERNEL_SRC_LIST})

add_dependencies(atc_ge_local_opskernel_builder
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(atc_ge_local_opskernel_builder PRIVATE
@@ -231,7 +231,7 @@ set_target_properties(atc_ge_local_opskernel_builder PROPERTIES
add_library(ge_local_opskernel_builder_static STATIC ${OPS_KERNEL_SRC_LIST})

add_dependencies(ge_local_opskernel_builder_static
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(ge_local_opskernel_builder_static PRIVATE


+ 14
- 2
ge/host_cpu_engine/CMakeLists.txt View File

@@ -13,7 +13,7 @@ set(CPU_OPS_KERNEL_LIST
add_library(host_cpu_engine SHARED ${SRC_LIST})

add_dependencies(host_cpu_engine
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(host_cpu_engine PRIVATE
@@ -62,7 +62,7 @@ target_link_libraries(host_cpu_engine PRIVATE
add_library(atc_host_cpu_engine SHARED ${SRC_LIST})

add_dependencies(atc_host_cpu_engine
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(atc_host_cpu_engine PRIVATE
@@ -115,6 +115,10 @@ set_target_properties(atc_host_cpu_engine PROPERTIES
############ libhost_cpu_opskernel_builder.so ############
add_library(host_cpu_opskernel_builder SHARED ${CPU_OPS_KERNEL_LIST})

add_dependencies(host_cpu_opskernel_builder
graphengine_protos
)

target_compile_options(host_cpu_opskernel_builder PRIVATE
-Werror
-fno-common
@@ -161,6 +165,10 @@ target_link_libraries(host_cpu_opskernel_builder PRIVATE
############ atclib/libhost_cpu_opskernel_builder.so ############
add_library(atc_host_cpu_opskernel_builder SHARED ${CPU_OPS_KERNEL_LIST})

add_dependencies(atc_host_cpu_opskernel_builder
graphengine_protos
)

target_compile_options(atc_host_cpu_opskernel_builder PRIVATE
-Werror
-fno-common
@@ -212,6 +220,10 @@ set_target_properties(atc_host_cpu_opskernel_builder PROPERTIES
############ libhost_cpu_opskernel_builder.a ############
add_library(host_cpu_opskernel_builder_static STATIC ${CPU_OPS_KERNEL_LIST})

add_dependencies(host_cpu_opskernel_builder_static
graphengine_protos
)

target_compile_options(host_cpu_opskernel_builder_static PRIVATE
-Werror
-fno-common


+ 2
- 2
ge/offline/CMakeLists.txt View File

@@ -9,7 +9,7 @@ set(SRC_LIST
add_executable(atc_atc.bin ${SRC_LIST})

add_dependencies(atc_atc.bin
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(atc_atc.bin PRIVATE
@@ -86,7 +86,7 @@ set_target_properties(atc_atc.bin PROPERTIES
add_executable(fwk_atc.bin ${SRC_LIST})

add_dependencies(fwk_atc.bin
ge_fusion_model_protos_obj
graphengine_protos
)

target_compile_options(fwk_atc.bin PRIVATE


+ 4
- 0
ge/plugin/engine/CMakeLists.txt View File

@@ -6,6 +6,10 @@ set(SRC_LIST
############ libengine.so ############
add_library(engine SHARED ${SRC_LIST})

add_dependencies(engine
graphengine_protos
)

target_compile_options(engine PRIVATE
-Werror
-fno-common


Loading…
Cancel
Save