Unverified Commit ce4ddd2d authored by DefTruth's avatar DefTruth Committed by GitHub
Browse files

[Misc] remove warning if triton>=3.2.0 (#16553)


Signed-off-by: default avatarDefTruth <qiustudent_r@163.com>
parent e51929eb
......@@ -39,9 +39,10 @@ is_hip_ = current_platform.is_rocm()
logger = logging.getLogger(__name__)
# TODO: Remove this when triton>=3.2.0. This issue will not affect performance
# and accuracy.
logger.warning(
# 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' "
"can be ignored.")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment