pub unsafe fn ie_infer_request_set_blob(
    infer_request: *mut ie_infer_request_t,
    name: *const c_char,
    blob: *const ie_blob_t
) -> IEStatusCode
Expand description

@brief Sets input/output data to inference. @ingroup InferRequest @param infer_request A pointer to ie_infer_request_t instance. @param name Name of input or output blob. @param blob Reference to input or output blob. The type of a blob must match the network input precision and size. @return Status code of the operation: OK(0) for success.