|
| 1 | +## Description |
| 2 | + |
| 3 | +<!-- Provide a clear and concise description of the changes --> |
| 4 | + |
| 5 | +### Type of Change |
| 6 | + |
| 7 | +- [ ] 🐛 Bug fix (non-breaking change which fixes an issue) |
| 8 | +- [ ] ✨ New feature (non-breaking change which adds functionality) |
| 9 | +- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected) |
| 10 | +- [ ] 📝 Documentation update |
| 11 | +- [ ] 🎨 Style/formatting change |
| 12 | +- [ ] ♻️ Code refactoring |
| 13 | +- [ ] ⚡ Performance improvement |
| 14 | +- [ ] ✅ Test addition/update |
| 15 | + |
| 16 | +### Related Issues |
| 17 | + |
| 18 | +<!-- Link to related issues: Fixes #123, Closes #456 --> |
| 19 | + |
| 20 | +## Changes Made |
| 21 | + |
| 22 | +<!-- List the key changes made --> |
| 23 | + |
| 24 | +1. |
| 25 | +2. |
| 26 | +3. |
| 27 | + |
| 28 | +## Testing |
| 29 | + |
| 30 | +### Test Environment |
| 31 | + |
| 32 | +- OS: |
| 33 | +- CUDA Version: |
| 34 | +- GPU: |
| 35 | + |
| 36 | +### Tests Run |
| 37 | + |
| 38 | +```bash |
| 39 | +# Commands used to test |
| 40 | +mkdir build && cd build |
| 41 | +cmake .. -DCMAKE_BUILD_TYPE=Release |
| 42 | +cmake --build . -j$(nproc) |
| 43 | +ctest --output-on-failure |
| 44 | +``` |
| 45 | + |
| 46 | +### Test Results |
| 47 | + |
| 48 | +- [ ] All existing tests pass |
| 49 | +- [ ] New tests added for new functionality |
| 50 | +- [ ] Manual testing performed |
| 51 | + |
| 52 | +### Performance Impact |
| 53 | + |
| 54 | +<!-- If applicable, describe any performance impact --> |
| 55 | + |
| 56 | +| Metric | Before | After | |
| 57 | +|--------|--------|-------| |
| 58 | +| FPS (N=100K) | | | |
| 59 | +| Memory | | | |
| 60 | + |
| 61 | +## Checklist |
| 62 | + |
| 63 | +- [ ] Code follows the project's style guidelines |
| 64 | +- [ ] Code has been self-reviewed |
| 65 | +- [ ] Code has been commented, particularly in hard-to-understand areas |
| 66 | +- [ ] Corresponding changes to documentation made |
| 67 | +- [ ] No new warnings introduced |
| 68 | +- [ ] Tests added that prove the fix is effective or feature works |
| 69 | +- [ ] New and existing unit tests pass locally |
| 70 | +- [ ] Any dependent changes have been merged and published |
| 71 | + |
| 72 | +## Documentation Updates |
| 73 | + |
| 74 | +<!-- List any documentation that needs updating --> |
| 75 | + |
| 76 | +- [ ] README.md |
| 77 | +- [ ] CHANGELOG.md |
| 78 | +- [ ] docs/ |
| 79 | +- [ ] API documentation |
| 80 | + |
| 81 | +## Additional Notes |
| 82 | + |
| 83 | +<!-- Add any additional notes or context about the pull request --> |
| 84 | + |
| 85 | +## Screenshots (if applicable) |
| 86 | + |
| 87 | +<!-- Add screenshots to help explain the changes --> |
0 commit comments