From 85332594fc397eaea7f40644e69025aeb4f72215 Mon Sep 17 00:00:00 2001 From: vladmandic Date: Sat, 10 Jan 2026 10:32:13 +0100 Subject: [PATCH] triton test reduce verbosity Signed-off-by: vladmandic --- CHANGELOG.md | 1 + modules/devices.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 296556a10..24d45cab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ - kandinsky-5 image and video on non-cuda platforms - lora loading when using torch without distributed support - google-genai auth, thanks @CalamitousFelicitousness + - reduce triton test verbosity ## Update for 2025-12-26 diff --git a/modules/devices.py b/modules/devices.py index 0020d07d9..dc0f0746b 100644 --- a/modules/devices.py +++ b/modules/devices.py @@ -400,7 +400,8 @@ def test_triton(early: bool = False): triton_ok = False except Exception as e: triton_ok = False - log.warning(f"Triton test fail: {e}") + line = str(e).splitlines()[0] + log.warning(f"Triton test fail: {line}") if debug: from modules import errors errors.display(e, 'Triton')