aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/arm_neon_2_x86_sse.BUILD
diff options
context:
space:
mode:
authorGravatar Michael Case <mikecase@google.com>2017-10-27 10:15:31 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-27 10:19:41 -0700
commit7775a6604330497c81d8290037b7f59ffffafec0 (patch)
tree5a409279899122cf19e4f8683205fc9d92955004 /third_party/arm_neon_2_x86_sse.BUILD
parentc22973867f742bb1395a4cdb87deb8f7cb21d1a5 (diff)
Internal Change
PiperOrigin-RevId: 173685895
Diffstat (limited to 'third_party/arm_neon_2_x86_sse.BUILD')
-rw-r--r--third_party/arm_neon_2_x86_sse.BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/arm_neon_2_x86_sse.BUILD b/third_party/arm_neon_2_x86_sse.BUILD
new file mode 100644
index 0000000000..6c641a7f4e
--- /dev/null
+++ b/third_party/arm_neon_2_x86_sse.BUILD
@@ -0,0 +1,16 @@
+# Description:
+# NEON2SSE - a header file redefining ARM Neon intrinsics in terms of SSE intrinsics
+# allowing neon code to compile and run on x64/x86 workstantions.
+
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"]) # 3-Clause BSD
+
+exports_files([
+ "LICENSE",
+])
+
+cc_library(
+ name = "arm_neon_2_x86_sse",
+ hdrs = ["NEON_2_SSE.h"],
+)