This is a preparatory step for releasing XNNPACK integration into TensorFlow Lite. PiperOrigin-RevId: 285260004 Change-Id: I758f996a5351e65967f1c6af613719d644a49f49
16 lines
296 B
Python
16 lines
296 B
Python
# Description:
|
|
# Portable 128-bit SIMD intrinsics
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
cc_library(
|
|
name = "psimd",
|
|
hdrs = glob(["include/psimd.h"]),
|
|
includes = ["include"],
|
|
strip_include_prefix = "include",
|
|
)
|