[zorg] r311638 - clang-native-arm-lnt-perf: Move to test-suite producer

Diana Picus via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 24 01:40:41 PDT 2017


Author: rovka
Date: Thu Aug 24 01:40:41 2017
New Revision: 311638

URL: http://llvm.org/viewvc/llvm-project?rev=311638&view=rev
Log:
clang-native-arm-lnt-perf: Move to test-suite producer

Move the ARM performance-tracking bot to the test-suite producer instead
of the old-fashioned nt one. This allows us to submit full perf results,
and is generally a better maintained producer.

If the results turn out to be too noisy, we might want to also add
'--run-under', 'taskset -a -c 1'. However, that will probably require
some fiddling with the board since the cores are dynamically put into
offline mode and that sometimes confuses taskset.

Modified:
    zorg/trunk/buildbot/osuosl/master/config/builders.py

Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=311638&r1=311637&r2=311638&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Thu Aug 24 01:40:41 2017
@@ -190,9 +190,10 @@ def _get_clang_builders():
                       useTwoStage=False,
                       runTestSuite=True,
                       env={'PATH':'/usr/lib/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'},
-                      nt_flags=['--cflag', '-mcpu=cortex-a15', '--cflag', '-mthumb',
-                                '--threads=1', '--build-threads=4', '--use-perf',
-                                '--benchmarking-only', '--multisample=3',
+                      testsuite_flags=['--cppflags', '-O3 -mcpu=cortex-a15 -mthumb',
+                                '--threads=1', '--build-threads=4',
+                                '--use-perf=all',
+                                '--benchmarking-only', '--exec-multisample=3',
                                 '--exclude-stat-from-submission=compile'],
                       extra_cmake_args=["-DCMAKE_C_FLAGS='-mcpu=cortex-a15 -mthumb'",
                                         "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a15 -mthumb'",




More information about the llvm-commits mailing list