pub unsafe fn ie_core_load_network_from_file(
    core: *mut ie_core_t,
    xml: *const c_char,
    device_name: *const c_char,
    config: *const ie_config_t,
    exe_network: *mut *mut ie_executable_network_t
) -> IEStatusCode
Expand description

@brief Reads model and creates an executable network from IR or ONNX file. Users can create as many networks as they need and use them simultaneously (up to the limitation of the hardware resources). Use the ie_exec_network_free() method to free memory. @ingroup Core @param core A pointer to the ie_core_t instance. @param xml .xml file’s path of the IR. Weights file name will be calculated automatically @param device_name Name of device to load network to. @param config Device configuration. @param exe_network A pointer to the newly created executable network. @return Status code of the operation: OK(0) for success.