HomeSort by relevance Sort by last modified time
    Searched refs:VectorizedSize (Results 1 - 3 of 3) sorted by null

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorExecutor.h 71 const Index VectorizedSize = (size / PacketSize) * PacketSize;
72 for (Index i = UnrolledSize; i < VectorizedSize; i += PacketSize) {
75 for (Index i = VectorizedSize; i < size; ++i) {
TensorReduction.h 170 const typename Self::Index VectorizedSize = (numValuesToReduce / packetSize) * packetSize;
172 for (typename Self::Index j = 0; j < VectorizedSize; j += packetSize) {
176 for (typename Self::Index j = VectorizedSize; j < numValuesToReduce; ++j) {
    [all...]
  /external/eigen/Eigen/src/Core/
Redux.h 315 VectorizedSize = (Size / PacketSize) * PacketSize
320 if (VectorizedSize > 0) {
322 if (VectorizedSize != Size)
323 res = func(res,redux_novec_unroller<Func, Derived, VectorizedSize, Size-VectorizedSize>::run(mat,func));

Completed in 80 milliseconds