We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd90a74 commit 5c5b1a4Copy full SHA for 5c5b1a4
src/diffusers/pipelines/pipeline_utils.py
@@ -102,16 +102,6 @@
102
103
logger = logging.get_logger(__name__)
104
105
-class NotTQDMNoOp:
106
- def __init__(*args, **kwargs):
107
- return
108
- def __enter__(self, *args, **kwargs):
109
- return self
110
- def __exit__(*args, **kwargs):
111
112
- def update(*args, **kwargs):
113
114
-
115
116
@dataclass
117
class ImagePipelineOutput(BaseOutput):
@@ -1562,6 +1552,7 @@ def numpy_to_pil(images):
1562
1552
"""
1563
1553
return numpy_to_pil(images)
1564
1554
1555
+ @torch.compiler.disable
1565
1556
def progress_bar(self, iterable=None, total=None):
1566
1557
if not hasattr(self, "_progress_bar_config"):
1567
1558
self._progress_bar_config = {}
0 commit comments