I have installed rocm-runtime and onnxruntime, but when I try to get the available execution providers I only get the CPU:
$ python
Python 3.13.0 (main, Oct 8 2024, 00:00:00) [GCC 14.2.1 20240912 (Red Hat 14.2.1-3)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import onnxruntime as ort
>>> ort.get_available_providers()
['CPUExecutionProvider']
Is there anything else I should install?