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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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]