CUDA error: invalid argument CUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect. For debugging consider passing CUDA_LAUNCH_BLOCKING=1. Compile with TORCH_USE_CUDA_DSA to enable device-side assertions. #3142
This file contains 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: Assign | |
on: | |
issue_comment: | |
types: created | |
permissions: | |
contents: read | |
jobs: | |
issue_assign: | |
permissions: | |
issues: write | |
pull-requests: write | |
runs-on: ubuntu-22.04 | |
steps: | |
- if: github.event.comment.body == 'take' | |
run: | | |
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}" | |
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d '{"assignees": ["${{ github.event.comment.user.login }}"]}' https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees |