mirror of
https://github.com/vladmandic/automatic
synced 2026-09-20 01:31:13 +02:00
fix networks display
Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
Reference in New Issue
Block a user