Skip to content

Commit

Permalink
[GPU][Doc] doc update (openvinotoolkit#24318)
Browse files Browse the repository at this point in the history
  • Loading branch information
isanghao authored May 10, 2024
1 parent 6eac9dc commit d203f80
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
=============================================================================================================================== ======= ========== ===========

Expand Down
5 changes: 3 additions & 2 deletions src/bindings/c/include/openvino/c/ov_property.h
Original file line number Diff line number Diff line change
Expand Up @@ -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*)
Expand Down
3 changes: 2 additions & 1 deletion src/inference/include/openvino/runtime/properties.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"};
Expand Down

0 comments on commit d203f80

Please sign in to comment.