mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-07 12:20:24 +01:00
128 lines
4.5 KiB
CMake
128 lines
4.5 KiB
CMake
set(tf_tools_proto_text_src_dir "${tensorflow_source_dir}/tensorflow/tools/proto_text")
|
|
|
|
file(GLOB tf_tools_proto_text_srcs
|
|
"${tf_tools_proto_text_src_dir}/gen_proto_text_functions.cc"
|
|
"${tf_tools_proto_text_src_dir}/gen_proto_text_functions_lib.h"
|
|
"${tf_tools_proto_text_src_dir}/gen_proto_text_functions_lib.cc"
|
|
)
|
|
|
|
set(proto_text "proto_text")
|
|
|
|
add_executable(${proto_text}
|
|
${tf_tools_proto_text_srcs}
|
|
$<TARGET_OBJECTS:tf_core_lib>
|
|
)
|
|
|
|
target_link_libraries(${proto_text} PUBLIC
|
|
${tensorflow_EXTERNAL_LIBRARIES}
|
|
tf_protos_cc
|
|
)
|
|
|
|
add_dependencies(${proto_text} tf_core_lib)
|
|
if(tensorflow_ENABLE_GRPC_SUPPORT)
|
|
add_dependencies(${proto_text} grpc)
|
|
endif(tensorflow_ENABLE_GRPC_SUPPORT)
|
|
|
|
file(GLOB_RECURSE tf_tools_transform_graph_lib_srcs
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/*.h"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/*.cc"
|
|
)
|
|
|
|
file(GLOB_RECURSE tf_tools_transform_graph_lib_exclude_srcs
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/*test*.h"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/*test*.cc"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/compare_graphs.cc"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/summarize_graph_main.cc"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/transform_graph_main.cc"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/quantize_nodes.cc"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/quantize_weights.cc"
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/round_weights.cc"
|
|
)
|
|
list(REMOVE_ITEM tf_tools_transform_graph_lib_srcs ${tf_tools_transform_graph_lib_exclude_srcs})
|
|
|
|
add_library(tf_tools_transform_graph_lib OBJECT ${tf_tools_transform_graph_lib_srcs})
|
|
add_dependencies(tf_tools_transform_graph_lib tf_core_cpu)
|
|
add_dependencies(tf_tools_transform_graph_lib tf_core_framework)
|
|
add_dependencies(tf_tools_transform_graph_lib tf_core_kernels)
|
|
add_dependencies(tf_tools_transform_graph_lib tf_core_lib)
|
|
add_dependencies(tf_tools_transform_graph_lib tf_core_ops)
|
|
|
|
set(transform_graph "transform_graph")
|
|
|
|
add_executable(${transform_graph}
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/transform_graph_main.cc"
|
|
$<TARGET_OBJECTS:tf_tools_transform_graph_lib>
|
|
$<TARGET_OBJECTS:tf_core_lib>
|
|
$<TARGET_OBJECTS:tf_core_cpu>
|
|
$<TARGET_OBJECTS:tf_core_framework>
|
|
$<TARGET_OBJECTS:tf_core_ops>
|
|
$<TARGET_OBJECTS:tf_core_direct_session>
|
|
$<TARGET_OBJECTS:tf_tools_transform_graph_lib>
|
|
$<TARGET_OBJECTS:tf_core_kernels>
|
|
)
|
|
|
|
target_link_libraries(${transform_graph} PUBLIC
|
|
tf_protos_cc
|
|
${tf_core_gpu_kernels_lib}
|
|
${tensorflow_EXTERNAL_LIBRARIES}
|
|
)
|
|
|
|
set(summarize_graph "summarize_graph")
|
|
|
|
add_executable(${summarize_graph}
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/summarize_graph_main.cc"
|
|
$<TARGET_OBJECTS:tf_tools_transform_graph_lib>
|
|
$<TARGET_OBJECTS:tf_core_lib>
|
|
$<TARGET_OBJECTS:tf_core_cpu>
|
|
$<TARGET_OBJECTS:tf_core_framework>
|
|
$<TARGET_OBJECTS:tf_core_ops>
|
|
$<TARGET_OBJECTS:tf_core_direct_session>
|
|
$<TARGET_OBJECTS:tf_tools_transform_graph_lib>
|
|
$<TARGET_OBJECTS:tf_core_kernels>
|
|
)
|
|
|
|
target_link_libraries(${summarize_graph} PUBLIC
|
|
tf_protos_cc
|
|
${tf_core_gpu_kernels_lib}
|
|
${tensorflow_EXTERNAL_LIBRARIES}
|
|
)
|
|
|
|
set(compare_graphs "compare_graphs")
|
|
|
|
add_executable(${compare_graphs}
|
|
"${tensorflow_source_dir}/tensorflow/tools/graph_transforms/compare_graphs.cc"
|
|
$<TARGET_OBJECTS:tf_tools_transform_graph_lib>
|
|
$<TARGET_OBJECTS:tf_core_lib>
|
|
$<TARGET_OBJECTS:tf_core_cpu>
|
|
$<TARGET_OBJECTS:tf_core_framework>
|
|
$<TARGET_OBJECTS:tf_core_ops>
|
|
$<TARGET_OBJECTS:tf_core_direct_session>
|
|
$<TARGET_OBJECTS:tf_tools_transform_graph_lib>
|
|
$<TARGET_OBJECTS:tf_core_kernels>
|
|
)
|
|
|
|
target_link_libraries(${compare_graphs} PUBLIC
|
|
tf_protos_cc
|
|
${tf_core_gpu_kernels_lib}
|
|
${tensorflow_EXTERNAL_LIBRARIES}
|
|
)
|
|
|
|
set(benchmark_model "benchmark_model")
|
|
|
|
add_executable(${benchmark_model}
|
|
"${tensorflow_source_dir}/tensorflow/tools/benchmark/benchmark_model.cc"
|
|
"${tensorflow_source_dir}/tensorflow/tools/benchmark/benchmark_model_main.cc"
|
|
$<TARGET_OBJECTS:tf_core_lib>
|
|
$<TARGET_OBJECTS:tf_core_cpu>
|
|
$<TARGET_OBJECTS:tf_core_framework>
|
|
$<TARGET_OBJECTS:tf_core_ops>
|
|
$<TARGET_OBJECTS:tf_core_direct_session>
|
|
$<TARGET_OBJECTS:tf_core_kernels>
|
|
)
|
|
|
|
target_link_libraries(${benchmark_model} PUBLIC
|
|
tf_protos_cc
|
|
${tf_core_gpu_kernels_lib}
|
|
${tensorflow_EXTERNAL_LIBRARIES}
|
|
)
|