chore(hpu): enable hpu hlapi workflow and throughput bench in integer workflow

This commit is contained in:
pgardratzama
2025-09-02 19:44:21 +02:00
committed by Pierre Gardrat
parent 2279d0deb8
commit bd7df4a03b
5 changed files with 79 additions and 28 deletions

View File

@@ -23,7 +23,7 @@ V80_PCIE_DEV="unselected"
XILINX_VIVADO=${XILINX_VIVADO:-"/opt/amd/Vivado/2024.2"}
# V80 bitstream refresh require insmod of ami.ko module
AMI_PATH=${AMI_PATH:-"/opt/v80/ami/1e6a8da"}
AMI_PATH=${AMI_PATH:-"/opt/v80/ami/ef9249f"}
# Parse user CLI ##############################################################
opt_short="hc:l:p:"
@@ -63,6 +63,9 @@ do
if [ -n "${2}" ] && [[ ! ${2} =~ ^- ]]; then
V80_PCIE_DEV="${2}"
((i++))
shift 1
elif [[ ${#DEVICE[@]} -eq 1 ]]; then
V80_PCIE_DEV=${DEVICE[0]%%:*}
else
echo "Please select a device in following list (1st two digits):"
for item in "${DEVICE[@]}"; do
@@ -70,7 +73,7 @@ do
done
return 1
fi
shift 2
shift 1
;;
"") # End of input reading
break ;;