[zorg] r250226 - Disable LNT hash value calculation in Polly builders

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 13 14:04:22 PDT 2015


Author: grosser
Date: Tue Oct 13 16:04:22 2015
New Revision: 250226

URL: http://llvm.org/viewvc/llvm-project?rev=250226&view=rev
Log:
Disable LNT hash value calculation in Polly builders

Hash value computation has been committed to LNT and enabled by default
without upgrading the llvm.org/perf instance, such that since 10 days
LNT buildslaves fail to submit their results if they do not explicitly
disable hash value creation. As apparently both disabling hash value
computation in LNT and upgrading llvm.org/perf is not soo easy, the only
solution left is to explicitly disable it through nt_flags. Sorry for
the noise.

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=250226&r1=250225&r2=250226&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Tue Oct 13 16:04:22 2015
@@ -396,7 +396,7 @@ def _get_clang_builders():
          'builddir':"perf-x86_64-penryn-O3",
          'factory': PollyBuilder.getPollyLNTFactory(triple="x86_64-pc-linux-gnu",
                                                     #nt_flags=['--multisample=10', '--rerun'],
-                                                    nt_flags=['--multisample=10'],
+                                                    nt_flags=['--multisample=10', '--exclude-stat-from-submission=hash'],
                                                     reportBuildslave=False,
                                                     package_cache="http://parkas1.inria.fr/packages",
                                                     submitURL=['http://gcc12.fsffrance.org:8808/submitRun','http://llvm.org/perf/submitRun'],
@@ -487,7 +487,7 @@ def _get_polly_builders():
          'builddir':"perf-x86_64-penryn-O3-polly",
          'factory': PollyBuilder.getPollyLNTFactory(triple="x86_64-pc-linux-gnu",
                                                     #nt_flags=['--multisample=10', '--mllvm=-polly', '--rerun'],
-                                                    nt_flags=['--multisample=10', '--mllvm=-polly'],
+                                                    nt_flags=['--multisample=10', '--mllvm=-polly', '--exclude-stat-from-submission=hash'],
                                                     reportBuildslave=False,
                                                     package_cache="http://parkas1.inria.fr/packages",
                                                     submitURL=['http://gcc12.fsffrance.org:8808/submitRun','http://llvm.org/perf/submitRun'],




More information about the llvm-commits mailing list