clr: Fix HSA agent parameters in rocrCopyBuffer for correct rocprofiler-sdk memory copy tracing #7249
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 HIP PR description | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| paths: | |
| - "projects/hip/**" | |
| - "projects/clr/**" | |
| - "projects/hipother/**" | |
| - "projects/hip-tests/**" | |
| jobs: | |
| validate-pr-description: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Validate PR description | |
| env: | |
| PR_DESCRIPTION: ${{ github.event.pull_request.body }} | |
| run: python .github/scripts/hip_validate_pr_description.py |