Merge commit '705804d9bf87e1e2fca23c0af231efcdebf76efb' into develop

This commit is contained in:
assistant-librarian[bot]
2025-08-30 14:10:43 +00:00
parent dd174fb5c5
commit 9428a85224
17 changed files with 3361 additions and 1409 deletions

View File

@@ -25,13 +25,20 @@ if [ $# -ge 1 ]; then
GPU_TARGETS=$1
shift 1
echo "GPU targets provided: $GPU_TARGETS"
REST_ARGS=("$@")
;;
*)
echo "No GPU targets provided, using default targets: $GPU_TARGETS"
echo "No GPU targets provided, using default targets: gfx908;gfx90a;gfx942"
GPU_TARGETS="gfx908;gfx90a;gfx942"
shift 1
REST_ARGS=("$@")
;;
esac
else
echo "No GPU targets provided, using default targets: $GPU_TARGETS"
echo "No GPU targets provided, using default targets: gfx908;gfx90a;gfx942"
GPU_TARGETS="gfx908;gfx90a;gfx942"
shift 1
REST_ARGS=("$@")
fi
cmake \
@@ -43,5 +50,5 @@ cmake
-D GPU_TARGETS=$GPU_TARGETS \
-D CMAKE_VERBOSE_MAKEFILE:BOOL=ON \
-D USE_BITINT_EXTENSION_INT4=OFF \
$@ \
"${REST_ARGS[@]}" \ \
${MY_PROJECT_SOURCE}