mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
[CKTILE] Layout Support for CK Tile engine (#2482)
* Updating runtime log message for CK TILE ENGINE * CKTile layout from config * CKTile custom config for CI * Documentation for Layout Changes * CKTile Layout changes to Jenkins * Fixing Clang Format * Changes to Jenkins file to fix error * fix(cmake-ck-dev): no longer sets invalid values as gpu arch * style(py files): ruff formatting * fix(cmake-ck-release): no longer sets invalid values as gpu arch * chore(cmake-tile_engine): add reminder to uncomment user config json * Changes to jenkin file to address more cases * Changes to Jenkins to fix Error * Changes to Jenkins file for fixing an error * Update Jenkinsfile (#2517) * Update Jenkinsfile --------- Co-authored-by: ThruptiRajLakshmanaGowda <tlakshma@amd.com> Co-authored-by: AviralGoelAMD <aviral.goel@amd.com> Co-authored-by: Thomas Ning <Thomas.Ning@amd.com>
This commit is contained in:
committed by
GitHub
parent
c08986b026
commit
0f3083ab5c
@@ -5,13 +5,16 @@ rm -rf CMakeFiles
|
||||
|
||||
MY_PROJECT_SOURCE=$1
|
||||
|
||||
if [ $# -ge 2 ] ; then
|
||||
if [ $# -ge 2 ] && [[ "$2" =~ ^gfx ]]; then
|
||||
GPU_TARGETS=$2
|
||||
shift 2
|
||||
echo "GPU targets provided: $GPU_TARGETS"
|
||||
REST_ARGS=$@
|
||||
else
|
||||
echo "No GPU targets provided, using default targets: gfx908;gfx90a;gfx942"
|
||||
GPU_TARGETS="gfx908;gfx90a;gfx942"
|
||||
REST_ARGS=
|
||||
shift 1
|
||||
REST_ARGS=$@
|
||||
fi
|
||||
|
||||
cmake \
|
||||
|
||||
@@ -5,13 +5,16 @@ rm -rf CMakeFiles
|
||||
|
||||
MY_PROJECT_SOURCE=$1
|
||||
|
||||
if [ $# -ge 2 ] ; then
|
||||
if [ $# -ge 2 ] && [[ "$2" =~ ^gfx ]]; then
|
||||
GPU_TARGETS=$2
|
||||
shift 2
|
||||
echo "GPU targets provided: $GPU_TARGETS"
|
||||
REST_ARGS=$@
|
||||
else
|
||||
echo "No GPU targets provided, using default targets: gfx908;gfx90a;gfx942"
|
||||
GPU_TARGETS="gfx908;gfx90a;gfx942"
|
||||
REST_ARGS=
|
||||
shift 1
|
||||
REST_ARGS=$@
|
||||
fi
|
||||
|
||||
cmake \
|
||||
|
||||
Reference in New Issue
Block a user