From fdcf86fa40794e717be03920c831b1c174b8d31f Mon Sep 17 00:00:00 2001 From: 2022tgoel Date: Fri, 10 Jan 2025 18:17:02 +0000 Subject: [PATCH] Fix failure on gpu-all-tests. ffmpeg_test was failing because the video capability was missing in the runtime --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fe55bd2e5..f74d7b451 100644 --- a/Makefile +++ b/Makefile @@ -309,7 +309,7 @@ gpu-images: gpu-smoke-images load-gpu_pytorch load-gpu_ollama load-gpu_ollama_cl .PHONY: gpu-images gpu-all-tests: gpu-images gpu-smoke-tests $(RUNTIME_BIN) - @$(call install_runtime,$(RUNTIME),--nvproxy=true --nvproxy-docker=true) + @$(call install_runtime,$(RUNTIME),--nvproxy=true --nvproxy-docker=true --nvproxy-allowed-driver-capabilities=all) @$(call sudo,test/gpu:pytorch_test,--runtime=$(RUNTIME) -test.v $(ARGS)) @$(call sudo,test/gpu:textgen_test,--runtime=$(RUNTIME) -test.v $(ARGS)) @$(call sudo,test/gpu:imagegen_test,--runtime=$(RUNTIME) -test.v $(ARGS))