taco icon indicating copy to clipboard operation
taco copied to clipboard

The Tensor Algebra Compiler (taco) computes sparse tensor expressions on CPUs and GPUs

Results 140 taco issues
Sort by recently updated
recently updated
newest added

I'm trying to benchmark PyTaco in various scenarios, and it would be most helpful to have viable PyPI releases per gh-525. For example, when trying to compile from source on...

Hi, I want to transpose a sparse matrix of CSR format, where the result's format is CSC. Here is the code snippet I wrote in cpp. ```cpp int n =...

hi, i was playing around with the precompute scheduling command, but for this example http://tensor-compiler.org/codegen.html?expr=q(i,%20j)%20=%20A(i,%20j)%20*%20B(i)&format=q:ss:0,1;A:ss:0,1;B:s:0&sched=precompute:A(i,%20j)%20*%20B(i):i:i the comput function uses an `iworkspace` variable which is not defined anywhere. Is there a...

Hello, I wonder whether TACO can support expressions like `y[i] = A[i, j] * (x[j] - x[i]) ** 2`. Thanks!

- fix deprecation errors with new cmake versions regarding how CUDA is loaded (by upgrading cmake and the associated CUDA configuration) - fix several minor compiler errors and warnings appearing...

The Ubuntu 18.04 runners were discontinued by github.

Hi there, I am new to taco, but it has been amazingly easy to use so far. I am wondering if there is support for Kronecker product of matrices. e.g....

Hi, I want to compute the column summation of a sparse matrix in CSR format. Here is the code snippet I wrote in cpp. ````cpp int I = 5, J...

Hi team, I'm running some benchmarks for a sparse matrix - matrix implementation of mine, and comparing everything against Eigen CSR (that' the baseline). I'm getting this results for TACO...

For the expression - `y(i) = A(i,j) * x(j) + z(i)`, the documentation suggests z(i) is added exactly one for each `i` outside the `j` loop. This is consistent with...