56,58c56,60
< parser.add_option("-s", "--standard_switch", action="store", type="int",
< help="switch from timing CPU to Detailed CPU after a period of \
< <N> cycles warmup", default=5000000000)
---
> parser.add_option("-s", "--standard_switch", action="store_true",
> help="switch from timing CPU to Detailed CPU")
> parser.add_option("-w", "--warmup", action="store", type="int",
> help="if -s, then this is the warmup period. else, this is ignored",
> default=5000000000)