Skip to content

Commit 8567461

Browse files
committed
release v0.20-alpha1, works well with TensorFlow.NET
1 parent dce4850 commit 8567461

File tree

1 file changed

+32
-7
lines changed

1 file changed

+32
-7
lines changed

src/NumSharp.Core/NumSharp.Core.csproj

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,62 @@
1212
<Copyright>2019 © SciSharp STACK Team</Copyright>
1313
<RepositoryUrl>https://github.com/SciSharp/NumSharp</RepositoryUrl>
1414
<PackageReleaseNotes>Main changes since v0.10
15+
16+
17+
1518
- Rewrite n-d array storage.
19+
1620
- Performance improvements.
21+
1722
- All interfaces have are re-implemented.
23+
1824
- Revamped np.dot
25+
1926
- Revamped and optimized math operators algorithms
27+
2028
- Revamped np.shuffle
29+
2130
- Added np.mod and % operator between NDArrays
31+
2232
- Added NDArray.Unsafe which allows unmamanged access to the array's memory and other internal fields like access to UnmanagedStorage
33+
2334
- Added debug.assert for memory accessing methods in ArraySlice.
35+
2436
- Ported UnmanagedMemoryBlock and ArraySlice to use long.
37+
2538
- Reimplemented Fill and Slice methods of UnmanagedMemoryBlock`1 and ArraySlice`1 from coreclr source of Span&lt;T&gt;.
39+
2640
- Added BIT64 conditional compilation symbol.
41+
2742
- Significatly increased the performance of NDArray.SetData in a common case.
43+
2844
- Added NPTypeCode.GetDefaultValue
29-
- Perf-ops for NDArray's operator overloads
45+
46+
- Perf-ops for NDArray's operator overloads
47+
3048
- Added NDArray operators for boolean cases
31-
- Fixed over a dozen of bugs</PackageReleaseNotes>
32-
<AssemblyVersion>0.11.0.0</AssemblyVersion>
33-
<FileVersion>0.11.0.0</FileVersion>
49+
50+
- Fixed over a dozen of bugs
51+
</PackageReleaseNotes>
52+
<AssemblyVersion>0.20.0.0</AssemblyVersion>
53+
<FileVersion>0.20.0.0</FileVersion>
3454
<RepositoryType>git</RepositoryType>
3555
<PackageTags>NumPy, NumSharp, MachineLearning, Math, Scientific, Numeric</PackageTags>
36-
<PackageLicenseUrl>https://github.com/SciSharp/NumSharp/blob/master/LICENSE</PackageLicenseUrl>
56+
<PackageLicenseUrl></PackageLicenseUrl>
3757
<LangVersion>7.3</LangVersion>
3858
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
3959
<PackageId>NumSharp</PackageId>
4060
<Product>NumSharp</Product>
4161
<Company>SciSharp STACK</Company>
4262
<RootNamespace>NumSharp</RootNamespace>
43-
<Version>0.11.0-alpha3</Version>
63+
<Version>0.20.0-alpha1</Version>
4464
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
4565
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4666
<SignAssembly>false</SignAssembly>
4767
<AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
4868
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
4969
<Platforms>AnyCPU;x64</Platforms>
70+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
5071
</PropertyGroup>
5172

5273
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^net\d'))">
@@ -110,6 +131,10 @@
110131
<ItemGroup>
111132
<None Remove="NumSharp.Core.csproj.DotSettings" />
112133
<None Remove="Operations\NdArray.ElementsWise.tt" />
134+
<None Include="..\..\LICENSE">
135+
<Pack>True</Pack>
136+
<PackagePath></PackagePath>
137+
</None>
113138
</ItemGroup>
114139

115140
<Target Name="LogDebugInfo">
@@ -137,4 +162,4 @@
137162
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
138163
</ItemGroup>
139164

140-
</Project>
165+
</Project>

0 commit comments

Comments
 (0)