aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/cmake/tf_core_direct_session.cmake
blob: bafc7e1e6306964270c041b72c3343a1f685eef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
########################################################
# tf_core_direct_session library
########################################################
file(GLOB tf_core_direct_session_srcs
   "${tensorflow_source_dir}/tensorflow/core/common_runtime/direct_session.cc"
   "${tensorflow_source_dir}/tensorflow/core/common_runtime/direct_session.h"
)

add_library(tf_core_direct_session OBJECT ${tf_core_direct_session_srcs})

add_dependencies(tf_core_direct_session tf_core_cpu)

target_include_directories(tf_core_direct_session PRIVATE
   ${tensorflow_source_dir}
   ${eigen_INCLUDE_DIRS}
)

#target_link_libraries(tf_core_direct_session
#   ${CMAKE_THREAD_LIBS_INIT}
#   ${PROTOBUF_LIBRARIES}
#   tf_core_cpu
#   tf_core_framework
#   tf_core_lib
#   tf_protos_cc
#)

target_compile_options(tf_core_direct_session PRIVATE
   -fno-exceptions
   -DEIGEN_AVOID_STL_ARRAY
)

# C++11
target_compile_features(tf_core_direct_session PRIVATE
   cxx_rvalue_references
)