Skip to content

Commit

Permalink
exp: cuda ci
Browse files Browse the repository at this point in the history
  • Loading branch information
strasdat committed Jun 17, 2024
1 parent d0b7315 commit a0547db
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/cuda_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: cuda-compile

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
pre-commit-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: Jimver/cuda-toolkit@v0.2.15
id: cuda-toolkit
with:
cuda: '12.4.1'

- name: Display CUDA version
run: |
echo "Installed CUDA version is: ${{ steps.cuda-toolkit.outputs.cuda }}"
- name: Display CUDA install location
run: |
echo "CUDA install location: ${{ steps.cuda-toolkit.outputs.CUDA_PATH }}"
- name: Check NVCC Version
run: |
nvcc -V

0 comments on commit a0547db

Please sign in to comment.