Try to setup commands properly.
--HG-- extra : convert_revision : 9f4af3c5f52841b10e9f17c48470716703a1be67
This commit is contained in:
parent
f593c8a8e2
commit
8ccd99e341
8 changed files with 29 additions and 15 deletions
|
@ -26,5 +26,6 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'gzip smred.log 1',
|
||||
executable = binpath('gzip'))
|
||||
process = LiveProcess(executable = binpath('gzip'))
|
||||
process.cmd = 'gzip ' + inputpath('gzip', 'smred.log') + ' 1'
|
||||
root.system.cpu.workload = process
|
||||
|
|
|
@ -26,5 +26,6 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'mcf lgred.in',
|
||||
executable = binpath('mcf'))
|
||||
process = LiveProcess(executable = binpath('mcf'))
|
||||
process.cmd = 'mcf' + inputpath('mcf', 'lgred.in')
|
||||
root.system.cpu.workload = process
|
||||
|
|
|
@ -26,5 +26,7 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'parser 2.1.dict -batch < lgred.in',
|
||||
executable = binpath('parser'))
|
||||
process = LiveProcess(executable = binpath('parser'))
|
||||
process.cmd = 'parser 2.1.dict -batch'
|
||||
process.input = inputpath('parser', 'lgred.in')
|
||||
root.system.cpu.workload = process
|
||||
|
|
|
@ -26,4 +26,10 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'eon chair.control.cook chair.camera chair.surfaces chair.cook.ppm ppm pixels_out.cook',executable = binpath('eon'))
|
||||
process = LiveProcess(executable = binpath('eon'))
|
||||
process.cmd = 'eon' + inputpath('eon', 'chair.control.cook') + \
|
||||
inputpath('eon', 'chair.camera') + \
|
||||
inputpath('eon', 'chair.surfaces') + \
|
||||
inputpath('eon', 'chair.cook.ppm') + 'ppm' \
|
||||
+ 'pixels_out.cook'
|
||||
root.system.cpu.workload = process
|
||||
|
|
|
@ -26,5 +26,6 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'perlbmk -I./lib lgred.makerand.pl',
|
||||
executable = binpath('perlbmk'))
|
||||
process = LiveProcess(executable = binpath('perlbmk'))
|
||||
process.cmd = 'perlbmk -I./lib' + inputpath('perlbmk', 'lgred.makerand.pl')
|
||||
root.system.cpu.workload = process
|
||||
|
|
|
@ -26,5 +26,6 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'vortex smred.raw',
|
||||
executable = binpath('vortex'))
|
||||
process = LiveProcess(executable = binpath('vortex'))
|
||||
process.cmd = 'vortex' + inputpath('smred.raw')
|
||||
root.system.cpu.workload = process
|
||||
|
|
|
@ -26,5 +26,6 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'bzip2 lgred.source',
|
||||
executable = binpath('bzip2'))
|
||||
process = LiveProcess(executable = binpath('bzip2'))
|
||||
process.cmd = cmd = 'bzip2' + inputpath('bzip2', 'lgred.source')
|
||||
root.system.cpu.workload = process
|
||||
|
|
|
@ -26,5 +26,6 @@
|
|||
#
|
||||
# Authors: Korey Sewell
|
||||
|
||||
root.system.cpu.workload = LiveProcess(cmd = 'twolf smred/smred',
|
||||
executable = binpath('twolf'))
|
||||
process = LiveProcess(executable = binpath('twolf'))
|
||||
process.cmd = 'twolf' + inputpath('twolf', 'smred/smred')
|
||||
root.system.cpu.workload = process
|
||||
|
|
Loading…
Reference in a new issue