[][src]Constant openvino_sys::LIBRARY_PATH

pub const LIBRARY_PATH: &'static str = "";

This string contains the path to the OpenVINO binaries on the system on which this crate was built. Warning: do not use this on systems other than the system that built openvino-sys.

Its presence here is necessary because OpenVINO loads target-specific libraries on demand for performing inference. To do so, it relies on a plugins.xml file that maps targets (e.g. CPU) to the target-specific implementation library. At runtime, it inspects this file and loads the libraries to satisfy the user's specified targets. By default, the plugins.xml file and these libraries will be available at this path.