Loading src/main/kotlin/se/lth/cs/commandline/PapiCommandLine.kt +2 −2 Original line number Diff line number Diff line Loading @@ -22,14 +22,14 @@ class PapiCommandLine : CliktCommand() { .default("papi_avail") val outputFileName : String by option("-o", help="The output file for PAPI counter data") .default("hardware-perf-data.csv") .default("output.csv") val numberRuns : Int by option("--number-runs", "-n", help="Number of runs per counter and application") .int() .default(100) val softwareCounters : Boolean by option("-s", "--software-counters") val softwareCounters : Boolean by option("-s", "--software-counters", help="Prints software counters to output file") .flag() fun checkFileExists(file : File) { Loading Loading
src/main/kotlin/se/lth/cs/commandline/PapiCommandLine.kt +2 −2 Original line number Diff line number Diff line Loading @@ -22,14 +22,14 @@ class PapiCommandLine : CliktCommand() { .default("papi_avail") val outputFileName : String by option("-o", help="The output file for PAPI counter data") .default("hardware-perf-data.csv") .default("output.csv") val numberRuns : Int by option("--number-runs", "-n", help="Number of runs per counter and application") .int() .default(100) val softwareCounters : Boolean by option("-s", "--software-counters") val softwareCounters : Boolean by option("-s", "--software-counters", help="Prints software counters to output file") .flag() fun checkFileExists(file : File) { Loading