* add compile tool description * change refs * remove page to build docs * doc reference fix * review comments * fix comment * snippet comment * Update docs/snippets/compile_model.cpp Co-authored-by: Ilya Churaev <ilyachur@gmail.com> * change snippet name * create ov object * code block fix * cpp code block * include change * code test * change snippet * Update docs/snippets/export_compiled_model.cpp Co-authored-by: Ilya Churaev <ilyachur@gmail.com> --------- Co-authored-by: Ilya Churaev <ilyachur@gmail.com>
8 lines
174 B
Python
8 lines
174 B
Python
#! [export_compiled_model]
|
|
|
|
from openvino.runtime import Core
|
|
|
|
ov.Core().compile_model(device, modelPath, properties).export_model(compiled_blob)
|
|
|
|
#! [export_compiled_model]
|