mirror of https://github.com/VLSIDA/OpenRAM.git
Print start time after banner and init
This commit is contained in:
parent
428432dacd
commit
b15584a821
|
|
@ -26,15 +26,15 @@ if len(args) != 1:
|
||||||
# These depend on arguments, so don't load them until now.
|
# These depend on arguments, so don't load them until now.
|
||||||
import debug
|
import debug
|
||||||
|
|
||||||
# Keep track of running stats
|
|
||||||
start_time = datetime.datetime.now()
|
|
||||||
print_time("Start",start_time)
|
|
||||||
|
|
||||||
init_openram(config_file=args[0], is_unit_test=False)
|
init_openram(config_file=args[0], is_unit_test=False)
|
||||||
|
|
||||||
# Only print banner here so it's not in unit tests
|
# Only print banner here so it's not in unit tests
|
||||||
print_banner()
|
print_banner()
|
||||||
|
|
||||||
|
# Keep track of running stats
|
||||||
|
start_time = datetime.datetime.now()
|
||||||
|
print_time("Start",start_time)
|
||||||
|
|
||||||
# Output info about this run
|
# Output info about this run
|
||||||
report_status()
|
report_status()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue