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 134 taco issues
Sort by recently updated
recently updated
newest added

Change the initial state of the reduction symbol for the "none" relation.

Hi, I've tried to clone and build taco from the master branch (last commit is 2b8ece4c230a5f0f0a74bc6f48e28edfb6c1c95e alias "Merge pull request #526 from zhang677/test-target") and get this compilation error. Is this...

This change allows other projects to import taco as subdirectory. Without this change, as CMAKE_BINARY_DIR points to parent project's build directory, build errors with "unable to open version.h".

Building on macOS 10.6 with `gcc12`, I get this error: ``` /opt/local/var/macports/build/_opt_PPCRosettaPorts_math_taco/taco/work/taco-2b8ece4c230a5f0f0a74bc6f48e28edfb6c1c95e/test/tests-tensor_types.cpp: In instantiation of 'void gtest_case_VectorTensorTest_::types::TestBody() [with gtest_TypeParam_ = short int]': /opt/local/var/macports/build/_opt_PPCRosettaPorts_math_taco/taco/work/taco-2b8ece4c230a5f0f0a74bc6f48e28edfb6c1c95e/test/tests-tensor_types.cpp:42:1: required from here /opt/local/var/macports/build/_opt_PPCRosettaPorts_math_taco/taco/work/taco-2b8ece4c230a5f0f0a74bc6f48e28edfb6c1c95e/test/tests-tensor_types.cpp:48:30: error: narrowing conversion...

Is it possible to generate code for convolution operations? For example, for convolution with stride s, the tensor algebra expression O(m,h,w) = F(m,k,i,j) * I(k, h*s + i, w*s +...

I tried using the online tool http://tensor-compiler.org/codegen.html with the default example. After waiting about 30 seconds I get "Unable to connect to the taco online server"

Hello, I am running into a slightly strange issue when trying to generate and run the kernel for tensor times vector. Here is the code I am using ``` #include...

Hi all, I'm a beginer in TACO , and I am trying to use it to compile some stencil caculations.However,I didn't find a way to declare the extent and other...

Hi, I ran into a memory leak when using `pytaco` (I am using commit [`2b8ece4c230a5f0f0a74bc6f48e28edfb6c1c95e`](https://github.com/tensor-compiler/taco/tree/2b8ece4c230a5f0f0a74bc6f48e28edfb6c1c95e), the current `master` at the time of writing). The following script demonstrates the memory leak....