(self)
| 279 | return 0 |
| 280 | |
| 281 | def load(self): |
| 282 | print(f"Loading TensorRT engine: {self.engine_path}") |
| 283 | self.engine = engine_from_bytes(bytes_from_path(self.engine_path)) |
| 284 | |
| 285 | def activate(self, reuse_device_memory=None): |
| 286 | if reuse_device_memory: |
no outgoing calls
no test coverage detected