(self, x, return_dict=True)
| 75 | return self.static_encoder_output |
| 76 | |
| 77 | def _encode(self, x, return_dict=True): |
| 78 | return self.vae.encode(x, return_dict=return_dict) |
| 79 | |
| 80 | def _create_cuda_graph_encoder(self, *inputs, **kwargs): |
| 81 | # warmup to create the workspace and cublas handle |
no test coverage detected