What is the relation between tensorflow and Eigen, particularly regarding the tensor
datastructures?
There are some older quotations (e.g. here) which state that tensorflow is using Eigen extensively (afaik a tensorflow guy has extended the Eigen code). More recent tensorflow documentation, however, seems to not explicitly refer to Eigen.
Are the two tensor
structures identical? Are they being updated concurrently? Is there any (possibly future) disadvantage in using the Eigen::tensor
over the tensorflow::tensor
?