81c81
< cmd = ['CHOLESKY', '-p', str(options.numcpus),
---
> cmd = ['CHOLESKY', '-p' + str(options.numcpus),
131c131
< cmd = ['RAYTRACE', '-p', str(options.numcpus),
---
> cmd = ['RAYTRACE', '-p' + str(options.numcpus),
255,258c255,258
< panic("The --benchmark environment variable was set to something" \
< +" improper.\nUse Cholesky, FFT, LUContig, LUNoncontig, Radix" \
< +", Barnes, FMM, OceanContig,\nOceanNoncontig, Raytrace," \
< +" WaterNSquared, or WaterSpatial\n")
---
> print >> sys.stderr, """The --benchmark environment variable was set to something improper.
> Use Cholesky, FFT, LUContig, LUNoncontig, Radix, Barnes, FMM, OceanContig,
> OceanNoncontig, Raytrace, WaterNSquared, or WaterSpatial"""
> sys.exit(1)