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-08-23 20:29:45 +0300
committerBenoit Jacob <benoitjacob@google.com>2020-03-10 23:37:35 +0300
commit8d21e2b2b788fdfe56366c839200b42c7aedd672 (patch)
tree043782e83bf66f21b03c0ab9d30fcbb0b2f90f90 /BUILD
parentee13042a32cf8009d7d5543cfd3c42cfce51342b (diff)
Fix an assertion.
Also edit a comment in ruy/BUILD about debugging. PiperOrigin-RevId: 265083281
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/BUILD b/BUILD
index debccdd..7dd756a 100644
--- a/BUILD
+++ b/BUILD
@@ -13,8 +13,8 @@ load("//third_party/tensorflow/lite:special_rules.bzl", "tflite_portable_test_su
# 2. Explicitly pass -O3 on mobile configs where just "-c opt" means "optimize for code size".
# We would want to only do that when compilation_mode is "opt", but limitations of
# the "select" keyword (no nested selects, no AND boolean) seem to make that difficult
-# at the moment. For debugging purposes, this can be overridded on the command line, e.g.
-# bazel build -c dbg --copt=-O0 ...
+# at the moment. For debugging purposes, one needs to manually edit this to remove these
+# -O3. Otherwise, not even `bazel build --copt=-O0` will override that.
RUY_COPTS = select({
"//third_party/tensorflow:android_arm64": [
"-O3",