Contributing
感谢你对本项目的关注!欢迎通过 Issue 和 Pull Request 参与贡献。
开发流程
- Fork 本仓库
- 创建特性分支:
git checkout -b feature/your-feature - 提交更改:
git commit -m "feat: add your feature" - 推送分支:
git push origin feature/your-feature - 创建 Pull Request
构建与测试
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j4
./tiny_llm_tests
代码规范
- C++/CUDA 代码遵循项目现有风格
- 使用
.editorconfig中定义的缩进和格式规则 - 新增 kernel 请附带单元测试和属性测试
- 确保所有现有测试通过
提交信息格式
推荐使用 Conventional Commits:
feat:新功能fix:修复 Bugdocs:文档更新perf:性能优化test:测试相关
| ← 返回首页 | API 参考 | 更新日志 |