Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/ruy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorAlex Stark <starka@google.com>2019-07-30 20:54:43 +0300
committerBenoit Jacob <benoitjacob@google.com>2020-03-10 23:34:44 +0300
commit7f750288450c735b6c2ca4e2e24c8e24ec95b024 (patch)
tree4f53edd4eecadc3192a0208f47f30ef8284b92c7 /BUILD
parentb7daba4b698ecbc23dacb2ab3eb1810cfa883cc3 (diff)
Ruy: Introduce x86 (AVX-512) code.
PiperOrigin-RevId: 260750932
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD3
1 files changed, 3 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 33e8f14..0d8abdb 100644
--- a/BUILD
+++ b/BUILD
@@ -264,11 +264,13 @@ cc_library(
srcs = [
"kernel_arm32.cc",
"kernel_arm64.cc",
+ "kernel_avx512.cc",
],
hdrs = [
"kernel.h",
],
deps = [
+ ":check_macros",
":common",
":internal_matrix",
":opt_set",
@@ -287,6 +289,7 @@ cc_library(
name = "pack",
srcs = [
"pack_arm.cc",
+ "pack_avx512.cc",
],
hdrs = [
"pack.h",