Description
Force specific loops to remain unrolled, similar to HLSL's [loop].
Context
I am developing iterative algorithms that typically require over 20 iterations, a number determined empirically and not intended for dynamic configuration. However, since this iteration count is treated as a compile-time constant, the loops are fully unrolled by the compiler. This results in excessive code expansion and significantly prolonged compilation times.