small changes

This commit is contained in:
lucasdelimanogueira 2024-05-10 20:12:15 -03:00
parent 68bee8b457
commit e6104e43c9
18 changed files with 468 additions and 287 deletions

View file

@ -1,2 +1,16 @@
# foo
Recreating PyTorch from scratch
# PyNorch
Recreating PyTorch from scratch (C/C++, CUDA and Python, with GPU support and automatic differentiation!)
# 1 - About
**PyNorch** is a deep learning framework constructed using C/C++, CUDA and Python. This is a personal project with educational purpose only! `Norch` means **NOT** PyTorch, and we have **NO** claims to rivaling the already established PyTorch. The main objective of **PyNorch** was to give a brief understanding of how a deep learning framework works internally. It implements the Tensor object, GPU support and an automatic differentiation system.
# 2 - Installation
```css
$ sudo apt install nvidia-cuda-toolkit
$ git clone https://github.com/lucasdelimanogueira/PyNorch.git
$ cd build
$ make
$ cd ..
```
# 3 - Get started