Home
last modified time | relevance | path

Searched refs:UnrolledSize (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp736 uint64_t UnrolledSize; in computeUnrollCount() local
756 UnrolledSize = (uint64_t)(LoopSize - BEInsns) * TripCount + BEInsns; in computeUnrollCount()
758 UnrolledSize, UnrolledSize)) { in computeUnrollCount()
792 UnrolledSize = (uint64_t)(LoopSize - BEInsns) * UP.Count + BEInsns; in computeUnrollCount()
793 if (UnrolledSize > UP.PartialThreshold) in computeUnrollCount()
806 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns; in computeUnrollCount()
807 while (UP.Count != 0 && UnrolledSize > UP.PartialThreshold) { in computeUnrollCount()
809 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns; in computeUnrollCount()
855 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns; in computeUnrollCount()
859 while (UP.Count != 0 && UnrolledSize > UP.PartialThreshold) { in computeUnrollCount()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorExecutor.h65 const Index UnrolledSize = (size / (4 * PacketSize)) * 4 * PacketSize; variable
66 for (Index i = 0; i < UnrolledSize; i += 4*PacketSize) {
72 for (Index i = UnrolledSize; i < VectorizedSize; i += PacketSize) {