Description
Describe the bug
I use the following notebook.
https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/mllama-3.2/mllama-3.2.ipynb
I tested OpenVINO 2025.2.0.dev20250421 nightly on ARL-S iGPU, A770 dGPU, and B580 dGPU, all are throwing gibberish results. iGPU throws "!!!!!!!!!!!!!!!!!!..." and dGPUs throw "eyseeyseeyseeyse...".
OpenVINO 2024.6 and 2025.0 on ARL-S iGPU and A770 dGPU throws the expected result.
B580 needs to use OpenVINO 2025.2 nightly as it needs Multiply_10 operation to be implemented.
Expected behavior
Normal readable answer.
Installation instructions (Please mark the checkbox)
- I followed the installation guide at https://github.com/openvinotoolkit/openvino_notebooks#-installation-guide to install the notebooks.
Environment information
$ python check_install.py
/home/eka/Workspace/openvino_2025.1_env/lib/python3.12/site-packages/openvino/runtime/init.py:10: DeprecationWarning: The openvino.runtime
module is deprecated and will be removed in the 2026.0 release. Please replace openvino.runtime
with openvino
.
warnings.warn(
System information:
Python executable: /home/eka/Workspace/openvino_2025.1_env/bin/python
Pip version: 25.0.1
OpenVINO source: /home/eka/Workspace/openvino_2025.1_env/lib/python3.12/site-packages/openvino
OpenVINO IE version: 2025.2.0-18823-4ebe493140b
OpenVINO environment activated: NOT OK
Jupyter kernel installed for openvino_env: NOT OK
Python version: 3.12 NOT OK
OpenVINO pip package installed: OK
OpenVINO import succeeds: OK
OpenVINO not installed globally: NOT OK
No broken requirements: OK
It appears that you are not running Python in an openvino_env
environment. It is possible use the notebooks in a different
environment, but if you run into trouble, please follow the instructions
in the README to install and activate the openvino_env
environment.
The Python version in openvino_env does not match the openvino_env Jupyter kernel.
This may not be an issue. If you experience issues, please follow the instructions
in the README to reinstall the kernel.
It appears that you installed OpenVINO globally (for example with
the OpenVINO installer, or a package manager).
This may cause conflicts with the OpenVINO environment installed by
pip install. If you encounter issues, please make sure to start the
notebooks from a terminal where you did not run setupvars.sh/setupvars.bat,
and where you did not add OpenVINO paths to your PATH or LD_LIBRARY_PATH.
LD_LIBRARY_PATH:
''
You may have added the command to source setuptools.sh to your
.bashrc, or added the OpenVINO paths to LD_LIBRARY_PATH there.
You can delete the lines from .bashrc and open a new terminal window
or temporarily reset your LD_LIBRARY_PATH by executing
export LD_LIBRARY_PATH=
in your current terminal.
The README.md file is located in the openvino_notebooks directory
and at https://github.com/openvinotoolkit/openvino_notebooks