База ответов ИНТУИТ

Introduction to performance optimization using Intel SW tools

<<- Назад к вопросам

Loop invariant code motion

(Отметьте один правильный вариант ответа.)

Варианты ответа
finding and moving outside the loop expressions independent from loop iteration variables(Верный ответ)
moves loop invariants to another loop
none of the answers
finding and deleting expressions independent from iteration variables
Похожие вопросы
What is loop invariant?
Why performance is improved when invariant is moved out of the loop?
Choose the code resulting to the loop peeling for:
p = 10; for (i=0; i<10; ++i) {     y[i] = x[i] + x[p];   p = i;} 
What is loop unrolling for?
What is loop peeling?
Loop optimizations are:
Loop vectorization is
How loop unrolling is provided?
What is the Loop Stream Detector for?
What is required for most of the loop optimizations