Skip to content

Commit 8a4b2c3

Browse files
committed
disable llama in ci/cd
1 parent 2f3fe55 commit 8a4b2c3

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

.github/workflows/test.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -63,33 +63,33 @@ jobs:
6363
run: rustup update
6464
- name: Run CUDA crate tests
6565
run: cargo test -p luminal_cuda --verbose
66-
cuda_llama:
67-
name: Cuda Llama
68-
runs-on: cuda_t4_runner
69-
timeout-minutes: 30
70-
env:
71-
CUDA_HOME: /usr/local/cuda-12.8
72-
LD_LIBRARY_PATH: /usr/local/cuda-12.8/lib64
66+
# cuda_llama: # disabled because t4 doesn't have enough memory for full precision llama. re-enable when we can run on larger machines or use 8-bit precision
67+
# name: Cuda Llama
68+
# runs-on: cuda_t4_runner
69+
# timeout-minutes: 30
70+
# env:
71+
# CUDA_HOME: /usr/local/cuda-12.8
72+
# LD_LIBRARY_PATH: /usr/local/cuda-12.8/lib64
7373

74-
steps:
75-
- uses: actions/checkout@v4
76-
- name: Install system deps
77-
run: |
78-
sudo apt-get update
79-
sudo apt-get install -y --no-install-recommends \
80-
protobuf-compiler \
81-
cuda-nvrtc-12-8
82-
- name: Install Rust
83-
run: |
84-
curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
85-
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
86-
- name: Update Rust
87-
run: rustup update
88-
- name: Install uv
89-
run: curl -LsSf https://astral.sh/uv/install.sh | sh
90-
- name: Download Llama
91-
working-directory: examples/llama
92-
run: uv run --script setup/setup.py
93-
- name: Run Llama
94-
working-directory: examples/llama
95-
run: SEARCH=1 cargo run --release
74+
# steps:
75+
# - uses: actions/checkout@v4
76+
# - name: Install system deps
77+
# run: |
78+
# sudo apt-get update
79+
# sudo apt-get install -y --no-install-recommends \
80+
# protobuf-compiler \
81+
# cuda-nvrtc-12-8
82+
# - name: Install Rust
83+
# run: |
84+
# curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
85+
# echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
86+
# - name: Update Rust
87+
# run: rustup update
88+
# - name: Install uv
89+
# run: curl -LsSf https://astral.sh/uv/install.sh | sh
90+
# - name: Download Llama
91+
# working-directory: examples/llama
92+
# run: uv run --script setup/setup.py
93+
# - name: Run Llama
94+
# working-directory: examples/llama
95+
# run: SEARCH=1 cargo run --release

0 commit comments

Comments
 (0)