Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
macroplacement
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
macroplacement
Commits
fae42d00
Commit
fae42d00
authored
Jul 06, 2022
by
sakundu
Browse files
Options
Browse Files
Download
Plain Diff
Updated merge conflict'
parents
4cd370c2
a7b39ac5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
26 deletions
+21
-26
.gitignore
+2
-2
Flows/ASAP7/mempool_tile/constraints/mempool_tile_wrap.sdc
+1
-1
Flows/NanGate45/mempool_tile/constraints/mempool_tile_wrap.sdc
+12
-12
Flows/SKY130HD/mempool_tile/constraints/mempool_tile_wrap.sdc
+1
-1
Flows/util/genJobList.py
+5
-10
No files found.
.gitignore
View file @
fae42d00
Flows/*/*/run/*/
\ No newline at end of file
Flows/*/*/run/*/
Flows/job
Flows/ASAP7/mempool_tile/constraints/mempool_tile_wrap.sdc
View file @
fae42d00
...
...
@@ -1299,4 +1299,4 @@ set_clock_uncertainty -setup 0.08 [get_clocks clk_i]
set_clock_uncertainty -hold 0.08 [get_clocks clk_i]
set_clock_latency 0.07 [get_clocks vclk_i]
## List of unsupported SDC commands ##
set_critical_range 0.100 [current_design]
#
set_critical_range 0.100 [current_design]
Flows/NanGate45/mempool_tile/constraints/mempool_tile_wrap.sdc
View file @
fae42d00
...
...
@@ -20,7 +20,7 @@ set_clock_latency $pre_cts_clock_latency_estimate [get_clocks clk_i]
# Create virtual clock.
create_clock -name "vclk_i" -period $clock_cycle
set_clock_uncertainty $
clk_
uncertainty [get_clocks vclk_i]
set_clock_uncertainty $uncertainty [get_clocks vclk_i]
set_clock_latency $pre_cts_clock_latency_estimate [get_clocks vclk_i]
set_max_transition $maxTransition -clock_path [get_clocks vclk_i]
...
...
@@ -34,26 +34,26 @@ set_max_fanout $maxFanout [current_design]
set_false_path -from tile_id_i
# TCDM Master
set_input_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "
hierarchical_
name =~ tcdm_master_*req_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "
hierarchical_
name =~ tcdm_master_*req_*"]
set_input_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "name =~ tcdm_master_*req_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "name =~ tcdm_master_*req_*"]
set_input_delay [expr 0.65*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "
hierarchical_
name =~ tcdm_master_*resp_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "
hierarchical_
name =~ tcdm_master_*resp_*"]
set_input_delay [expr 0.65*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "name =~ tcdm_master_*resp_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "name =~ tcdm_master_*resp_*"]
# TCDM Slave
set_input_delay [expr 0.65*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "
hierarchical_
name =~ tcdm_slave_*req_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "
hierarchical_
name =~ tcdm_slave_*req_*"]
set_input_delay [expr 0.65*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "name =~ tcdm_slave_*req_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "name =~ tcdm_slave_*req_*"]
set_input_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "
hierarchical_
name =~ tcdm_slave_*resp_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "
hierarchical_
name =~ tcdm_slave_*resp_*"]
set_input_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "name =~ tcdm_slave_*resp_*"]
set_output_delay [expr 0.85*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "name =~ tcdm_slave_*resp_*"]
# Refill port
set_input_delay [expr 0.50*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "hierarchical_
name =~ refill_*"]
set_output_delay [expr 0.50*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "hierarchical_
name =~ refill_*"]
#set_input_delay [expr 0.50*$clock_cycle] -clock vclk_i [filter_collection [all_inputs] "
name =~ refill_*"]
#set_output_delay [expr 0.50*$clock_cycle] -clock vclk_i [filter_collection [all_outputs] "
name =~ refill_*"]
# Reset
set_input_delay [expr 0.30*$clock_cycle] -clock vclk_i rst_ni
# Critical range
# Depending on the synthesis tool used, this can be helpful.
set_critical_range 0.100 [current_design]
#
set_critical_range 0.100 [current_design]
Flows/SKY130HD/mempool_tile/constraints/mempool_tile_wrap.sdc
View file @
fae42d00
...
...
@@ -56,4 +56,4 @@ set_input_delay [expr 0.30*$clock_cycle] -clock vclk_i rst_ni
# Critical range
# Depending on the synthesis tool used, this can be helpful.
set_critical_range 0.100 [current_design]
#
set_critical_range 0.100 [current_design]
Flows/util/genJobList.py
View file @
fae42d00
...
...
@@ -2,32 +2,27 @@ import os
import
shutil
import
fileinput
import
re
from
datetime
import
date
time
import
time
testcases
=
[
'ariane136'
,
'ariane133'
,
'mempool_tile'
,
'nvdla'
]
enablements
=
[
'NanGate45'
,
'ASAP7'
]
flows
=
[
1
,
2
]
job_file
=
"all_jobs"
tnow
=
datetime
.
now
()
suffix
=
f
'{tnow.month}{tnow.day}{tnow.year}_{tnow.hour}{tnow.minute}{tnow.second}'
fp
=
open
(
job_file
,
"w"
)
run_dir_name
=
f
"run-{time.strftime('
%
Y
%
m
%
d-
%
H
%
M
%
S')}"
for
enablement
in
enablements
:
for
testcase
in
testcases
:
for
flow
in
flows
:
## Check if the run directory exists
run_dir
=
f
"./{enablement}/{testcase}/run"
run_dir
=
f
"./{enablement}/{testcase}/{run_dir_name}"
print
(
run_dir
)
if
not
os
.
path
.
exists
(
run_dir
):
os
.
makedirs
(
run_dir
)
## Copy the scripts
scripts_src
=
f
"./{enablement}/{testcase}/scripts/cadence"
if
suffix
!=
""
:
scripts_dst
=
f
"./{enablement}/{testcase}/run/flow{flow}_{suffix}"
else
:
scripts_dst
=
f
"./{enablement}/{testcase}/run/flow{flow}"
scripts_dst
=
f
"{run_dir}/flow{flow}"
if
os
.
path
.
exists
(
scripts_dst
):
print
(
f
"For TestCase:{testcase} Enablement:{enablement} Flow:{flow}"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment