Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.04 KB

File metadata and controls

38 lines (30 loc) · 1.04 KB

How to Contribute

We welcome contributions to this project! If you'd like to contribute to this project, please follow these simple steps:

1. Fork and Clone

First, fork the repository on GitHub and clone it to your local machine:

git clone https://github.com/<your-username>/PyTorchSim.git

Then, create a new branch for your work:

git checkout -b feature/my-feature

2. Commit

Make your changes, then commit:

git add .
git commit -m "[Frontend] Fix minor typo in autotuning log"

It would be better to keep commits focused on one logical change.

3. Open a Pull Request

Push your branch and open a Pull Request (PR). Please make sure to open your PR against the develop branch, as new features and improvements are continuously merged there.

git push origin feature/my-feature

4. Review Process

Once your PR is open, our team will take a look shortly. We’ll review, run tests, and leave feedback if needed. Small, clear PRs are always appreciated!

Thanks again for taking the time to improve this project🙌