From b15584a821932b80d8ddca857d3146f21c99dfd9 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Fri, 7 Dec 2018 15:50:18 -0800 Subject: [PATCH] Print start time after banner and init --- compiler/openram.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/openram.py b/compiler/openram.py index 4900e054..fa52f3a2 100755 --- a/compiler/openram.py +++ b/compiler/openram.py @@ -26,15 +26,15 @@ if len(args) != 1: # These depend on arguments, so don't load them until now. 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) # Only print banner here so it's not in unit tests print_banner() +# Keep track of running stats +start_time = datetime.datetime.now() +print_time("Start",start_time) + # Output info about this run report_status()