Commit 7d741c85 by Cody Northrop Committed by Commit Bot

Tests: Remove more optimizations from traces

With the addition of NBA2K20, which has stressed multiple parts of our solution, we need to scale back the optimization done on the trace itself. Otherwise the link never completes. Test: angle_perftests --gtest_filter="TracePerfTest.Run/*nba*" Bug: b/160014453 Bug: angleproject:4048 Change-Id: I064813326d401cdcc5649c45255eb214cbf0a2db Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2335607Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Cody Northrop <cnorthrop@google.com>
parent bec98851
...@@ -337,7 +337,12 @@ if (is_win || is_linux || is_android || is_mac || is_fuchsia) { ...@@ -337,7 +337,12 @@ if (is_win || is_linux || is_android || is_mac || is_fuchsia) {
# Disable optimization in the trace perf tests to avoid optimizing huge files. # Disable optimization in the trace perf tests to avoid optimizing huge files.
if (!is_debug) { if (!is_debug) {
suppressed_configs += [ "//build/config/compiler:default_optimization" ] suppressed_configs += [
"//build/config/compiler:afdo",
"//build/config/compiler:afdo_optimize_size",
"//build/config/compiler:default_optimization",
"//build/config/compiler/pgo:default_pgo_flags",
]
configs += [ "//build/config/compiler:no_optimize" ] configs += [ "//build/config/compiler:no_optimize" ]
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment