-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from firesim/dev
FireSim 1.12 Release (Dev -> Master) Tracking PR
- Loading branch information
Showing
9 changed files
with
77 additions
and
10 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
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
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
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
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
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
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
58 changes: 58 additions & 0 deletions
58
hdk/common/shell_v04261818/build/scripts/strategy_NORETIMING.tcl
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,58 @@ | ||
# 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. | ||
|
||
source $HDK_SHELL_DIR/build/scripts/params.tcl | ||
source $HDK_SHELL_DIR/build/scripts/uram_options.tcl | ||
|
||
set synth_options "-no_lc -shreg_min_size 5 -fsm_extraction one_hot -resource_sharing auto $synth_uram_option" | ||
set synth_directive "default" | ||
|
||
#Set psip to 1 to enable Physical Synthesis in Placer | ||
set psip 0 | ||
|
||
set link 1 | ||
|
||
set opt 1 | ||
set opt_options "" | ||
set opt_directive "Explore" | ||
set opt_preHookTcl "$HDK_SHELL_DIR/build/scripts/check_uram.tcl" | ||
set opt_postHookTcl "$HDK_SHELL_DIR/build/scripts/apply_debug_constraints.tcl" | ||
|
||
set place 1 | ||
set place_options "" | ||
set place_directive "ExtraNetDelay_high" | ||
set place_preHookTcl "" | ||
set place_postHookTcl "" | ||
|
||
set phys_opt 1 | ||
set phys_options "" | ||
set phys_directive "" | ||
set phys_directive "AggressiveExplore" | ||
set phys_preHookTcl "" | ||
set phys_postHookTcl "" | ||
|
||
set route 1 | ||
set route_options "-tns_cleanup" | ||
set route_directive "Explore" | ||
set route_preHookTcl "" | ||
set route_postHookTcl "" | ||
|
||
set route_phys_opt 1 | ||
set post_phys_options "" | ||
set post_phys_directive "AggressiveExplore" | ||
set post_phys_preHookTcl "" | ||
set post_phys_postHookTcl "" | ||
|
||
|
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