hqjenny-centrifuge/deploy/centrifuge.py

108 lines
3.5 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2019-11-05 05:48:16 +08:00
# PYTHON_ARGCOMPLETE_OK
from __future__ import with_statement, print_function
import sys
import os
import argparse
from time import sleep, strftime, gmtime
import logging
import random
import string
import argcomplete
import pathlib
2019-11-05 05:48:16 +08:00
# centrifuge
import pkg.util as util
import pkg.buildaccel as buildaccel
2019-11-05 05:48:16 +08:00
from os.path import dirname as up
def construct_centrifuge_argparser():
# parse command line args
parser = argparse.ArgumentParser(description='Centrifuge Script')
2020-02-06 07:56:54 +08:00
parser.add_argument('task',
type=str,
help='Management task to run.',
choices=[
2019-11-05 05:48:16 +08:00
'generate_all',
'clean_all',
'generate_hw',
'clean_hw',
'generate_sw',
'clean_sw',
2020-02-06 07:56:54 +08:00
'run_f1',
'run_sim',
],
)
parser.add_argument('-c',
'--accelconfigfile',
type=pathlib.Path,
help='Path to accelerator SoC config JSON file.',
required=True
2019-11-05 05:48:16 +08:00
)
argcomplete.autocomplete(parser)
return parser.parse_args()
def initLogging():
"""Set up logging for this run. Assumes that util.initConfig() has been called already."""
rootLogger = logging.getLogger()
rootLogger.setLevel(logging.NOTSET) # capture everything
# log to file
full_log_filename = util.getOpt("log-dir") / (util.getOpt("run-name") + ".log")
fileHandler = logging.FileHandler(full_log_filename)
# formatting for log to file
logFormatter = logging.Formatter("%(asctime)s [%(funcName)-12.12s] [%(levelname)-5.5s] %(message)s")
fileHandler.setFormatter(logFormatter)
fileHandler.setLevel(logging.NOTSET) # log everything to file
rootLogger.addHandler(fileHandler)
# log to stdout, without special formatting
consoleHandler = logging.StreamHandler(stream=sys.stdout)
consoleHandler.setLevel(logging.INFO) # show only INFO and greater in console
rootLogger.addHandler(consoleHandler)
return rootLogger
2019-11-05 05:48:16 +08:00
def main(args):
""" Main function for FireSim manager. """
# load accel.json
2020-02-06 07:56:54 +08:00
accel_config = util.AccelConfig(args.accelconfigfile,
util.getOpt('chipyard-dir'),
util.getOpt('cf-dir'),
util.getOpt('genhw-dir'))
2019-11-05 05:48:16 +08:00
# print the info
2020-02-06 07:56:54 +08:00
# accel_config.info()
2019-11-05 05:48:16 +08:00
# tasks that have a special config/dispatch setup
if args.task == 'generate_hw':
buildaccel.generate_hw(accel_config)
2020-02-06 07:56:54 +08:00
elif args.task == 'clean_hw':
buildaccel.clean_hw(accel_config)
else:
print("Command: " + str(args.task) + " not yet implemented")
2019-11-05 05:48:16 +08:00
if __name__ == '__main__':
args = construct_centrifuge_argparser()
# Make all paths absolute as early as possible
args.accelconfigfile = args.accelconfigfile.resolve()
ctx = util.initConfig()
ctx.setRunName(args.accelconfigfile, args.task)
rootLogger = initLogging()
2019-11-05 05:48:16 +08:00
exitcode = 0
try:
main(args)
except:
# log all exceptions that make it this far
rootLogger.exception("Fatal error.")
exitcode = 1
finally:
rootLogger.info("""The full log of this run is:\n{logdir}/{runname}.log""".format(logdir=util.getOpt('log-dir'), runname=util.getOpt('run-name')))
2019-11-05 05:48:16 +08:00
exit(exitcode)