Skip to content

Commit

Permalink
use latest driver
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental committed Aug 22, 2024
1 parent e73a055 commit 26dee90
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:

test_linux:
name: E2E Test linux
runs-on: amd7940hs
runs-on: nod-nuc-linux-2
needs: build_and_ctest
strategy:
fail-fast: true
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
# sudo visudo -f /etc/sudoers.d/github
# ```
# on the guthub CI machine.
sudo prlimit -lunlimited --pid $$
# sudo prlimit -lunlimited --pid $$
source /opt/xilinx/xrt/setup.sh
bash build_tools/ci/run_matmul_test.sh \
Expand Down
12 changes: 9 additions & 3 deletions build_tools/ci/run_matmul_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ fi
if [ -z "${3-}" ]; then
PEANO=/opt/llvm-aie
else
PEANO=`realpath "$3"`
if [ -d "$PEANO" ]; then
PEANO=`realpath "$3"`
fi
fi
if [ ! -d "${PEANO}" ]; then
echo "No directory '${PEANO}' (argument 3) found."
Expand All @@ -106,7 +108,9 @@ fi
if [ -z "${4-}" ]; then
XRT_DIR=/opt/xilinx/xrt
else
XRT_DIR=`realpath "$4"`
if [ -d "$XRT_DIR" ]; then
XRT_DIR=`realpath "$4"`
fi
fi
if [ -d "$XRT_DIR" ]; then
source $XRT_DIR/setup.sh
Expand All @@ -116,7 +120,9 @@ fi
if [ -z "${5-}" ]; then
VITIS=/opt/Xilinx/Vitis/2024.2
else
VITIS=`realpath "$5"`
if [ -d "$VITIS" ]; then
VITIS=`realpath "$5"`
fi
fi

THIS_DIR="$(cd $(dirname $0) && pwd)"
Expand Down

0 comments on commit 26dee90

Please sign in to comment.