suite.def.template 894 B

12345678910111213141516171819202122232425
  1. # config/suite.def
  2. # This file is used to build several benchmarks with a single command.
  3. # Typing "make suite" in the main directory will build all the benchmarks
  4. # specified in this file.
  5. # Each line of this file contains a benchmark name, class, and number
  6. # of nodes. The name is one of "cg", "is", "ep", mg", "ft", "sp", "bt",
  7. # "lu", and "dt".
  8. # The class is one of "S", "W", "A", "B", "C", "D", and "E"
  9. # (except that no classes C, D and E for DT, and no class E for IS).
  10. # The number of nodes must be a legal number for a particular
  11. # benchmark. The utility which parses this file is primitive, so
  12. # formatting is inflexible. Separate name/class/number by tabs.
  13. # Comments start with "#" as the first character on a line.
  14. # No blank lines.
  15. # The following example builds 1 processor sample sizes of all benchmarks.
  16. ft S 1
  17. mg S 1
  18. sp S 1
  19. lu S 1
  20. bt S 1
  21. is S 1
  22. ep S 1
  23. cg S 1
  24. dt S 1