()
| 251 | # inputs and outputs are expected to be lists of HostDeviceMem objects. |
| 252 | def do_inference(context, bindings, inputs, outputs, stream, batch_size=1): |
| 253 | def execute_async(): |
| 254 | context.execute_async(batch_size=batch_size, bindings=bindings, stream_handle=stream) |
| 255 | return _do_inference_base(inputs, outputs, stream, execute_async) |
| 256 | |
| 257 |
no outgoing calls
no test coverage detected