We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dda7a1f commit bc457e1Copy full SHA for bc457e1
vllm/attention/ops/triton_decode_attention.py
@@ -39,11 +39,12 @@
39
40
logger = logging.getLogger(__name__)
41
42
-# TODO: Remove this when triton>=3.2.0. This issue will not affect performance
43
-# and accuracy.
44
-logger.warning(
45
- "The following error message 'operation scheduled before its operands' "
46
- "can be ignored.")
+# Only print the following warnings when triton version < 3.2.0.
+# The issue won't affect performance or accuracy.
+if triton.__version__ < '3.2.0':
+ logger.warning(
+ "The following error message 'operation scheduled before its operands' "
47
+ "can be ignored.")
48
49
50
@triton.jit
0 commit comments