forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support 'BaseOutput' and subclasses from 'diffusers' in dynamo (pytor…
…ch#111978) Extending the workarounds for `transformers` `ModelOutput` to cover `diffusers` `BaseOutput`. Together with huggingface/diffusers#5459 it should unblock export for `diffusers` models. Pull Request resolved: pytorch#111978 Approved by: https://github.com/jansel
- Loading branch information
1 parent
7152a73
commit 39fae7b
Showing
3 changed files
with
155 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# Owner(s): ["module: dynamo"] | ||
import unittest.mock | ||
|
||
import torch | ||
|
||
import torch._dynamo.test_case | ||
import torch._dynamo.testing | ||
from torch._dynamo.testing import same | ||
|
||
try: | ||
from diffusers.models import unet_2d | ||
except ImportError: | ||
unet_2d = None | ||
|
||
|
||
def maybe_skip(fn): | ||
if unet_2d is None: | ||
return unittest.skip("requires diffusers")(fn) | ||
return fn | ||
|
||
|
||
class TestBaseOutput(torch._dynamo.test_case.TestCase): | ||
@maybe_skip | ||
def test_create(self): | ||
def fn(a): | ||
tmp = unet_2d.UNet2DOutput(a + 1) | ||
return tmp | ||
|
||
torch._dynamo.testing.standard_test(self, fn=fn, nargs=1, expected_ops=1) | ||
|
||
@maybe_skip | ||
def test_assign(self): | ||
def fn(a): | ||
tmp = unet_2d.UNet2DOutput(a + 1) | ||
tmp.sample = a + 2 | ||
return tmp | ||
|
||
args = [torch.randn(10)] | ||
obj1 = fn(*args) | ||
|
||
cnts = torch._dynamo.testing.CompileCounter() | ||
opt_fn = torch._dynamo.optimize_assert(cnts)(fn) | ||
obj2 = opt_fn(*args) | ||
self.assertTrue(same(obj1.sample, obj2.sample)) | ||
self.assertEqual(cnts.frame_count, 1) | ||
self.assertEqual(cnts.op_count, 2) | ||
|
||
def _common(self, fn, op_count): | ||
args = [ | ||
unet_2d.UNet2DOutput( | ||
sample=torch.randn(10), | ||
) | ||
] | ||
obj1 = fn(*args) | ||
cnts = torch._dynamo.testing.CompileCounter() | ||
opt_fn = torch._dynamo.optimize_assert(cnts)(fn) | ||
obj2 = opt_fn(*args) | ||
self.assertTrue(same(obj1, obj2)) | ||
self.assertEqual(cnts.frame_count, 1) | ||
self.assertEqual(cnts.op_count, op_count) | ||
|
||
@maybe_skip | ||
def test_getattr(self): | ||
def fn(obj: unet_2d.UNet2DOutput): | ||
x = obj.sample * 10 | ||
return x | ||
|
||
self._common(fn, 1) | ||
|
||
@maybe_skip | ||
def test_getitem(self): | ||
def fn(obj: unet_2d.UNet2DOutput): | ||
x = obj["sample"] * 10 | ||
return x | ||
|
||
self._common(fn, 1) | ||
|
||
@maybe_skip | ||
def test_tuple(self): | ||
def fn(obj: unet_2d.UNet2DOutput): | ||
a = obj.to_tuple() | ||
return a[0] * 10 | ||
|
||
self._common(fn, 1) | ||
|
||
@maybe_skip | ||
def test_index(self): | ||
def fn(obj: unet_2d.UNet2DOutput): | ||
return obj[0] * 10 | ||
|
||
self._common(fn, 1) | ||
|
||
|
||
if __name__ == "__main__": | ||
from torch._dynamo.test_case import run_tests | ||
|
||
run_tests() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters