ATen icon indicating copy to clipboard operation
ATen copied to clipboard

ATen: A TENsor library for C++11

Results 68 ATen issues
Sort by recently updated
recently updated
newest added

Semantics are similar to `const TensorImpl&`. Motivation: * It avoids passing `const Tensor&` which is technically a pointer to a pointer to the actual tensor * You can do const-correctness...

We recently had two bugs which broke OS X builds for downstream users. It would be great to setup OS X contbuild for ATen so we can catch these more...

ATen uses `{true, true, true}` for boolean array literals, but unfortunately, Clang has a bug https://bugs.llvm.org/show_bug.cgi?id=21689 which makes it spuriously claim that more braces are needed as warning. We should...

we need the cuda stream information for tensors to be used in c2isl. The only way to do this right now is via TH state.

An ATen build with default cmake arguments will be a debug build. I don't think we should default to this.

Apparently, it is possible to link libATen.so statically against TH and friends. This makes deploy easier in many situations, so it's good to mention how to actually do this.

Using the Conda build of ATen at https://anaconda.org/ezyang/aten it still requires some work to actually link against ATen. In the end, this incant was sufficient for me: ``` LD_LIBRARY_PATH=$CUDA_HOME/lib64:$CONDA_PREFIX/lib g++...

@killeent @colesbury @gchanan This issue is just to track the progress on advanced indexing plans in ATen. To summarize our discussion, the initial idea is to add 'low-level' support for...

Currently when you include `ATen/Tensor.h` in a compilation unit, you also need to include `ATen/TensorMethods.h`. This is handled by including `ATen/ATen.h`, but since we do no checks about what clients...