Skip to content

Commit 03c97d6

Browse files
committed
Release MKL Native Provider: v1.8.0 (rev 8)
1 parent 408f06c commit 03c97d6

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

RELEASENOTES-MKL.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.8.0 - 2015-05-09
2+
* r8 with Intel MKL 11.2 Update 3
3+
* New combined NuGet package including both 32 and 64 bit builds and a proper build target (Win only)
4+
15
### 1.7.0 - 2014-12-31
26
* r7 with Intel MKL 11.2 Update 1
37
* memory functions *~Marcus Cuda*

build.fsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,7 @@ let publishReleaseTag title prefix version notes =
737737

738738
Target "PublishTag" (fun _ -> publishReleaseTag "Math.NET Numerics" "" packageVersion releaseNotes)
739739
Target "MklPublishTag" (fun _ -> publishReleaseTag "Math.NET Numerics MKL Provider" "mkl-" mklPackageVersion mklReleaseNotes)
740+
Target "CudaPublishTag" (fun _ -> publishReleaseTag "Math.NET Numerics CUDA Provider" "cuda-" cudaPackageVersion cudaReleaseNotes)
740741
Target "DataPublishTag" (fun _ -> publishReleaseTag "Math.NET Numerics Data Extensions" "data-" dataPackageVersion dataReleaseNotes)
741742

742743
Target "PublishMirrors" (fun _ ->
@@ -780,6 +781,7 @@ let publishNuGet packageFiles =
780781

781782
Target "PublishNuGet" (fun _ -> !! "out/packages/NuGet/*.nupkg" -- "out/packages/NuGet/*.symbols.nupkg" |> publishNuGet)
782783
Target "MklPublishNuGet" (fun _ -> !! "out/MKL/packages/NuGet/*.nupkg" |> publishNuGet)
784+
Target "CudaPublishNuGet" (fun _ -> !! "out/CUDA/packages/NuGet/*.nupkg" |> publishNuGet)
783785
Target "DataPublishNuGet" (fun _ -> !! "out/Data/packages/NuGet/*.nupkg" |> publishNuGet)
784786

785787
Target "Publish" DoNothing
@@ -792,6 +794,10 @@ Target "MklPublish" DoNothing
792794
"MklPublishTag" ==> "MklPublish"
793795
"MklPublishNuGet" ==> "MklPublish"
794796

797+
Target "CudaPublish" DoNothing
798+
"CudaPublishTag" ==> "CudaPublish"
799+
"CudaPublishNuGet" ==> "CudaPublish"
800+
795801
Target "DataPublish" DoNothing
796802
"DataPublishTag" ==> "DataPublish"
797803
"DataPublishNuGet" ==> "DataPublish"

src/NativeProviders/MKL/capabilities.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ extern "C" {
4141
#endif
4242

4343
// COMMON/SHARED
44-
case 64: return 7; // revision
44+
case 64: return 8; // revision
4545
case 65: return 1; // numerical consistency, precision and accuracy modes
4646
case 66: return 1; // threading control
4747
case 67: return 1; // memory management

src/NativeProviders/MKL/resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 1,7,0,0
55-
PRODUCTVERSION 1,7,0,0
54+
FILEVERSION 1,8,0,0
55+
PRODUCTVERSION 1,8,0,0
5656
FILEFLAGSMASK 0x17L
5757
#ifdef _DEBUG
5858
FILEFLAGS 0x1L
@@ -70,12 +70,12 @@ BEGIN
7070
VALUE "Comments", "http://numerics.mathdotnet.com/"
7171
VALUE "CompanyName", "Math.NET"
7272
VALUE "FileDescription", "MathNET Numerics MKL Native Provider"
73-
VALUE "FileVersion", "1.7.0.0"
73+
VALUE "FileVersion", "1.8.0.0"
7474
VALUE "InternalName", "Math.NET"
7575
VALUE "LegalCopyright", "Copyright (C) Math.NET 2009-2015"
7676
VALUE "OriginalFilename", "MathNet.Numerics.MKL"
7777
VALUE "ProductName", "Math.NET Numerics"
78-
VALUE "ProductVersion", "1.7.0.0"
78+
VALUE "ProductVersion", "1.8.0.0"
7979
END
8080
END
8181
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)