From 6f92c8069f891aff78c19d7bc368dac02d388186 Mon Sep 17 00:00:00 2001 From: Jesper Stemann Andersen Date: Mon, 7 Feb 2022 00:57:26 +0100 Subject: [PATCH] Added cuda compat specifier to platforms --- O/onnxruntime/onnxruntime_providers_cuda/build_tarballs.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/O/onnxruntime/onnxruntime_providers_cuda/build_tarballs.jl b/O/onnxruntime/onnxruntime_providers_cuda/build_tarballs.jl index 5679a1f04a5..9f628a72385 100644 --- a/O/onnxruntime/onnxruntime_providers_cuda/build_tarballs.jl +++ b/O/onnxruntime/onnxruntime_providers_cuda/build_tarballs.jl @@ -30,8 +30,8 @@ install_license $dist_name*/LICENSE # These are the platforms we will build for by default, unless further # platforms are passed in on the command line platforms = [ - Platform("x86_64", "Linux"), - Platform("x86_64", "Windows") + Platform("x86_64", "Linux"; cuda = "11.4"), + Platform("x86_64", "Windows"; cuda = "11.4") ] platforms = expand_cxxstring_abis(platforms; skip=!Sys.islinux)