(self, x, ts, **kwargs)
| 1288 | self.original_num_steps = original_num_steps |
| 1289 | |
| 1290 | def __call__(self, x, ts, **kwargs): |
| 1291 | map_tensor = th.tensor(self.timestep_map, |
| 1292 | device=ts.device, |
| 1293 | dtype=ts.dtype) |
| 1294 | new_ts = map_tensor[ts] |
| 1295 | return self.model(x, new_ts, **kwargs) |
nothing calls this directly
no outgoing calls
no test coverage detected