| 2883 | |
| 2884 | |
| 2885 | class DPMSolverMultistepScheduler(metaclass=DummyObject): |
| 2886 | _backends = ["torch"] |
| 2887 | |
| 2888 | def __init__(self, *args, **kwargs): |
| 2889 | requires_backends(self, ["torch"]) |
| 2890 | |
| 2891 | @classmethod |
| 2892 | def from_config(cls, *args, **kwargs): |
| 2893 | requires_backends(cls, ["torch"]) |
| 2894 | |
| 2895 | @classmethod |
| 2896 | def from_pretrained(cls, *args, **kwargs): |
| 2897 | requires_backends(cls, ["torch"]) |
| 2898 | |
| 2899 | |
| 2900 | class DPMSolverSinglestepScheduler(metaclass=DummyObject): |
no outgoing calls
searching dependent graphs…