4

I would like to add a new Op to TensorFlow. I find that most Ops in TF are implemented using the tensor operations implemented in ``third_party/eigen3/unsupported/Eigen/CXX11/Tensor'', which seems to be independent of the original Eigen library. Are there any documents for the new Eigen/CXX11 library?

bgshi
  • 1,174
  • 2
  • 12
  • 14

1 Answers1

15

This README describes how to use the Eigen Tensor module. For an overview, you can also refer to this wiki page

Benoit Steiner
  • 1,484
  • 11
  • 11
  • Exactly what I need. Thanks! – bgshi Jun 02 '16 at 14:06
  • 1
    This link always points to the newest/current version of the [READMEs](https://bitbucket.org/eigen/eigen/src/default/unsupported/Eigen/CXX11/src/Tensor/README.md) default branch. (The original link points to an old version) – Max Sep 11 '17 at 13:05