[GPU][Doc] doc update (#24318)
This commit is contained in:
parent
6eac9dca0e
commit
d203f80943
|
|
@ -45,9 +45,9 @@ Feature Support and API Coverage
|
|||
:doc:`Multi-stream execution <../../openvino-workflow/running-inference/optimize-inference/optimizing-throughput>` Yes Yes No
|
||||
:doc:`Models caching <../../openvino-workflow/running-inference/optimize-inference/optimizing-latency/model-caching-overview>` Yes Partial Yes
|
||||
:doc:`Dynamic shapes <../../openvino-workflow/running-inference/dynamic-shapes>` Yes Partial No
|
||||
:doc:`Import/Export <../../documentation/openvino-ecosystem>` Yes No Yes
|
||||
:doc:`Import/Export <../../documentation/openvino-ecosystem>` Yes Yes Yes
|
||||
:doc:`Preprocessing acceleration <../../openvino-workflow/running-inference/optimize-inference/optimize-preprocessing>` Yes Yes No
|
||||
:doc:`Stateful models <../../openvino-workflow/running-inference/stateful-models>` Yes No Yes
|
||||
:doc:`Stateful models <../../openvino-workflow/running-inference/stateful-models>` Yes Yes Yes
|
||||
:doc:`Extensibility <../../documentation/openvino-extensibility>` Yes Yes No
|
||||
=============================================================================================================================== ======= ========== ===========
|
||||
|
||||
|
|
|
|||
|
|
@ -99,8 +99,9 @@ ov_property_key_cache_dir;
|
|||
|
||||
/**
|
||||
* @brief Read-write property<string> to select the cache mode between optimize_size and optimize_speed.
|
||||
* If optimize_size is selected, smaller cache files will be created.
|
||||
* And if optimize_speed is selected, loading time will decrease but the cache file size will increase.
|
||||
* If optimize_size is selected(default), smaller cache files will be created.
|
||||
* If optimize_speed is selected, loading time will decrease but the cache file size will increase.
|
||||
* This is only supported from GPU.
|
||||
* @ingroup ov_property_c_api
|
||||
*/
|
||||
OPENVINO_C_VAR(const char*)
|
||||
|
|
|
|||
|
|
@ -727,8 +727,9 @@ inline std::istream& operator>>(std::istream& is, CacheMode& mode) {
|
|||
|
||||
/**
|
||||
* @brief Read-write property to select the cache mode between optimize_size and optimize_speed.
|
||||
* If optimize_speed is selected(default), loading time will decrease but the cache file size will increase.
|
||||
* If optimize_size is selected, smaller cache files will be created.
|
||||
* And if optimize_speed is selected, loading time will decrease but the cache file size will increase.
|
||||
* This is only supported from GPU.
|
||||
* @ingroup ov_runtime_cpp_prop_api
|
||||
*/
|
||||
static constexpr Property<CacheMode, PropertyMutability::RW> cache_mode{"CACHE_MODE"};
|
||||
|
|
|
|||
Loading…
Reference in New Issue