pub unsafe fn ie_network_set_input_precision(
    network: *mut ie_network_t,
    input_name: *const c_char,
    p: precision_e
) -> IEStatusCode
Expand description

@brief Changes the precision of the input data provided by the user. This function should be called before loading the network to the device. @ingroup Network @param network A pointer to ie_network_t instance. @param input_name Name of input data. @param p A new precision of the input data to set (eg. precision_e.FP16). @return Status code of the operation: OK(0) for success.