mirror of https://github.com/commaai/tinygrad.git
contributing
This commit is contained in:
parent
4998bf49b3
commit
5143da6a9f
|
@ -38,6 +38,15 @@ print(x.grad) # dz/dx
|
|||
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
|
||||
|
||||
```python
|
||||
|
|
Loading…
Reference in New Issue