You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hdk/cl/examples/README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,11 +46,18 @@ If you like to start your own CL, check out the [How to create your own CL](../d
46
46
47
47
Executing the `aws_build_dcp_from_cl.sh` script will perform the entire implementation process converting the CL design into a completed Design Checkpoint that meets timing and placement constrains of the target FPGA.
48
48
The output is a tarball file comprising the DCP file, and other log/manifest files, formatted as `YY_MM_DD-hhmm.Developer_CL.tar`.
49
-
This file would be submitted to AWS to create an AFI.
49
+
This file would be submitted to AWS to create an AFI. By default the build script will use Clock Group A Recipe A0 wich uses a main clock of 125 MHz.
50
50
51
51
$ cd $CL_DIR/build/scripts
52
52
$ ./aws_build_dcp_from_cl.sh
53
53
54
+
In order to use a 250 MHz main clock the developer can specify the A1 Clock Group A Recipe as in the following example:
55
+
56
+
$ cd $CL_DIR/build/scripts
57
+
$ ./aws_build_dcp_from_cl.sh -clock_recipe_a A1
58
+
59
+
Other clock recipes can be specified as well. More details on the [Clock Group Recipes Table](../../docs/clock_recipes.csv) and how to specify different recipes can be found in the following [README](../../common/shell_v04151701/new_cl_template/build/README.md).
60
+
54
61
**NOTE**: *The DCP generation can take up to several hours to complete, hence the `aws_build_dcp_from_cl.sh` will run the main build process (`vivado`) in within a `nohup` context: This will allow the build to continue running even if the SSH session is terminated half way through the run*
55
62
56
63
To be notified via e-mail when the build completes:
0 commit comments