Replies: 2 comments 2 replies
-
I managed to repro this on a Laptop with a 3070 GPU that was generating images earlier. I had updated it with Windows update and it started generating brown images like the one above. It turned out that the Windows update made Intel UHD graphics the default GPU, so when Onnx Stable Diffusion API was called with DeviceIDd=0 , it was trying to use the UHD graphics with does not support DirectML optimized models. When I set the DeviceID=1, it worked! One way would be to search for discreet GPU and set the correct Device Id at the app layer, the other would be to set DeviceId to -1 to find and use the discreet GPU inside OnnxStack. Thoughts @saddam213 and others? Thanks, |
Beta Was this translation helpful? Give feedback.
-
That makes sense. The Intel on chip GPU probably does not have much VRAM.
…On Thu, Dec 28, 2023 at 12:10 PM Adam Clark ***@***.***> wrote:
Managed to replicate this, its not that the device does not support
DirectML its the lack of VRAM, if I fill my VRAM and overflow into shared
VRAM all images come out like this, brown or grey
Since you can assign individual model files to a device you could take
advantage of that device, assign the text models to that device in
advanced, TASED might even squeeze on there :p
—
Reply to this email directly, view it on GitHub
<#54 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABY4OBD2MJN4IZ653GPUBLYLXG43AVCNFSM6AAAAABAC7UOPSVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TSNRXHAZDG>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
One of my users who does not have a discreet GPU is only seeing a brown image. No errors.
See attached.
Their PC Configuration:
CPU: 11th Gen Intel(R) Core(TM) i5-11400 @ 2.60GHz, Speed: 2592MHz, Cores: 6
GPU: Intel(R) UHD Graphics 730, Memory: 1024 MB
Memory: Total: 32 GB, Free: 25 MB
OS: Microsoft Windows 11 Home, Version: 10.0.22621
Model used: softwareweaver/photon
Prompt: Cat
I can't repro this and was wondering if anyone else saw something similar Or have any tips to help resolve this issue.
Thanks,
Ash
Beta Was this translation helpful? Give feedback.
All reactions