Skip to content

Commit

Permalink
Merge pull request #35 from firesim/no-retiming
Browse files Browse the repository at this point in the history
Finish adding support for NORETIMING strategy
  • Loading branch information
abejgonzalez authored Mar 30, 2021
2 parents 94b6b53 + 10f1708 commit 008f0bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ switch $strategy {
puts "EXPLORE strategy."
source $HDK_SHELL_DIR/build/scripts/strategy_EXPLORE.tcl
}
"NORETIMING" {
puts "NORETIMING strategy."
source $HDK_SHELL_DIR/build/scripts/strategy_NORETIMING.tcl
}
"TIMING" {
puts "TIMING strategy."
source $HDK_SHELL_DIR/build/scripts/strategy_TIMING.tcl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Usage help
function usage
{
echo "usage: aws_build_dcp_from_cl.sh [ [-script <vivado_script>] | [-strategy BASIC | DEFAULT | EXPLORE | TIMING | CONGESTION] [-clock_recipe_a A0 | A1 | A2] [-clock_recipe_b B0 | B1 | B2 | B3 | B4 | B5] [-clock_recipe_c C0 | C1 | C2 | C3] [-uram_option 2 | 3 | 4] [-vdefine macro1,macro2,macro3,.....,macrox] -foreground] [-notify] | [-h] | [-H] | [-help] ]"
echo "usage: aws_build_dcp_from_cl.sh [ [-script <vivado_script>] | [-strategy BASIC | DEFAULT | EXPLORE | TIMING | NORETIMING | CONGESTION] [-clock_recipe_a A0 | A1 | A2] [-clock_recipe_b B0 | B1 | B2 | B3 | B4 | B5] [-clock_recipe_c C0 | C1 | C2 | C3] [-uram_option 2 | 3 | 4] [-vdefine macro1,macro2,macro3,.....,macrox] -foreground] [-notify] | [-h] | [-H] | [-help] ]"
echo " "
echo "By default the build is run in the background using nohup so that the"
echo "process will not be terminated if the terminal window is closed."
Expand Down Expand Up @@ -117,7 +117,7 @@ fi

# Check that strategy is valid
shopt -s extglob
if [[ $strategy != @(BASIC|DEFAULT|EXPLORE|TIMING|CONGESTION) ]]; then
if [[ $strategy != @(BASIC|DEFAULT|EXPLORE|TIMING|CONGESTION|NORETIMING) ]]; then
err_msg "$strategy isn't a valid strategy. Valid strategies are BASIC, DEFAULT, EXPLORE, TIMING and CONGESTION."
exit 1
fi
Expand Down

0 comments on commit 008f0bf

Please sign in to comment.