MKL.NET
MKL.NET copied to clipboard
A simple cross platform .NET API for Intel MKL
Hi, First of all thanks for this library, it's really helpful to have the P/Invoke definitions available like this. I wanted to ask whether it is possible to provide the...
Make the matrix operation work over more matrix shapes: https://numpy.org/doc/stable/user/basics.broadcasting.html Stride was added to MKL to do this: https://software.intel.com/content/www/us/en/develop/articles/new-mkl-vml-api.html Also things like Matrix.Max(M, 0.0)
Spline
Would it be possible to access to Spline1D in the future ?
How to do matrix A x matrix B? Is there a demo?
In the current implementation of MKL.NET a descriptor is created for every DFT. If you need to run similar DFTs with only different data this results in a not needed...
Encountering errors with matrix multiplication using MKL.NET.Matrix Nuget package in a docker container Dockerfile ``` FROM mcr.microsoft.com/dotnet/sdk:6.0-windowsservercore-ltsc2022 WORKDIR c:/test/ COPY test.csproj test.cs ./ RUN dotnet build RUN dotnet test ```...