aboutsummaryrefslogtreecommitdiff
path: root/ruy/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'ruy/BUILD')
-rw-r--r--ruy/BUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/ruy/BUILD b/ruy/BUILD
index 37e89ab..d04a45d 100644
--- a/ruy/BUILD
+++ b/ruy/BUILD
@@ -357,6 +357,7 @@ cc_library(
deps = [
":blocking_counter",
":check_macros",
+ ":denormal",
":time",
":trace",
":wait",
@@ -420,6 +421,14 @@ cc_library(
)
cc_library(
+ name = "denormal",
+ srcs = ["denormal.cc"],
+ hdrs = ["denormal.h"],
+ copts = ruy_copts(),
+ visibility = ["//visibility:public"],
+)
+
+cc_library(
name = "performance_advisory",
hdrs = ["performance_advisory.h"],
copts = ruy_copts(),
@@ -956,6 +965,7 @@ cc_library(
":cpu_cache_params",
":cpuinfo",
":ctx",
+ ":denormal",
":mat",
":matrix",
":mul_params",
@@ -1195,6 +1205,22 @@ ruy_test(
],
)
+cc_test(
+ name = "test_overflow_dst_zero_point",
+ srcs = [
+ "test_overflow_dst_zero_point.cc",
+ ],
+ copts = ruy_copts(),
+ deps = [
+ ":gtest_wrapper",
+ ":matrix",
+ ":path",
+ ":ruy",
+ ":test_lib",
+ ":tune",
+ ],
+)
+
bzl_library(
name = "ruy_test_ext.oss_bzl",
srcs = ["ruy_test_ext.oss.bzl"],