eigen/unsupported/Eigen/CXX11
Benoit Steiner 14f537c296 gcc doesn't consider that
template<typename OtherDerived> TensorStridingOp& operator = (const OtherDerived& other)
provides a valid assignment operator for the striding operation, and therefore refuses to compile code like:
result.stride(foo) = source.stride(bar);

Added the explicit
   TensorStridingOp& operator = (const TensorStridingOp& other)

as a workaround to get the code to compile, and did the same in all the operations that can be used as lvalues.
2015-01-16 09:09:23 -08:00
..
src gcc doesn't consider that 2015-01-16 09:09:23 -08:00
Core Created some benchmarks for the tensor code 2014-10-17 09:49:03 -07:00
Tensor Updated the list of include files 2015-01-14 15:43:38 -08:00
TensorSymmetry Fix compilation for CXX11/Tensor module if unsupported is not in include path 2014-06-04 18:31:02 +02:00