[GPU][Doc] doc update (#24318)

This commit is contained in:
Mingyu Kim 2024-05-10 13:41:05 +09:00 committed by GitHub
parent 6eac9dca0e
commit d203f80943
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 5 deletions

View File

@ -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
=============================================================================================================================== ======= ========== ===========

View File

@ -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*)

View File

@ -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"};