Skip to content

Commit f31b6d8

Browse files
committed
Native: drop CUDA x86 support following CUDA Toolkit 7.0
1 parent d9fd546 commit f31b6d8

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

build.fsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ let mklLinuxBundle =
278278
let cudaWinPack =
279279
{ Id = "MathNet.Numerics.CUDA.Win"
280280
Version = cudaPackageVersion
281-
Title = "Math.NET Numerics - CUDA Native Provider for Windows (x64 and x86)"
281+
Title = "Math.NET Numerics - CUDA Native Provider for Windows (x64)"
282282
Summary = ""
283283
Description = "Nvidia CUDA native libraries for Math.NET Numerics."
284284
ReleaseNotes = cudaReleaseNotes
@@ -292,11 +292,7 @@ let cudaWinPack =
292292
@"..\..\out\CUDA\Windows\x64\cublas64_70.dll", Some "content", None;
293293
@"..\..\out\CUDA\Windows\x64\cudart64_70.dll", Some "content", None;
294294
@"..\..\out\CUDA\Windows\x64\cusolver64_70.dll", Some "content", None;
295-
@"..\..\out\CUDA\Windows\x64\MathNet.Numerics.CUDA.dll", Some "content", None
296-
@"..\..\out\CUDA\Windows\x86\cublas32_70.dll", Some "content", None;
297-
@"..\..\out\CUDA\Windows\x86\cudart32_70.dll", Some "content", None;
298-
@"..\..\out\CUDA\Windows\x86\cusolver32_70.dll", Some "content", None;
299-
@"..\..\out\CUDA\Windows\x86\MathNet.Numerics.CUDA.dll", Some "content", None ] }
295+
@"..\..\out\CUDA\Windows\x64\MathNet.Numerics.CUDA.dll", Some "content", None ] }
300296

301297
let cudaWinBundle =
302298
{ Id = "MathNet.Numerics.CUDA.Win"
@@ -425,10 +421,8 @@ Target "MklWinBuild" DoNothing
425421
"Prepare" ==> "MklWin32Build" ==> "MklWinBuild"
426422
"Prepare" ==> "MklWin64Build" ==> "MklWinBuild"
427423

428-
Target "CudaWin32Build" (fun _ -> buildConfig32 "Release-CUDA" !! "MathNet.Numerics.NativeProviders.sln")
429424
Target "CudaWin64Build" (fun _ -> buildConfig64 "Release-CUDA" !! "MathNet.Numerics.NativeProviders.sln")
430425
Target "CudaWinBuild" DoNothing
431-
"Prepare" ==> "CudaWin32Build" ==> "CudaWinBuild"
432426
"Prepare" ==> "CudaWin64Build" ==> "CudaWinBuild"
433427

434428
Target "DataBuild" (fun _ -> build !! "MathNet.Numerics.Data.sln")

0 commit comments

Comments
 (0)