-
Hi, I'd like to use group offloading on the new Omnigen 2 model, but it appears that applying it drastically changes the output, regardless of whether |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
When you use group offloading, have you compared the results with Since you are able to run group offloading, it is unrelated to the other cases you linked to. Those models are skipped because of a call to What might be happening in the case of OmniGen 2 is some kind of race condition or improper synchronization, but I don't know where to start with debugging this issue at the moment. Will first try to add native support for Omnigen 2 so that it's easier to get started for us. |
Beta Was this translation helpful? Give feedback.
Thanks to your comment regarding the forward pass of the skipped models, I took a closer look at the
forward
method of theOmniGen2Transformer2DModel
and discovered that a kwarg was used, which was not being included when group offloading was applied. By simply converting it to a regular argument, I was able to get it working!Sorry for the comment spam and thanks again for your time.