Skip to content

Commit 03079ed

Browse files
authored
Disable 1DDR SDAccel config (#387)
* Update sdaccel_setup.sh * Update ERRATA.md * Update README.md * Update ERRATA.md
1 parent fa4336c commit 03079ed

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

ERRATA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
* PCIM and DMA-PCIS AXI-4 interfaces do not support AxSIZE other than 3'b110 (64B)
2626

2727
## Known Bugs/Issues
28-
28+
* SDAccel 1DDR configuration has been disabled and will be fixed in the next release
2929

SDAccel/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ There are three simple steps for accelerating your application on an AWS F1 inst
77

88
This quick start guide will use a simple "Hello World" SDAccel example to get you started.
99

10+
It is highly recommended you read the documentation and utilize software and hardware emulation prior to running on F1. The F1 HW compile time is ~4hrs (4DDR), therefore, software and hardware emulation should be used during development.
11+
<!---
1012
It is highly recommended you read the documentation and utilize software and hardware emulation prior to running on F1. The F1 HW compile time is ~4hrs (4DDR) and ~1hr (1DDR), therefore, software and hardware emulation should be used during development.
11-
13+
-->
1214

1315
# Table of Content
1416

@@ -67,11 +69,13 @@ It is highly recommended you read the documentation and utilize software and har
6769
* Select a platform:
6870
* AWS_PLATFORM_4DDR - Default AWS F1 platform with 4 DDRs and profiling support. Optimized for multi DDR use cases. This platform should be used for all production applications which require more than 1 DDR bank.
6971
* AWS_PLATFORM_4DDR_DEBUG - This platform is a debug variant of the 4DDR platform and should be used for hardware debugging of kernels. This version consists of an additional debug feature which allows advanced users to insert ILA’s in the kernels for debugging purposes. All other features are identical to the AWS_PLATFORM_4DDR platform.
72+
<!---
7073
* AWS_PLATFORM_1DDR - This platform consist of 1 DDR that is located in the shell region. This allow maximum space for kernels. This also allows much faster compile times for all the use cases which require only 1 DDR bank. This platform does not support APM and hence no profiling data can be obtained.
7174
7275
```
7376
$ export AWS_PLATFORM=$AWS_PLATFORM_1DDR
7477
```
78+
-->
7579
<a name="createapp"></a>
7680
# 1. Build the host application, Xilinx FPGA binary and verify you are ready for FPGA acceleration
7781

sdaccel_setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ info_msg "AWS Platform: 4DDR is up-to-date"
245245
#TODO DSA Version: info_msg "Using HDK shell version $hdk_shell_version"
246246
#TODO DSA Version: debug_msg "Checking HDK shell's checkpoint version"
247247

248-
setup_dsa xilinx_aws-vu9p-f1_1ddr-xpr-2pr_4_0 dsa_v11517_shell_v071417d3 AWS_PLATFORM_1DDR
249-
info_msg "AWS Platform: 1DDR is up-to-date"
248+
#setup_dsa xilinx_aws-vu9p-f1_1ddr-xpr-2pr_4_0 dsa_v11517_shell_v071417d3 AWS_PLATFORM_1DDR
249+
#info_msg "AWS Platform: 1DDR is up-to-date"
250250
#-------------------1 DDR--------------------
251251

252252
#-------------------4 DDR RTL Kernel Debug--------------------
@@ -275,7 +275,7 @@ info_msg "SDAccel runtime installed"
275275
export AWS_PLATFORM=$AWS_PLATFORM_4DDR
276276

277277
info_msg "The default AWS Platform has been set to: \"AWS_PLATFORM=\$AWS_PLATFORM_4DDR\" "
278-
info_msg "To change the platform for 1DDR: \"export AWS_PLATFORM=\$AWS_PLATFORM_1DDR\" "
278+
#info_msg "To change the platform for 1DDR: \"export AWS_PLATFORM=\$AWS_PLATFORM_1DDR\" "
279279
info_msg "To change the platform for 4DDR Debug: \"export AWS_PLATFORM=\$AWS_PLATFORM_4DDR_DEBUG\" "
280280

281281
# Install patches as required.

0 commit comments

Comments
 (0)