pub unsafe fn ie_exec_network_create_infer_request(
    ie_exec_network: *mut ie_executable_network_t,
    request: *mut *mut ie_infer_request_t
) -> IEStatusCode
Expand description

@brief Creates an inference request instance used to infer the network. The created request has allocated input and output blobs (that can be changed later). Use the ie_infer_request_free() method to free memory. @ingroup ExecutableNetwork @param ie_exec_network A pointer to ie_executable_network_t instance. @param request A pointer to the newly created ie_infer_request_t instance @return Status code of the operation: OK(0) for success.