fix(compute): GPUEngine.Reshape honors dst argument (#81) #217
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.26' | |
| - run: go build ./... | |
| - name: Vet (excluding purego GPU bindings) | |
| run: | | |
| # Run go vet on all packages except those with intentional | |
| # unsafe.Pointer usage for GPU runtime bindings via purego/dlopen. | |
| # These warnings are expected and documented in docs/QUALITY.md. | |
| go vet $(go list ./... | grep -v '/internal/cuda$' | grep -v '/internal/hip$' | grep -v '/internal/opencl$' | grep -v '/internal/cudnn$' | grep -v '/internal/tensorrt$' | grep -v '/internal/fpga$' | grep -v '/internal/sycl$' | grep -v '/internal/metal$' | grep -v '/internal/pjrt$' | grep -v '/internal/nccl$') | |
| - run: go test -race -timeout 300s ./... |