-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.mk
More file actions
36 lines (30 loc) · 1.42 KB
/
Copy pathconfig.mk
File metadata and controls
36 lines (30 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# ==============================================================================
# config.mk — OpenROAD Flow Configuration: 8x8 Weight-Stationary Systolic Array
# ------------------------------------------------------------------------------
# Author : Rakshith Suresh
# Affiliation : MS Electrical Engineering
# University of Southern California, Viterbi School of Engineering
# Email : rsuresh@usc.edu
# GitHub : https://github.com/RakshithSuresh2001
# ------------------------------------------------------------------------------
# PDK : SkyWater 130nm (sky130hd)
# Corner : TT (Typical-Typical), 025C, 1V80
# Tool : OpenROAD v2.0, Yosys 0.44
# Clock : 20ns period (50 MHz target)
# ==============================================================================
export DESIGN_NAME = systolic_array
export PLATFORM = sky130hd
# RTL source files
export VERILOG_FILES = $(DESIGN_DIR)/src/pe_yosys.sv \
$(DESIGN_DIR)/src/systolic_array_yosys.sv
# Timing constraints
export SDC_FILE = $(DESIGN_DIR)/constraint.sdc
# Clock period in ps (20ns = 50 MHz)
export CLOCK_PERIOD = 20000
# Placement density
export PLACE_DENSITY = 0.65
# Disable features not supported by installed tool versions
#export SYNTH_HDL_FRONTEND = verilog # disabled — use default read_verilog
export EQUIVALENCE_CHECK = 0
export LEC_CHECK = 0
export SKIP_DETAILED_ROUTE = 0