SciSharp / NumSharp

High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
https://github.com/SciSharp
Apache License 2.0
1.34k stars 188 forks source link

How can provide output for np.dot? #445

Open bigdimboom opened 3 years ago

bigdimboom commented 3 years ago

I can't find the impl. of np.dot(inputA, inutB, out preallocatedArray).

Currently I am using np.dot(.....).copyTo(....). But I think it still allocates a tmp memory.