reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
765 if (Vector && IslAstInfo::isInnermostParallel(For) && 766 !IslAstInfo::isReductionParallel(For)) { 767 int VectorWidth = getNumberOfIterations(isl::manage_copy(For)); 768 if (1 < VectorWidth && VectorWidth <= 16 && !hasPartialAccesses(For)) { 769 createForVector(For, VectorWidth); 774 if (IslAstInfo::isExecutedInParallel(For)) { 775 createForParallel(For); 779 (IslAstInfo::isParallel(For) && !IslAstInfo::isReductionParallel(For)); 779 (IslAstInfo::isParallel(For) && !IslAstInfo::isReductionParallel(For)); 780 createForSequential(isl::manage(For), Parallel);