aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ngraph/ngraph_tf.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/ngraph/ngraph_tf.BUILD')
-rw-r--r--third_party/ngraph/ngraph_tf.BUILD48
1 files changed, 26 insertions, 22 deletions
diff --git a/third_party/ngraph/ngraph_tf.BUILD b/third_party/ngraph/ngraph_tf.BUILD
index 4d96ccf2f2..979318d7c2 100644
--- a/third_party/ngraph/ngraph_tf.BUILD
+++ b/third_party/ngraph/ngraph_tf.BUILD
@@ -8,37 +8,34 @@ load(
)
cc_library(
- name = "ngraph_libs_linux",
- srcs = [
- "lib/libiomp5.so",
- "lib/libmklml_intel.so",
- ],
- visibility = ["//visibility:public"],
-)
-
-cc_library(
name = "ngraph_tf",
srcs = [
+ "src/ngraph_api.h",
+ "src/ngraph_api.cc",
+ "src/ngraph_assign_clusters.h",
+ "src/ngraph_assign_clusters.cc",
"src/ngraph_builder.h",
"src/ngraph_builder.cc",
- "src/ngraph_cluster.h",
- "src/ngraph_cluster.cc",
+ "src/ngraph_capture_variables.h",
+ "src/ngraph_capture_variables.cc",
+ "src/ngraph_conversions.h",
"src/ngraph_cluster_manager.h",
"src/ngraph_cluster_manager.cc",
- "src/ngraph_confirm_pass.cc",
- "src/ngraph_device.cc",
+ "src/ngraph_deassign_clusters.h",
+ "src/ngraph_deassign_clusters.cc",
"src/ngraph_encapsulate_op.cc",
- "src/ngraph_encapsulate_pass.cc",
+ "src/ngraph_encapsulate_clusters.h",
+ "src/ngraph_encapsulate_clusters.cc",
"src/ngraph_freshness_tracker.h",
"src/ngraph_freshness_tracker.cc",
- "src/ngraph_graph_rewrite_passes.cc",
- "src/ngraph_liberate_pass.cc",
- "src/ngraph_op_kernels.cc",
- "src/ngraph_stub_ops.cc",
+ "src/ngraph_mark_for_clustering.h",
+ "src/ngraph_mark_for_clustering.cc",
+ "src/ngraph_rewrite_pass.cc",
+ "src/ngraph_rewrite_for_tracking.h",
+ "src/ngraph_rewrite_for_tracking.cc",
+ "src/ngraph_tracked_variable.cc",
"src/ngraph_utils.h",
"src/ngraph_utils.cc",
- "src/ngraph_send_recv_ops.cc",
- "src/ngraph_variable_ops.cc",
"src/tf_graphcycles.cc",
"logging/ngraph_log.h",
"logging/ngraph_log.cc",
@@ -58,7 +55,6 @@ cc_library(
"-I external/ngraph_tf/src",
"-I external/ngraph_tf/logging",
"-I external/ngraph/src",
- "-D NGRAPH_EMBEDDED_IN_TENSORFLOW=1",
],
alwayslink = 1,
visibility = ["//visibility:public"],
@@ -69,6 +65,15 @@ tf_cc_test(
size = "small",
srcs = [
"test/tf_exec.cpp",
+ "test/conversions.cpp",
+ "test/padding.cpp",
+ "test/graph_rewrites/assign_clusters.cc",
+ "test/test_utilities.h",
+ "test/test_utilities.cpp",
+ "test/test_math_ops.cpp",
+ "test/test_nn_ops.cpp",
+ "test/opexecuter.h",
+ "test/opexecuter.cpp",
"test/main.cpp",
],
deps = [
@@ -80,7 +85,6 @@ tf_cc_test(
],
extra_copts = [
"-fexceptions ",
- "-D NGRAPH_EMBEDDED_IN_TENSORFLOW=1",
"-I external/ngraph_tf/src",
"-I external/ngraph_tf/logging",
"-I external/ngraph/src",