File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments