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
ce4ddd2d
Unverified
Commit
ce4ddd2d
authored
Apr 14, 2025
by
DefTruth
Committed by
GitHub
Apr 14, 2025
Browse files
[Misc] remove warning if triton>=3.2.0 (#16553)
Signed-off-by:
DefTruth
<
qiustudent_r@163.com
>
parent
e51929eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
vllm/attention/ops/triton_decode_attention.py
vllm/attention/ops/triton_decode_attention.py
+6
-5
No files found.
vllm/attention/ops/triton_decode_attention.py
View file @
ce4ddd2d
...
@@ -39,11 +39,12 @@ is_hip_ = current_platform.is_rocm()
...
@@ -39,11 +39,12 @@ is_hip_ = current_platform.is_rocm()
logger
=
logging
.
getLogger
(
__name__
)
logger
=
logging
.
getLogger
(
__name__
)
# TODO: Remove this when triton>=3.2.0. This issue will not affect performance
# Only print the following warnings when triton version < 3.2.0.
# and accuracy.
# The issue won't affect performance or accuracy.
logger
.
warning
(
if
triton
.
__version__
<
'3.2.0'
:
"The following error message 'operation scheduled before its operands' "
logger
.
warning
(
"can be ignored."
)
"The following error message 'operation scheduled before its operands' "
"can be ignored."
)
@
triton
.
jit
@
triton
.
jit
...
...
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