* Update CPU docs * update GPU docs * update with sphinxtab * Fix docs * Add preprocessig snippet * Fix path Co-authored-by: Anastasia Kuporosova <anastasia.kuporosova@intel.com>
11 lines
218 B
Python
11 lines
218 B
Python
# Copyright (C) 2022 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
from openvino.runtime import Core
|
|
|
|
#! [part0]
|
|
core = Core()
|
|
core.set_property("GPU", {"CONFIG_FILE": "<path_to_the_xml_file>"})
|
|
#! [part0]
|