(self)
| 417 | self, blob_out, batch_size, db, db_type, **kwargs) |
| 418 | |
| 419 | def GetDevices(self): |
| 420 | assert len(self._devices) > 0, \ |
| 421 | "Use data_parallel_model to run model on multiple GPUs." |
| 422 | return self._devices |
| 423 | |
| 424 | def __getattr__(self, op_type): |
| 425 | """Catch-all for all other operators, mostly those without params.""" |
no outgoing calls
no test coverage detected