-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#------------------------------------------------------------------------------ | ||
# dsp_everywhere.xdc | ||
# Konstantin Pavlov, [email protected] | ||
#------------------------------------------------------------------------------ | ||
|
||
# INFO ------------------------------------------------------------------------ | ||
# Experimental XDC constraints to explore how many DSPs could be used in your | ||
# project. After the exploration you can write more specific DSP constraints | ||
# | ||
|
||
|
||
# add all project cells first | ||
set_property use_dsp48 yes [get_cells -hierarchical -filter { IS_PRIMITIVE == "FALSE" }] | ||
|
||
# (OPTIONAL) and then exclude specific cells if they fail timings with DSP`s | ||
# set_property use_dsp no [get_cells -hierarchical -filter { IS_PRIMITIVE == "FALSE" && NAME =~ "top/my_instance_a*" }] | ||
# set_property use_dsp no [get_cells -hierarchical -filter { IS_PRIMITIVE == "FALSE" && NAME =~ "top/my_instance_b*" }] | ||
# set_property use_dsp no [get_cells -hierarchical -filter { IS_PRIMITIVE == "FALSE" && NAME =~ "top/my_instance_c*" }] | ||
|