OpenRAM/compiler/tests/configs/config.py

29 lines
648 B
Python
Raw Normal View History

# See LICENSE for licensing information.
#
2019-06-14 17:43:41 +02:00
# Copyright (c) 2016-2019 Regents of the University of California and The Board
# of Regents for the Oklahoma Agricultural and Mechanical College
# (acting for and on behalf of Oklahoma State University)
# All rights reserved.
#
from globals import OPTS
word_size = 1
num_words = 16
tech_name = OPTS.tech_name
process_corners = ["TT"]
supply_voltages = [5.0]
temperatures = [25]
route_supplies = True
check_lvsdrc = True
2019-11-17 01:49:38 +01:00
if tech_name == "freepdk45":
drc_name = "calibre"
lvs_name = "calibre"
pex_name = "calibre"
else:
drc_name = "magic"
lvs_name = "netgen"
pex_name = "magic"
2018-09-14 00:18:30 +02:00