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
1b3540e6
Unverified
Commit
1b3540e6
authored
Feb 10, 2026
by
Hashem Hashemi
Committed by
GitHub
Feb 11, 2026
Browse files
Threshold fix wvSplitk for occasional CI fails (#34013)
Signed-off-by:
Hashem Hashemi
<
hashem.hashemi@amd.com
>
parent
7a048ee6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
tests/kernels/quantization/test_rocm_skinny_gemms.py
tests/kernels/quantization/test_rocm_skinny_gemms.py
+5
-2
No files found.
tests/kernels/quantization/test_rocm_skinny_gemms.py
View file @
1b3540e6
...
...
@@ -270,6 +270,9 @@ def test_rocm_wvsplitk_fp8_kernel(
out
=
ops
.
wvSplitKQ
(
B
,
A
,
dtype
,
scale_a
,
scale_b
,
get_cu_count
(),
BIAS
)
if
xnorm
:
assert
torch
.
allclose
(
out
,
ref_out
,
atol
=
1e-3
,
rtol
=
1e-8
)
torch
.
testing
.
assert_close
(
out
,
ref_out
,
atol
=
1e-3
,
rtol
=
1e-8
)
elif
k
>=
32
*
1024
:
# wider pytrch thresh for large-K & no xnorm
torch
.
testing
.
assert_close
(
out
,
ref_out
,
atol
=
0.07
,
rtol
=
5e-2
)
else
:
assert
torch
.
all
close
(
out
,
ref_out
,
0.01
)
torch
.
testing
.
assert_
close
(
out
,
ref_out
,
atol
=
0.01
,
rtol
=
0.01
)
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