feat(ncu_profile): full FP16/BF16 support via signature-driven C wrap… #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Validate | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Check skill interface consistency | |
| run: python3 scripts/check_skills.py | |
| - name: Check documentation counts | |
| run: python3 scripts/check_counts.py | |
| - name: Check cuda-samples link validity | |
| run: uv run scripts/check_links.py |