Skip to content

Tags: Xilinx/XRT

Tags

202610.2.23.0_Canonical

Toggle 202610.2.23.0_Canonical's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Additional gcc16 changes for Alveo compilation (#9738) (#9739)

(cherry picked from commit 59ec704)

Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>

2.21.75

Toggle 2.21.75's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
add Python binding for ELF-initialized hardware context (#9560) (#9580)

Co-authored-by: André Rösti <an.roesti@gmail.com>

2.21.70

Toggle 2.21.70's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Simplify detail::xilinx_xrt() to always return compiled prefix (#9511)

When XILINX_XRT is not set, use compile time constant
XRT_INSTALL_PREFIX.

There was a bug in the upstream binaries that used parent_path()*2
relative to sopath, but upstream lib path can contain any number of
components, e.g. lib/x86_64-linux-gnu/libfoo.so so hardwiring
parent_path() * n is not right.

Always used compile time CMAKE_INSTALL_PREFIX for
detail::xilinx_xrt(), for relocatable builds XILINX_XRT should be set,
e.g. do not ever rely on sopath.

Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>

2.21.68

Toggle 2.21.68's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add XRT_BUILD_NUMBER CMake variable for use by upstream builds (#9507)

Upstream projects cannot set XRT_VERSION_PATCH directory as it is
reset by project(xrt).  Instead upstream builds sets XRT_BUILD_NUMBER
which is then used here to explicitly set XRT_VERSION_PATCH.

Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>

202520.2.20.197

Toggle 202520.2.20.197's commit message
2025.2 Alveo Release Candidate

202520.2.20.0_Petalinux

Toggle 202520.2.20.0_Petalinux's commit message
2025.2 Embedded Release Candidate

202610.2.21.21

Toggle 202610.2.21.21's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Rename xilinx.icd to amdxrt.icd for XRT upstream builds (#9386)

Avoid package conflict when installing internal XRT packages
(/opt/xilinx) with upstream packages (/usr).

The OpenCL ICD loader `/etc/OpenCL/vendors/xilinx.icd` is installed by
internally built xrt-base package, which otherwise installs content
to `/opt/xilinx/xrt`.   For upstream packages, the ICD loader must
be named differently in order to co-exist with internal installs.

Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>

202610.2.21.17

Toggle 202610.2.21.17's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix for CR-1254182 destroying the aied threads before destroyin hwctx (

…#9372)

Signed-off-by: Bikash Singha <bisingha@xcobisingha40x.xlnx.xilinx.com>
Co-authored-by: Bikash Singha <bisingha@xcobisingha40x.xlnx.xilinx.com>

202520.2.20.172

Toggle 202520.2.20.172's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
CR-1248332: Display vss reset IP info under the --info option (#9298)

* display info about the kernels in ip_layout section but not in build_metadata section

Signed-off-by: xvijaysri <vijaysri@xilinx.com>

* added comments

Signed-off-by: xvijaysri <vijaysri@xilinx.com>

---------

Signed-off-by: xvijaysri <vijaysri@xilinx.com>

202520.2.20.151

Toggle 202520.2.20.151's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix XDP plugin release directory to specify RUNTIME for windows (#9244)

The CMake install command for XDP plugins must specify a LIBRARY
component for Linux *and* and RUNTIME component for Windows.  It
should look like this:

```
install (TARGETS ...plugin...
  RUNTIME DESTINATION ${XDP_PLUGIN_INSTALL_DIR} COMPONENT ${XRT_COMPONENT}
  LIBRARY DESTINATION ${XDP_PLUGIN_INSTALL_DIR} COMPONENT ${XRT_COMPONENT} ${XRT_NAMELINK_SKIP}
)
```

Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>