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 884c683c [test-suite] Adding the miniFE Benchmark new ca5e388a [test-suite] Adding the Pathfinder Benchmark
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 + .../Benchmarks/DOE-ProxyApps-C/CMakeLists.txt | 1 + MultiSource/Benchmarks/DOE-ProxyApps-C/Makefile | 4 +- .../DOE-ProxyApps-C/Pathfinder/CMakeLists.txt | 4 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/COPYING | 674 +++ .../DOE-ProxyApps-C/Pathfinder/COPYING.LESSER | 165 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/Makefile | 6 + .../Pathfinder/PathFinder.reference_output | 28 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/README | 220 + .../DOE-ProxyApps-C/Pathfinder/bitfield.c | 114 + .../DOE-ProxyApps-C/Pathfinder/bitfield.h | 69 + .../DOE-ProxyApps-C/Pathfinder/configuration.c | 69 + .../DOE-ProxyApps-C/Pathfinder/configuration.h | 80 + .../DOE-ProxyApps-C/Pathfinder/gettime.c | 43 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/graph.c | 186 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/graph.h | 101 + .../DOE-ProxyApps-C/Pathfinder/graphGen.c | 195 + .../DOE-ProxyApps-C/Pathfinder/graphGen.h | 52 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/main.c | 361 ++ .../DOE-ProxyApps-C/Pathfinder/medsmall1.adj_list | 6153 ++++++++++++++++++++ .../Benchmarks/DOE-ProxyApps-C/Pathfinder/node.c | 364 ++ .../Benchmarks/DOE-ProxyApps-C/Pathfinder/node.h | 159 + .../DOE-ProxyApps-C/Pathfinder/parsing.c | 678 +++ .../DOE-ProxyApps-C/Pathfinder/parsing.h | 114 + .../DOE-ProxyApps-C/Pathfinder/searchAlgorithms.c | 667 +++ .../DOE-ProxyApps-C/Pathfinder/searchAlgorithms.h | 106 + .../DOE-ProxyApps-C/Pathfinder/searchDiagram.c | 284 + .../DOE-ProxyApps-C/Pathfinder/searchDiagram.h | 93 + .../DOE-ProxyApps-C/Pathfinder/statistics.c | 238 + .../DOE-ProxyApps-C/Pathfinder/statistics.h | 71 + .../DOE-ProxyApps-C/Pathfinder/systemCallMap.c | 246 + .../DOE-ProxyApps-C/Pathfinder/systemCallMap.h | 112 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/utils.c | 252 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/utils.h | 53 + .../DOE-ProxyApps-C/Pathfinder/vectorUtils.c | 563 ++ .../DOE-ProxyApps-C/Pathfinder/vectorUtils.h | 169 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/yaml.c | 133 + .../Benchmarks/DOE-ProxyApps-C/Pathfinder/yaml.h | 47 + 38 files changed, 12873 insertions(+), 2 deletions(-) create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/CMakeLists.txt create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/COPYING create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/COPYING.LESSER create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/Makefile create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/PathFinder.re [...] create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/README create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/bitfield.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/bitfield.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/configuration.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/configuration.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/gettime.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/graph.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/graph.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/graphGen.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/graphGen.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/main.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/medsmall1.adj_list create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/node.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/node.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/parsing.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/parsing.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/searchAlgorithms.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/searchAlgorithms.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/searchDiagram.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/searchDiagram.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/statistics.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/statistics.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/systemCallMap.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/systemCallMap.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/utils.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/utils.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/vectorUtils.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/vectorUtils.h create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/yaml.c create mode 100644 MultiSource/Benchmarks/DOE-ProxyApps-C/Pathfinder/yaml.h