From: Zoltán Böszörményi <[email protected]> opencl-icd-loader and ocl-icd both provide libOpenCL.so.1 and may conflict when both occur in the dependency chain.
Let the build configuration decide which one is used. Signed-off-by: Zoltán Böszörményi <[email protected]> --- lib/oeqa/runtime/cases/dldt_inference_engine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/oeqa/runtime/cases/dldt_inference_engine.py b/lib/oeqa/runtime/cases/dldt_inference_engine.py index fb35d52f..790c31d4 100644 --- a/lib/oeqa/runtime/cases/dldt_inference_engine.py +++ b/lib/oeqa/runtime/cases/dldt_inference_engine.py @@ -57,7 +57,7 @@ class DldtInferenceEngine(OERuntimeTestCase): @OEHasPackage(['dldt-inference-engine']) @OEHasPackage(['dldt-inference-engine-samples']) @OEHasPackage(['intel-compute-runtime']) - @OEHasPackage(['ocl-icd']) + @OEHasPackage(['virtual/opencl-icd']) def test_dldt_ie_classification_with_gpu(self): (status, output) = self.dldt_ie.test_dldt_ie_classification_with_device('GPU', self.ir_files_dir) self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output)) @@ -87,7 +87,7 @@ class DldtInferenceEngine(OERuntimeTestCase): @OEHasPackage(['dldt-inference-engine']) @OEHasPackage(['dldt-inference-engine-python3']) @OEHasPackage(['intel-compute-runtime']) - @OEHasPackage(['ocl-icd']) + @OEHasPackage(['virtual/opencl-icd']) @OEHasPackage(['python3-opencv']) @OEHasPackage(['python3-numpy']) def test_dldt_ie_classification_python_api_with_gpu(self): -- 2.37.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#7631): https://lists.yoctoproject.org/g/meta-intel/message/7631 Mute This Topic: https://lists.yoctoproject.org/mt/92977744/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-intel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
