(context, bindings, inputs, outputs, stream)
| 258 | # This function is generalized for multiple inputs/outputs for full dimension networks. |
| 259 | # inputs and outputs are expected to be lists of HostDeviceMem objects. |
| 260 | def do_inference_v2(context, bindings, inputs, outputs, stream): |
| 261 | def execute_async(): |
| 262 | context.execute_async_v2(bindings=bindings, stream_handle=stream) |
| 263 | return _do_inference_base(inputs, outputs, stream, execute_async) |
nothing calls this directly
no test coverage detected