commit b8c0232f9b237a9c5e186edb12b0f12df4dc5c98 Author: Ayo Date: Tue Sep 2 20:09:03 2025 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86e5b9b --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*~ +*swo +*swp diff --git a/README.md b/README.md new file mode 100644 index 0000000..f4e20db --- /dev/null +++ b/README.md @@ -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/) diff --git a/main.py b/main.py new file mode 100644 index 0000000..9c6de66 --- /dev/null +++ b/main.py @@ -0,0 +1,3 @@ +import torch +x = torch.rand(5, 3) +print(x)