initial commit

This commit is contained in:
Ayo Ayco 2025-09-02 20:09:03 +02:00
commit b8c0232f9b
3 changed files with 11 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
*~
*swo
*swp

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# Learn PyTorch
Links
- [Install IPEX-LLM on Intel GPU with PyTorch 2.6](https://git.ayo.run/ayo/ipex-llm/src/branch/main/docs/mddocs/Quickstart/install_pytorch26_gpu.md)
- [Get started with PyTorch locally](https://pytorch.org/get-started/locally/)

3
main.py Normal file
View file

@ -0,0 +1,3 @@
import torch
x = torch.rand(5, 3)
print(x)