Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
b39a5026
Unverified
Commit
b39a5026
authored
Nov 13, 2025
by
Bradley D
Committed by
GitHub
Nov 14, 2025
Browse files
[ci][amd] fix basic models extra init test (#28676)
Signed-off-by:
Bradley Davis
<
bradleyhd@meta.com
>
parent
622e6106
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
.buildkite/scripts/hardware_ci/run-amd-test.sh
.buildkite/scripts/hardware_ci/run-amd-test.sh
+5
-5
No files found.
.buildkite/scripts/hardware_ci/run-amd-test.sh
View file @
b39a5026
...
...
@@ -180,10 +180,10 @@ fi
# check if the command contains shard flag, we will run all shards in parallel because the host have 8 GPUs.
if
[[
$commands
==
*
"--shard-id="
*
]]
;
then
# assign job count as the number of shards used
commands
=
$
{
commands
//
"--num-shards= "
/
"
--num-shards=
${
PARALLEL_JOB_COUNT
}
"
}
commands
=
$
(
echo
"
$commands
"
|
sed
-E
"s/--num-shards[[:blank:]]*=[[:blank:]]*[0-9]*/
--num-shards=
${
PARALLEL_JOB_COUNT
}
/g"
|
sed
's/ \\ / /g'
)
for
GPU
in
$(
seq
0
$((
$PARALLEL_JOB_COUNT
-
1
))
)
;
do
# assign shard-id for each shard
commands_gpu
=
$
{
commands
//
"--shard-id= "
/
"--shard-id=
${
GPU
}
"
}
commands_gpu
=
$
(
echo
"
$commands
"
|
sed
-E
"s/--shard-id[[:blank:]]*=[[:blank:]]*[0-9]*/--shard-id=
${
GPU
}
/g"
|
sed
's/ \\ / /g'
)
echo
"Shard
${
GPU
}
commands:
$commands_gpu
"
echo
"Render devices:
$BUILDKITE_AGENT_META_DATA_RENDER_DEVICES
"
docker run
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment