mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
7775a66043
PiperOrigin-RevId: 173685895
17 lines
386 B
Plaintext
17 lines
386 B
Plaintext
# 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"],
|
|
)
|