Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 619 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 619 Bytes

Zarf Package K3d

Zarf package that deploys a k3d cluster that has GPU support

Deployment

zarf package create .
zarf package deploy zarf-package-k3d-local-amd64-v1.27.2.tar.zst

BigBang deployed

kubectl get hr -n bigbang

Working GPU

kubectl apply -f image/cuda-vector-add.yaml
kubectl logs -n gpu-test cuda-vector-add      

Should return:

[Vector addition of 50000 elements]
Copy input data from the host memory to the CUDA device
CUDA kernel launch with 196 blocks of 256 threads
Copy output data from the CUDA device to the host memory
Test PASSED
Done