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:
authorBenoit Jacob <benoitjacob@google.com>2019-09-20 17:52:27 +0300
committerBenoit Jacob <benoitjacob@google.com>2020-03-10 23:38:19 +0300
commitf7118e1af1ec8d12c24212a15c987afe31a3d61d (patch)
tree3ba2ee0809787cd24e1bafc92bfffc9dead0a5d2 /BUILD
parentf5851162ddf9cde1c47595da79c5f1ddc96e08bc (diff)
Rewrite MakeBlockMap to be more principled and at the same time more explicitly empirically derived.
These values have been obtained on a Qualcomm S855 device (arm64). This would need to be tuned differently to achieve optimal performance on other hardware. PiperOrigin-RevId: 270268717
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 6a19ee6..8f6da3d 100644
--- a/BUILD
+++ b/BUILD
@@ -146,12 +146,23 @@ cc_library(
deps = [
":check_macros",
":opt_set",
+ ":path",
":side_pair",
":size_util",
"//third_party/gemmlowp:profiler",
],
)
+cc_test(
+ name = "block_map_test",
+ srcs = ["block_map_test.cc"],
+ deps = [
+ ":block_map",
+ ":path",
+ "@com_google_googletest//:gtest",
+ ],
+)
+
cc_library(
name = "blocking_counter",
srcs = [