Skip to content

Commit

Permalink
Switch GPU CI runner to Paperspace (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham authored Oct 22, 2023
1 parent a56d972 commit 696f1f6
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:
jobs:
cuda:
name: Rust tests on CUDA
runs-on: [self-hosted, gpu]
runs-on: [self-hosted, gpu-ci]
env:
NVIDIA_VISIBLE_DEVICES: all
NVIDIA_DRIVER_CAPABILITITES: compute,utility
Expand All @@ -63,13 +63,12 @@ jobs:
- name: CUDA tests
env:
EC_GPU_FRAMEWORK: cuda
# Temporarily skipping CLI test due to cudaMallocAsync error: https://github.com/lurk-lab/lurk-rs/issues/596
run: |
cargo nextest run --profile ci --cargo-profile dev-ci --features cuda -E 'all() - test(test_prove_and_verify)'
cargo nextest run --profile ci --cargo-profile dev-ci --features cuda
opencl:
name: Rust tests on OpenCL
runs-on: [self-hosted, gpu]
runs-on: [self-hosted, gpu-ci]
env:
NVIDIA_VISIBLE_DEVICES: all
NVIDIA_DRIVER_CAPABILITITES: compute,utility
Expand Down Expand Up @@ -98,6 +97,5 @@ jobs:
- name: OpenCL tests
env:
EC_GPU_FRAMEWORK: opencl
# Temporarily skipping CLI test due to cudaMallocAsync error: https://github.com/lurk-lab/lurk-rs/issues/596
run: |
cargo nextest run --profile ci --cargo-profile dev-ci --features cuda,opencl -E 'all() - test(test_prove_and_verify)'
cargo nextest run --profile ci --cargo-profile dev-ci --features cuda,opencl

0 comments on commit 696f1f6

Please sign in to comment.