From 5143da6a9f1ecff2ac66e52889c6d30fa833c4ee Mon Sep 17 00:00:00 2001 From: George Hotz Date: Tue, 8 Nov 2022 19:12:05 -0800 Subject: [PATCH] contributing --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index bf4b8749..46a76204 100644 --- a/README.md +++ b/README.md @@ -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