Instruction Unrolling
Last updated
Unrolling involves replacing a composite instruction with its sequence of atomic instructions. For example:
A composite instruction I_composite is expanded into atomic instructions {I_atomic_1, I_atomic_2, ..., I_atomic_k}.
This process ensures tasks are executed efficiently by dynamically adjusting their granularity.
Last updated