Skip to content

Commit 10f1708

Browse files
committed
Finish adding support for NORETIMING strategy
1 parent e9945da commit 10f1708

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

hdk/cl/developer_designs/cl_firesim/build/scripts/create_dcp_from_cl.tcl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,10 @@ switch $strategy {
175175
puts "EXPLORE strategy."
176176
source $HDK_SHELL_DIR/build/scripts/strategy_EXPLORE.tcl
177177
}
178+
"NORETIMING" {
179+
puts "NORETIMING strategy."
180+
source $HDK_SHELL_DIR/build/scripts/strategy_NORETIMING.tcl
181+
}
178182
"TIMING" {
179183
puts "TIMING strategy."
180184
source $HDK_SHELL_DIR/build/scripts/strategy_TIMING.tcl

hdk/common/shell_v04261818/build/scripts/aws_build_dcp_from_cl.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Usage help
1919
function usage
2020
{
21-
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] ]"
21+
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] ]"
2222
echo " "
2323
echo "By default the build is run in the background using nohup so that the"
2424
echo "process will not be terminated if the terminal window is closed."
@@ -117,7 +117,7 @@ fi
117117

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

0 commit comments

Comments
 (0)