contributing

This commit is contained in:
George Hotz 2022-11-08 19:12:05 -08:00
parent 4998bf49b3
commit 5143da6a9f
1 changed files with 9 additions and 0 deletions

View File

@ -38,6 +38,15 @@ print(x.grad) # dz/dx
print(y.grad) # dz/dy print(y.grad) # dz/dy
``` ```
### Contributing
There's a lot of interest in tinygrad lately. Here's some guidelines for contributing:
* Bugfixes are the best and always welcome! Like [this one](https://github.com/geohot/tinygrad/pull/421/files).
* If you don't understand the code you are changing, don't change it!
* All code golf PRs will be closed, but [conceptual cleanups](https://github.com/geohot/tinygrad/pull/372/files) are great.
* Testing and features are welcome. Though if you are adding a feature, you need to include tests.
### Same example in torch ### Same example in torch
```python ```python