|
1 | 1 | # Xilinx Runtime (XRT) and Vitis Tool versions
|
2 | 2 |
|
3 | 3 | * Xilinx Runtime versions match with the tool that you created your Vitis AFI with.
|
4 |
| -* We provide pre-built RPM's for Centos/RHEL and instructions for building XRT |
| 4 | +* We provide pre-built RPM's for Centos/RHEL/AL2 and instructions for building XRT |
5 | 5 | * Use the below table as reference to install and use the correct XRT version for your applications.
|
6 | 6 |
|
7 |
| -| Xilinx Vitis Tool Version | XRT Release Tag | SHA | `xrt` and `xrt-aws` pre-built RPM's (Centos/RHEL) | |
| 7 | +| Xilinx Vitis Tool Version | XRT Release Tag | SHA | `xrt`|`xrt-aws` RPM's (Centos/RHEL) |`xrt`|`xrt-aws` RPM's (AL2) |
8 | 8 | |---|---|---|---|
|
9 |
| -|2020.1| [202010.2.6.AWS](https://github.com/Xilinx/XRT/releases/tag/202010.2.6.AWS) | d09c4a458c16e8d843b3165dcf929c38f7a32b6f | [xrt_202010.2.6.0_7.7.1908-x86_64-xrt.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.9.0/Patches/XRT_2020_1/xrt_202010.2.6.0_7.7.1908-x86_64-xrt.rpm) [xrt_202010.2.6.0_7.7.1908-x86_64-aws.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.9.0/Patches/XRT_2020_1/xrt_202010.2.6.0_7.7.1908-x86_64-aws.rpm) | |
10 |
| -|2019.2| [2019.2.0.3](https://github.com/Xilinx/XRT/releases/tag/2019.2.0.3) | 9e13d57c4563e2c19bf5f518993f6e5a8dadc18a | [xrt_201920.2.3.0_7.7.1908-xrt.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.8.0/Patches/XRT_2019_2/xrt_201920.2.3.0_7.7.1908-xrt.rpm) [xrt_201920.2.3.0_7.7.1908-aws.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.8.0/Patches/XRT_2019_2/xrt_201920.2.3.0_7.7.1908-aws.rpm) | |
| 9 | +|2020.1| [202010.2.6.AWS](https://github.com/Xilinx/XRT/releases/tag/202010.2.6.AWS) | d09c4a458c16e8d843b3165dcf929c38f7a32b6f | [xrt_202010.2.6.0_7.7.1908-x86_64-xrt.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.9.0/Patches/XRT_2020_1/xrt_202010.2.6.0_7.7.1908-x86_64-xrt.rpm) [xrt_202010.2.6.0_7.7.1908-x86_64-aws.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.9.0/Patches/XRT_2020_1/xrt_202010.2.6.0_7.7.1908-x86_64-aws.rpm) | [xrt_202010.2.6.0_2-x86_64-xrt.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.9.0/Patches/XRT_2020_1/xrt_202010.2.6.0_2-x86_64-xrt.rpm) [xrt_202010.2.6.0_2-x86_64-aws.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.9.0/Patches/XRT_2020_1/xrt_202010.2.6.0_2-x86_64-aws.rpm)| |
| 10 | +|2019.2| [2019.2.0.3](https://github.com/Xilinx/XRT/releases/tag/2019.2.0.3) | 9e13d57c4563e2c19bf5f518993f6e5a8dadc18a | [xrt_201920.2.3.0_7.7.1908-xrt.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.8.0/Patches/XRT_2019_2/xrt_201920.2.3.0_7.7.1908-xrt.rpm) [xrt_201920.2.3.0_7.7.1908-aws.rpm](https://aws-fpga-developer-ami.s3.amazonaws.com/1.8.0/Patches/XRT_2019_2/xrt_201920.2.3.0_7.7.1908-aws.rpm) | N/A | |
11 | 11 |
|
12 | 12 | <a name="mpd"></a>
|
13 | 13 | # MPD
|
@@ -62,13 +62,35 @@ cd Release
|
62 | 62 | sudo yum reinstall xrt_*.rpm -y
|
63 | 63 | ```
|
64 | 64 |
|
65 |
| -# Centos/RHEL pre-built RPM install steps |
| 65 | +# AL2 build and install steps |
| 66 | + |
| 67 | +```bash |
| 68 | +XRT_RELEASE_TAG=202010.2.6.AWS # Substitute XRT_RELEASE_TAG=<TAG from above table> |
| 69 | + |
| 70 | +git clone https://github.com/aws/aws-fpga.git |
| 71 | + |
| 72 | +cd aws-fpga |
| 73 | +source vitis_setup.sh |
| 74 | +cd $VITIS_DIR/Runtime |
| 75 | +export XRT_PATH="${VITIS_DIR}/Runtime/${XRT_RELEASE_TAG}" |
| 76 | +git clone http://www.github.com/Xilinx/XRT.git -b ${XRT_RELEASE_TAG} ${XRT_PATH} |
| 77 | + |
| 78 | +cd ${XRT_PATH} |
| 79 | +sudo ./src/runtime_src/tools/scripts/xrtdeps.sh |
| 80 | + |
| 81 | +cd build |
| 82 | +./build.sh |
| 83 | + |
| 84 | +cd Release |
| 85 | +sudo yum reinstall xrt_*.rpm -y |
| 86 | +``` |
| 87 | + |
| 88 | +# Centos/RHEL/AL2 pre-built RPM install steps |
66 | 89 |
|
67 |
| -### 2019.2 |
68 | 90 |
|
69 | 91 | ```bash
|
70 |
| -curl -s https://aws-fpga-developer-ami.s3.amazonaws.com/1.8.0/Patches/XRT_2019_2/xrt_201920.2.3.0_7.7.1908-xrt.rpm -o xrt.rpm |
71 |
| -curl -s https://aws-fpga-developer-ami.s3.amazonaws.com/1.8.0/Patches/XRT_2019_2/xrt_201920.2.3.0_7.7.1908-aws.rpm -o xrt-aws.rpm |
| 92 | +curl -s <xrt rpm link from above table> -o xrt.rpm |
| 93 | +curl -s <xrt-aws rpm link from above table> -o xrt-aws.rpm |
72 | 94 | sudo yum reinstall xrt*.rpm -y
|
73 | 95 | ```
|
74 | 96 |
|
|
0 commit comments