Options that shape the loop: its step, its alignment, what it fuses, how it searches.
Contents | |
| allow_frequency_scaling | |
| Lets an algorithm use the widest registers, despite frequency scaling. | |
| expensive_callable | |
| States that the operation dominates the loop. | |
| fuse_operations | |
| Lets an algorithm run its operations as one. | |
| no_aligning | |
| Stops an algorithm from aligning its accesses. | |
| no_unrolling | |
| Disables loop unrolling. | |
| single_pass | |
| Tracks the index as the loop runs rather than searching afterwards. | |
| unroll | |
| Defines the number of computations an algorithm handles per loop step. | |