aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ngraph/nlohmann_json.BUILD
diff options
context:
space:
mode:
authorGravatar Avijit <30507445+avijit-nervana@users.noreply.github.com>2018-07-24 23:35:27 -0700
committerGravatar GitHub <noreply@github.com>2018-07-24 23:35:27 -0700
commit121e0161c5a7273c5a59f1e10a8577428c685796 (patch)
treefb6b99b4af3accd9c68d05442be95f9250b59604 /third_party/ngraph/nlohmann_json.BUILD
parent80fb8679ab14ba3d180e8eb22da11509a15b9219 (diff)
nGraph integration with TensorFlow
* Added nGraph bridge as a third_party to be built with TensorFlow based on user selection. * Added a limited set of C++ unit tests to verify the correctness of the computation
Diffstat (limited to 'third_party/ngraph/nlohmann_json.BUILD')
-rw-r--r--third_party/ngraph/nlohmann_json.BUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/third_party/ngraph/nlohmann_json.BUILD b/third_party/ngraph/nlohmann_json.BUILD
new file mode 100644
index 0000000000..396e158535
--- /dev/null
+++ b/third_party/ngraph/nlohmann_json.BUILD
@@ -0,0 +1,23 @@
+licenses(["notice"]) # 3-Clause BSD
+
+exports_files(["license.txt"])
+
+filegroup(
+ name = "LICENSE",
+ srcs = [
+ "license.txt",
+ ],
+ visibility = ["//visibility:public"],
+)
+
+cc_library(
+ name = "nlohmann_json_lib",
+ hdrs = glob([
+ "include/nlohmann/**/*.hpp",
+ ]),
+ copts = [
+ "-I external/nlohmann_json_lib",
+ ],
+ visibility = ["//visibility:public"],
+ alwayslink=1
+)