3 Matching Annotations
  1. Jun 2022
    1. Loop unrolling can improve performance in two ways. First,it reduces the number of operations that do not contribute directly to the programresult, such as loop indexing and conditional branching. Second, it exposes waysin which we can further transform the code to reduce the number of operationsin the critical paths of the overall computation.

      loop unrolling 为什么可以提高 performance?