-
Suppose I have two sparse matrices:
```
G of type BCOO(float64[200, 80], nse=129)
H of type BCOO(float64[80, 200], nse=129)
```
If I do `G @ H`, I get
```
DynamicJaxprTracer[BCOO(float64[80, 80…
-
When I try to perform a matrix multiplication with 2500 rows and 1 column and 1 row and 4000 columns, the compilation reports an error.
![image](https://github.com/user-attachments/assets/3eea8fe9-2b…
-
Amazing launch ZML team!
We run an open-source matmul library **[ffGEMM (finite field gemm)](https://github.com/Fileforma/ffGEMM/)** for fast CPU gemm.
Please update your contributing.md file s…
-
I would like to create a program in C++ for matrix multiplication as my first open source contribution. Please assign this issue to me.
Rohan Saini
-
```
julia> using MatricesForHomalg
julia> Q = HomalgFieldOfRationals();
julia> M = HomalgIdentityMatrix(200, Q);
julia> @time M * M;
14.694862 seconds (224.14 M allocations: 4.652 GiB, 32.…
-
Hi,
Any chance to add `matmat()` for sparse matrices?
It is implemented by [`oneapi::mkl::sparse::matmat`](https://www.intel.com/content/www/us/en/docs/onemkl/developer-reference-dpcpp/2024-2/onea…
-
Hi, thanks for your packages for the mkl python interface. It's quite useful.
However we encounter some unexpected results when performing sparse-sparse matrix multiplication.
It sometimes leads to …
-
### Aim
I am trying to implement 128x128 matrix multiplication, but I've had to modify it to be flattened due to Noir not supporting multi-dimensional arrays. My code works on smaller inputs, but onc…
-
## Description:
Create unit tests for the matrix-vector multiplication (matvec) method of the COO (Coordinate List) matrix class. The COO format stores matrix elements as triplets of row, column, and…
-
https://stackoverflow.com/questions/16798888/2-d-convolution-as-a-matrix-matrix-multiplication
https://pytorch.org/docs/stable/generated/torch.nn.Conv2d.html