Summary
I installed physicalai in uv virtual python environment and typed commands below.
from physicalai.inference import InferenceModel
policy = InferenceModel("./SmolVLA/exports/openvino", device="GPU")
Then the following error happened.
Traceback (most recent call last):
File "", line 1, in
File "/home/intel/openvino-physical-ai/.venv/lib/python3.12/site-packages/physicalai/inference/model.py", line 127, in init
self.adapter.load(model_path)
File "/home/intel/openvino-physical-ai/.venv/lib/python3.12/site-packages/physicalai/inference/adapters/openvino.py", line 70, in load
self.compiled_model = core.compile_model(model=model, device_name=self.device, config=self.config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/intel/openvino-physical-ai/.venv/lib/python3.12/site-packages/openvino/_ov_api.py", line 646, in compile_model
super().compile_model(model, device_name, {} if config is None else config),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Exception from src/inference/src/cpp/core.cpp:118:
Exception from src/inference/src/dev/plugin.cpp:54:
Check 'false' failed at src/plugins/intel_gpu/src/plugin/program_builder.cpp:163:
[GPU] ProgramBuilder build failed!
clBuildProgram
Without choosing GPU, it looks normally done.
policy = InferenceModel("./SmolVLA/exports/openvino", device="CPU")
policy = InferenceModel("./SmolVLA/exports/openvino")
Steps to reproduce
- Create uv venv environment
- Install physicalai in the venv following the instruction
- install GPU runtime (ocl-icd-libopencl1 and intel-opencl-icd)
- clinfo -l doesn't show anything
- install drivers following to the instructions
- Open python and type commands below.
from physicalai.inference import InferenceModel
policy = InferenceModel("./SmolVLA/exports/openvino", device="GPU")
Logs and traceback
Environment
OS: Ubuntu 24.04.4 LTS
Python: 3.12.3
physicalai: 0.1.1
Device: AAEON CEXD-INTRBL
CPU: Intel(R) Core(TM) Ultra X7 358H
Memory: 64GB
Disk: 256.1GB disk
lib.txt
Additional context
No response
Summary
I installed physicalai in uv virtual python environment and typed commands below.
Then the following error happened.
Without choosing GPU, it looks normally done.
Steps to reproduce
Logs and traceback
Environment
OS: Ubuntu 24.04.4 LTS
Python: 3.12.3
physicalai: 0.1.1
Device: AAEON CEXD-INTRBL
CPU: Intel(R) Core(TM) Ultra X7 358H
Memory: 64GB
Disk: 256.1GB disk
lib.txt
Additional context
No response