fixed compilation of MYRIAD/GPU only (no MKL_DNN) (#3552)

This commit is contained in:
Maxim Shevtsov 2020-12-10 17:10:00 +03:00 committed by GitHub
parent ca08c5b45c
commit 12d2121976
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
const std::vector<DevicesNamesAndSupportPair> device_names_and_support_for_remote_blobs { const std::vector<DevicesNamesAndSupportPair> device_names_and_support_for_remote_blobs {
{{GPU}, true}, // GPU via MULTI, {{GPU}, true}, // GPU via MULTI,
#if ENABLE_MKL_DNN #ifdef ENABLE_MKL_DNN
{{GPU, CPU}, true}, // GPU+CPU {{GPU, CPU}, true}, // GPU+CPU
{{CPU, GPU}, true}, // CPU+GPU {{CPU, GPU}, true}, // CPU+GPU
#endif #endif

View File

@ -9,7 +9,7 @@
const std::vector<DevicesNamesAndSupportPair> device_names_and_support_for_remote_blobs { const std::vector<DevicesNamesAndSupportPair> device_names_and_support_for_remote_blobs {
{{MYRIAD}, false}, // MYX via MULTI {{MYRIAD}, false}, // MYX via MULTI
#if ENABLE_MKL_DNN #ifdef ENABLE_MKL_DNN
{{CPU, MYRIAD}, false}, // CPU+MYX {{CPU, MYRIAD}, false}, // CPU+MYX
#endif #endif
}; };