Hello,
I went through the installation process for the NPU (https://ryzenai.docs.amd.com/en/latest/inst.html) and everything seems to be fine. The NPU driver was installed succesfully and the NPU shows up in the device manager and task manager as well.
However, when running the quicktest.py to test the installation I end up getting this error message:
Traceback (most recent call last):
File "C:\Program Files\RyzenAI\1.2.0\quicktest\quicktest.py", line 44, in <module>
apu_type = get_apu_info()
File "C:\Program Files\RyzenAI\1.2.0\quicktest\quicktest.py", line 16, in get_apu_info
if 'PCI\\VEN_1022&DEV_1502&REV_00' in stdout.decode(): apu_type = 'PHX/HPT'
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe4 in position 123: invalid continuation byte
After some googling it looks like the error comes either from the code itself or python. I found that python uses UTF-8, but should rather use latin-1. How can this be fixed?
Cheers