-
Notifications
You must be signed in to change notification settings - Fork 519
/
Copy pathparams.tcl
executable file
·29 lines (26 loc) · 1.27 KB
/
params.tcl
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
# Amazon FPGA Hardware Development Kit
#
# Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Amazon Software License (the "License"). You may not use
# this file except in compliance with the License. A copy of the License is
# located at
#
# http://aws.amazon.com/asl/
#
# or in the "license" file accompanying this file. This file is distributed on
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or
# implied. See the License for the specific language governing permissions and
# limitations under the License.
##################################################
### Tcl Procs and Params
##################################################
####Set params to disable OREG_B* in URAM for synthesis and physical synthesis
if {$uram_option != 2} {
set_param synth.elaboration.rodinMoreOptions {rt::set_parameter disableOregPackingUram true}
set_param physynth.ultraRAMOptOutput false
}
####Enable support of clocking from one RP to another (SH-->CL)
set_param hd.supportClockNetCrossDiffReconfigurablePartitions 1
# Maintain DONT TOUCH functionality for 2020.2 onwards
if {[string match *2020.2* [version -short]] || [string match *2021.* [version -short]]} {set_param project.replaceDontTouchWithKeepHierarchySoft false}