Skip to content

Commit 1f67d8e

Browse files
authored
RC v1.4.12 (#474)
* Added supported versions for BJS AMI's (#589) * Added release notes * Added re:Invent 19 workshop link
1 parent c9dcecb commit 1f67d8e

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ Before you start your first AWS FPGA design, we recommend that you go through on
9898

9999
### In-depth training and resources
100100
Once you have completed your hello world examples, we recommend diving deeper into a training workshop or application notes
101+
* Software-defined [re:Invent 2019 Workshop](https://github.com/Xilinx/SDAccel-AWS-F1-Developer-Labs).
102+
* Lab modules will take you through accelerating compute intensive functions like Inverse Discrete Cosine Transform, Bloom Filter, 2D video convolution, etc.
103+
* You will learn how to identify functions to accelerate and use profiling on example applications use that information to optimize your data movement between the HOST and FPGA.
101104
* Software-defined [re:Invent 2018 Workshop](https://github.com/awslabs/aws-fpga-app-notes/blob/master/reInvent18_Developer_Workshop/README.md) demonstrates a 2D Filter acceleration and how to debug and optimize your accelerator.
102105
* Custom hardware developers need to learn about how the hardware accelerator interfaces to the F1 Shell
103106
* [Shell Interface](hdk/docs/AWS_Shell_Interface_Specification.md)
@@ -192,7 +195,3 @@ The documentation is located throughout this developer kit, therefore, to help d
192195
* [Searching code](https://help.github.com/articles/searching-code/) and [advanced search syntax](https://help.github.com/articles/understanding-the-search-syntax/)
193196
* [Finding files](https://help.github.com/articles/finding-files-on-github/)
194197
* Simply replace github.com with gitprint.com to generate a printable PDF
195-
196-
197-
198-

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
* 1 DDR controller implemented in the SH (always available)
2525
* 3 DDR controllers implemented in the CL (configurable number of implemented controllers allowed)
2626

27+
## Release 1.4.12 (See [ERRATA](./ERRATA.md) for unsupported features)
28+
* Added support for Xilinx tool versions released in the AWS China Marketplace.
29+
* Updated NICE DCV setup instructions.
30+
2731
## Release 1.4.11 (See [ERRATA](./ERRATA.md) for unsupported features)
2832
* FPGA developer kit now supports Xilinx SDx/Vivado 2019.1
2933
* We recommend developers upgrade to v1.4.11 to benefit from the new features, bug fixes, and optimizations.

developer_resources/DCV.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ If you experience issues please refer to the [Official DCV documentation](https:
5252
1. [Install NICE DCV pre-requisites](https://docs.aws.amazon.com/dcv/latest/adminguide/setting-up-installing-linux-prereq.html)
5353
5454
```
55+
sudo yum -y install kernel-devel
5556
sudo yum -y groupinstall "GNOME Desktop"
5657
sudo yum -y install glx-utils
5758
```
@@ -83,19 +84,21 @@ If you experience issues please refer to the [Official DCV documentation](https:
8384
* Disable firewalld to allow all connections
8485
```
8586
sudo systemctl stop firewalld
87+
sudo systemctl disable firewalld
8688
```
8789
8890
* Open up the firewall only for tcp port 8443
8991
9092
```
9193
sudo systemctl start firewalld
94+
sudo systemctl enable firewalld
9295
sudo firewall-cmd --zone=public --add-port=8443/tcp --permanent
9396
sudo firewall-cmd --reload
9497
```
9598
9699
1. Create a virtual session to connect to
97100
98-
**NOTE: that you will have to create a new session if you restart your instance.**
101+
**NOTE: You will have to create a new session if you restart your instance.**
99102
100103
```
101104
dcv create-session --type virtual --user centos centos

supported_vivado_versions.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ Vivado v2018.2.op (64-bit)
66
Vivado v2018.2 (64-bit)
77
Vivado v2018.3.op (64-bit)
88
Vivado v2018.3 (64-bit)
9+
Vivado v2018.3_AR72667 (64-bit)
910
Vivado v2019.1.op (64-bit)
1011
Vivado v2019.1 (64-bit)
12+
Vivado v2019.1_AR72668 (64-bit)

0 commit comments

Comments
 (0)