Skip to content

Commit 62e7444

Browse files
committed
ci updates
1 parent 1e396aa commit 62e7444

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,11 @@ jobs:
234234

235235
- name: Build BF16
236236
run: PRECISION=BF16 make test_llama3cu train_llama3cu
237+
238+
- name: Get cudnn
239+
run: |
240+
apt-get update && apt-get install -y git
241+
git clone https://github.com/NVIDIA/cudnn-frontend.git
242+
243+
- name: Build cuDNN
244+
run: PRECISION=BF16 USE_CUDNN=1 make test_llama3cu train_llama3cu

.github/workflows/ci_gpu.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,19 @@ jobs:
197197
- name: Run default
198198
run: ./test_llama3cu
199199

200+
- name: Install cuDNN-frontend
201+
run:
202+
git clone https://github.com/NVIDIA/cudnn-frontend.git
203+
204+
- name: Build with cuDNN
205+
run: USE_CUDNN=1 PRECISION=BF16 make train_llama3cu test_llama3cu
206+
207+
- name: Train model with cuDNN
208+
run: ./train_llama3cu
209+
210+
- name: Execute testing program with cuDNN
211+
run: ./test_llama3cu
212+
200213
unit-tests-gpu:
201214
runs-on: ubicloud-gpu-standard-1-latest
202215

0 commit comments

Comments
 (0)