IExecutionContext.execute() vs IExecuteContext.execute_async()

Hi

I am using TensorRT in image classification. What is the difference between IExecutionContext.execute() vs IExecuteContext.execute_async()?

I have read the documentation available in the webpage, but I do not fully understand it.

1 Like

Hi,

The difference is that CPU is blocked until inference job finished in IExecutionContext.execute().
But CPU won’t wait for GPU task but only launch in IExecuteContext.execute_async().

Thanks.

1 Like