-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a naive implementation of various primitive tensor operations
- Loading branch information
1 parent
e1453f5
commit f3de9d0
Showing
21 changed files
with
521 additions
and
23,359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 14 additions & 16 deletions
30
src/libraries/System.Numerics.Tensors/src/System.Numerics.Tensors.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>$(NetCoreAppCurrent);$(NetCoreAppPrevious);$(NetCoreAppMinimum);netstandard2.0;$(NetFrameworkMinimum)</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;$(NetFrameworkMinimum);$(NetCoreAppCurrent);</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<!-- Public API not fully documented. --> | ||
<NoWarn>$(NoWarn);1591</NoWarn> | ||
<IsPackable>true</IsPackable> | ||
<PackageDescription>Tensor class which represents and extends multi-dimensional arrays. | ||
|
||
Commonly Used Types: | ||
System.Numerics.Tensors.Tensor<T> | ||
System.Numerics.Tensors.CompressedSparseTensor<T> | ||
System.Numerics.Tensors.DenseTensor<T> | ||
System.Numerics.Tensors.SparseTensor<T></PackageDescription> | ||
<PackageDescription>Provides support for operating over tensors.</PackageDescription> | ||
<!-- Disabling baseline validation since this is a brand new package. | ||
Once this package has shipped a stable version, the following line | ||
should be removed in order to re-enable validation. --> | ||
<DisablePackageBaselineValidation>true</DisablePackageBaselineValidation> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="Properties\InternalsVisibleTo.cs" /> | ||
<Compile Include="System\Numerics\Tensors\ArrayTensorExtensions.cs" /> | ||
<Compile Include="System\Numerics\Tensors\ArrayUtilities.cs" /> | ||
<Compile Include="System\Numerics\Tensors\CompressedSparseTensor.cs" /> | ||
<Compile Include="System\Numerics\Tensors\DenseTensor.cs" /> | ||
<Compile Include="System\Numerics\Tensors\SparseTensor.cs" /> | ||
<Compile Include="System\Numerics\Tensors\Tensor.cs" /> | ||
<Compile Include="System\Numerics\Tensors\TensorPrimitives.cs" /> | ||
<Compile Include="System\ThrowHelper.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'"> | ||
<PackageReference Include="System.Memory" Version="$(SystemMemoryVersion)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'"> | ||
<ProjectReference Include="$(LibrariesProjectRoot)Microsoft.Bcl.Numerics\ref\Microsoft.Bcl.Numerics.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.