[][src]Function openvino_sys::ie_core_load_network

pub unsafe extern "C" fn ie_core_load_network(
    core: *mut ie_core_t,
    network: *const ie_network_t,
    device_name: *const c_char,
    config: *const ie_config_t,
    exe_network: *mut *mut ie_executable_network_t
) -> IEStatusCode

@brief Creates an executable network from a network object. 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 ie_core_t instance. @param network A pointer to ie_network instance. @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.