Contributing¶
Contributions are welcome! Please open issues and pull requests on GitHub.
Development setup¶
git clone https://github.com/nvlabs/warpconvnet.git
cd warpconvnet
pip install -e . --no-build-isolation
Running tests¶
pytest tests/ -v
Code style¶
- Format with
blackandisort. - Use type annotations for public APIs.
- Follow NumPy-style docstrings.
Pull requests¶
- Fork the repository and create a feature branch.
- Add tests for new functionality.
- Ensure all tests pass before submitting.
- Open a pull request against
main.