This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository test-suite.
from cbe1e7e5 Replace calls to 'system' with an error message and abort. new 6260dff0 [test-suite] Adding LCALS (Livermore Compiler Analysis Loop S [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: LICENSE.TXT | 1 + MicroBenchmarks/CMakeLists.txt | 1 + MicroBenchmarks/LCALS/CMakeLists.txt | 6 + MicroBenchmarks/LCALS/LCALSParams.hxx | 836 +++++++ MicroBenchmarks/LCALS/LCALSStats.cxx | 1024 ++++++++ MicroBenchmarks/LCALS/LCALSStats.hxx | 306 +++ MicroBenchmarks/LCALS/LCALSSuite.cxx | 2519 ++++++++++++++++++++ MicroBenchmarks/LCALS/LCALSSuite.hxx | 586 +++++ MicroBenchmarks/LCALS/LCALSTraversalMethods.cxx | 137 ++ MicroBenchmarks/LCALS/LCALSTraversalMethods.hxx | 455 ++++ .../LCALS/README-LCALS_instructions.txt | 312 +++ MicroBenchmarks/LCALS/README-LCALS_license.txt | 170 ++ .../LCALS/README-LCALS_llvm-test-suite.txt | 21 + .../LCALS/SubsetALambdaLoops/CMakeLists.txt | 4 + .../SubsetALambdaLoops/LambdaSubsetAbenchmarks.cxx | 467 ++++ .../LCALS/SubsetARawLoops/CMakeLists.txt | 4 + .../LCALS/SubsetARawLoops/RawSubsetAbenchmarks.cxx | 455 ++++ .../LCALS/SubsetBLambdaLoops/CMakeLists.txt | 5 + .../SubsetBLambdaLoops/LambdaSubsetBbenchmarks.cxx | 137 ++ .../LCALS/SubsetBRawLoops/CMakeLists.txt | 5 + .../LCALS/SubsetBRawLoops/RawSubsetBbenchmarks.cxx | 132 + .../LCALS/SubsetCLambdaLoops/CMakeLists.txt | 5 + .../SubsetCLambdaLoops/LambdaSubsetCbenchmarks.cxx | 718 ++++++ .../LCALS/SubsetCRawLoops/CMakeLists.txt | 4 + .../LCALS/SubsetCRawLoops/RawSubsetCbenchmarks.cxx | 1017 ++++++++ MicroBenchmarks/LCALS/SubsetDataA.hxx | 168 ++ MicroBenchmarks/LCALS/SubsetDataB.hxx | 30 + MicroBenchmarks/LCALS/main.cxx | 407 ++++ MicroBenchmarks/LCALS/runReferenceLoops.cxx | 172 ++ 29 files changed, 10104 insertions(+) create mode 100644 MicroBenchmarks/LCALS/CMakeLists.txt create mode 100644 MicroBenchmarks/LCALS/LCALSParams.hxx create mode 100644 MicroBenchmarks/LCALS/LCALSStats.cxx create mode 100644 MicroBenchmarks/LCALS/LCALSStats.hxx create mode 100644 MicroBenchmarks/LCALS/LCALSSuite.cxx create mode 100644 MicroBenchmarks/LCALS/LCALSSuite.hxx create mode 100644 MicroBenchmarks/LCALS/LCALSTraversalMethods.cxx create mode 100644 MicroBenchmarks/LCALS/LCALSTraversalMethods.hxx create mode 100644 MicroBenchmarks/LCALS/README-LCALS_instructions.txt create mode 100644 MicroBenchmarks/LCALS/README-LCALS_license.txt create mode 100644 MicroBenchmarks/LCALS/README-LCALS_llvm-test-suite.txt create mode 100644 MicroBenchmarks/LCALS/SubsetALambdaLoops/CMakeLists.txt create mode 100644 MicroBenchmarks/LCALS/SubsetALambdaLoops/LambdaSubsetAbenchmarks.cxx create mode 100644 MicroBenchmarks/LCALS/SubsetARawLoops/CMakeLists.txt create mode 100644 MicroBenchmarks/LCALS/SubsetARawLoops/RawSubsetAbenchmarks.cxx create mode 100644 MicroBenchmarks/LCALS/SubsetBLambdaLoops/CMakeLists.txt create mode 100644 MicroBenchmarks/LCALS/SubsetBLambdaLoops/LambdaSubsetBbenchmarks.cxx create mode 100644 MicroBenchmarks/LCALS/SubsetBRawLoops/CMakeLists.txt create mode 100644 MicroBenchmarks/LCALS/SubsetBRawLoops/RawSubsetBbenchmarks.cxx create mode 100644 MicroBenchmarks/LCALS/SubsetCLambdaLoops/CMakeLists.txt create mode 100644 MicroBenchmarks/LCALS/SubsetCLambdaLoops/LambdaSubsetCbenchmarks.cxx create mode 100644 MicroBenchmarks/LCALS/SubsetCRawLoops/CMakeLists.txt create mode 100644 MicroBenchmarks/LCALS/SubsetCRawLoops/RawSubsetCbenchmarks.cxx create mode 100644 MicroBenchmarks/LCALS/SubsetDataA.hxx create mode 100644 MicroBenchmarks/LCALS/SubsetDataB.hxx create mode 100644 MicroBenchmarks/LCALS/main.cxx create mode 100644 MicroBenchmarks/LCALS/runReferenceLoops.cxx