blob: 4404a1bc2a6a3c6f1b32d8ed74dd69c1b759e184 [file] [log] [blame] [edit]
#!/usr/bin/python3
import os
import sys
def get_design_path(design):
path = os.path.join(
os.getcwd(),
'./designs/{design}/'.format(
design=design
)
)
return path
def get_run_path(design, tag):
DEFAULT_PATH = os.path.join(
os.getcwd(),
get_design_path(design),
'runs/{tag}/'.format(
tag=tag
)
)
return DEFAULT_PATH