Change device order in MULTI python snippet (#15077)

This commit is contained in:
Julio Morero
2023-01-12 18:49:14 -03:00
committed by GitHub
parent 5f601a5f63
commit efa7cae5a0

View File

@@ -18,7 +18,7 @@ def MULTI_0():
# Option 2
# Specify the devices to be used by MULTI explicitly at compilation.
# The following lines are equivalent:
compiled_model = core.compile_model(model=model, device_name="MULTI:CPU,GPU")
compiled_model = core.compile_model(model=model, device_name="MULTI:GPU,CPU")
compiled_model = core.compile_model(model=model, device_name="MULTI", config={"MULTI_DEVICE_PRIORITIES": "GPU,CPU"})
#! [MULTI_0]