(self)
| 174 | return self.__str__() |
| 175 | |
| 176 | def free(self): |
| 177 | cuda_call(cudart.cudaFree(self.device)) |
| 178 | cuda_call(cudart.cudaFreeHost(self.host.ctypes.data)) |
| 179 | |
| 180 | |
| 181 | # Allocates all buffers required for an engine, i.e. host/device inputs/outputs. |
no test coverage detected