Group Intel NPU LevelZero interoperability#
- group ov_runtime_level_zero_npu_cpp_api
Set of C++ classes and properties to work with Remote API for Intel NPU LevelZero plugin.
Enums
Variables
-
static constexpr Property<MemType> mem_type = {"MEM_TYPE"}#
This key identifies type of internal shared memory in a shared memory tensor parameter map.
-
static constexpr Property<npu_handle_param> mem_handle = {"MEM_HANDLE"}#
This key identifies memory handle in a shared memory tensor parameter map.
-
static constexpr Property<npu_handle_param> l0_context = {"L0_CONTEXT"}#
This key identifies LevelZero context handle in a shared context parameter map.
-
static constexpr Property<TensorType> tensor_type = {"TENSOR_TYPE"}#
This key sets the type of the internal Level Zero buffer allocated by the plugin in a shared memory tensor parameter map.
-
class ZeroBufferTensor : public ov::RemoteTensor#
- #include <level_zero.hpp>
This class represents an abstraction for NPU plugin remote tensor which can be shared with user-supplied LevelZero buffer. The plugin object derived from this class can be obtained with ZeroContext::create_tensor() call.
Note
User can obtain Level Zero buffer handle from this class.
Public Functions
-
inline void *get()#
Returns the underlying LevelZero memory object handle.
- Returns:
underlying void* memory object handle
-
inline void *get()#
-
class ZeroContext : public ov::RemoteContext#
- #include <level_zero.hpp>
This class represents an abstraction for NPU plugin remote context which is shared with LevelZero context object. The plugin object derived from this class can be obtained either with CompiledModel::get_context() or Core::create_context() calls.
Public Functions
-
inline ZeroContext(Core &core)#
Constructs context object from user-supplied LevelZero context handle.
- Parameters:
core – A reference to OpenVINO Runtime Core object
-
inline void *get()#
Returns the underlying LevelZero context handle.
- Returns:
void*
-
inline ZeroBufferTensor create_tensor(const element::Type type, const Shape &shape, void *buffer)#
This function is used to obtain remote tensor object from user-supplied NT handle object.
-
inline ZeroBufferTensor create_tensor(const element::Type type, const Shape &shape, int fd)#
This function is used to obtain remote tensor object from user-supplied DMA-BUF System Heap object.
-
inline ZeroBufferTensor create_l0_host_tensor(const element::Type type, const Shape &shape, const TensorType tensor_type = TensorType::BINDED)#
This function is used to obtain remote tensor object.
-
RemoteTensor create_tensor(const element::Type &type, const Shape &shape, const AnyMap ¶ms = {})#
Allocates memory tensor in device memory or wraps user-supplied memory handle using the specified tensor description and low-level device-specific parameters. Returns a pointer to the object that implements the RemoteTensor interface.
- Parameters:
type – Defines the element type of the tensor.
shape – Defines the shape of the tensor.
params – Map of the low-level tensor object parameters.
- Returns:
Pointer to a plugin object that implements the RemoteTensor interface.
-
inline ZeroContext(Core &core)#
-
static constexpr Property<MemType> mem_type = {"MEM_TYPE"}#