You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't use packaging python lib in capture-hw-details.sh (#4995)
To fix:
```bash
OS=Linux
/opt/hostedtoolcache/Python/3.10.18/x64/lib/python3.10/site-packages/torch/_subclasses/functional_tensor.py:279: UserWarning: Failed to initialize NumPy: No module named 'numpy' (Triggered internally at /runner/_work/intel-xpu-backend-for-triton/intel-xpu-backend-for-triton/pytorch/torch/csrc/utils/tensor_numpy.cpp:84.)
cpu = _conversion_method_template(device=torch.device("cpu"))
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'packaging'
LIBIGC1_VERSION=2.11.12-1146
LEVEL_ZERO_VERSION=1.21.9.0-1136
```
Seems not a big deal
```python
>>> import torch; from packaging.version import Version; print(Version(torch.__version__).base_version)
2.9.0
>>> import torch; print((torch.__version__))))
2.9.0a0+git54cc63b
```
0 commit comments