fix networks display

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-05-12 19:17:39 -04:00
parent f4e3a81a84
commit 01a038746d
3 changed files with 18 additions and 6 deletions
+12
View File
@@ -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
+5 -5
View File
@@ -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';
+1 -1
Submodule wiki updated: ea9934665b...12dbff5ca4