Skip to content

Commit

Permalink
Update run_matmul_test.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental authored Aug 23, 2024
1 parent 26dee90 commit 9f2e389
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions build_tools/ci/run_matmul_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,7 @@ fi
if [ -z "${3-}" ]; then
PEANO=/opt/llvm-aie
else
if [ -d "$PEANO" ]; then
PEANO=`realpath "$3"`
fi
PEANO=`realpath "$3"`
fi
if [ ! -d "${PEANO}" ]; then
echo "No directory '${PEANO}' (argument 3) found."
Expand All @@ -108,9 +106,7 @@ fi
if [ -z "${4-}" ]; then
XRT_DIR=/opt/xilinx/xrt
else
if [ -d "$XRT_DIR" ]; then
XRT_DIR=`realpath "$4"`
fi
XRT_DIR=`realpath "$4"`
fi
if [ -d "$XRT_DIR" ]; then
source $XRT_DIR/setup.sh
Expand All @@ -120,9 +116,7 @@ fi
if [ -z "${5-}" ]; then
VITIS=/opt/Xilinx/Vitis/2024.2
else
if [ -d "$VITIS" ]; then
VITIS=`realpath "$5"`
fi
VITIS=`realpath "$5"`
fi

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

0 comments on commit 9f2e389

Please sign in to comment.