From 01a038746d1e5ac25958aa627375b7c3c7b3bc9d Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Mon, 12 May 2025 19:17:39 -0400 Subject: [PATCH] fix networks display Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 12 ++++++++++++ javascript/extraNetworks.js | 10 +++++----- wiki | 2 +- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 629b7fdee..1cca4e8b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log for SD.Next +## Update for 2025-05-12 + +Curious how your system is performing? +Run a built-in benchmark and compare to over 15k unique results world-wide: (Benchmark data)[https://vladmandic.github.io/sd-extension-system-info/pages/benchmark.html]! +From slowest 0.02 it/s running on 6th gen CPU without acceleration up to 275 it/s running on tuned GH100 system! + +- **Wiki** + - Updates for: *WSL, ZLUDA, ROCm* +- **Compute** + - NNCF: added experimental support for direct INT8 MatMul + + ## Update for 2025-05-12 ### Highlights for 2025-05-12 diff --git a/javascript/extraNetworks.js b/javascript/extraNetworks.js index 3e0838683..83f97ba57 100644 --- a/javascript/extraNetworks.js +++ b/javascript/extraNetworks.js @@ -6,11 +6,11 @@ let totalCards = -1; const getENActiveTab = () => { let tabName = ''; - if (gradioApp().getElementById('txt2img_prompt').checkVisibility()) return 'txt2img'; - if (gradioApp().getElementById('img2img_prompt').checkVisibility()) return 'img2img'; - if (gradioApp().getElementById('control_prompt').checkVisibility()) return 'control'; - if (gradioApp().getElementById('video_prompt').checkVisibility()) return 'video'; - if (gradioApp().getElementById('framepack_prompt_row').checkVisibility()) return 'framepack'; + if (gradioApp().getElementById('txt2img_prompt')?.checkVisibility()) return 'txt2img'; + if (gradioApp().getElementById('img2img_prompt')?.checkVisibility()) return 'img2img'; + if (gradioApp().getElementById('control_prompt')?.checkVisibility()) return 'control'; + if (gradioApp().getElementById('video_prompt')?.checkVisibility()) return 'video'; + if (gradioApp().getElementById('framepack_prompt_row')?.checkVisibility()) return 'framepack'; // legacy method if (gradioApp().getElementById('tab_txt2img').style.display === 'block') tabName = 'txt2img'; else if (gradioApp().getElementById('tab_img2img').style.display === 'block') tabName = 'img2img'; diff --git a/wiki b/wiki index ea9934665..12dbff5ca 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit ea9934665ba72ce46685a0b1e0393f174749dca4 +Subproject commit 12dbff5ca440c62027a4a12685d5f4b73ea6532c