> In the M5 beta 5 release, the line in Options.py:
>
> parser.add_option("-n", "--num-cpus", type="int", default=1)
>
> Shouldn't this be:
> parser.add_option("-n", "--num_cpus", type="int", default=1)
>
> it is used in fs.py as np = options.num_cpusThe optparse code converts num-cpus to num_cpus since - is not a valid character in a variable name. Nate _______________________________________________ m5-users mailing list [email protected] http://m5sim.org/cgi-bin/mailman/listinfo/m5-users
