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

Introduction to performance optimization using Intel SW tools

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

How data dependencies are used in the code generation?

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

Варианты ответа
to determine the register reuse abillity(Верный ответ)
to take interference functions to the separate graph
to create missing parts of the code
to find a code didn't match the representative data array
Похожие вопросы
What is critical code?
"Dead code" may be caused by
Is there any dependence in this code?
DO I=1,N  S1 A(I)=…  S2 …=A(I)END DO
Is there any dependence in this code?
DO I=1,N  S1 A(I+1) =F(I)  S2 F(I+1) = A(I)END DO
Loop invariant code motion
What benefits would give correct code formatting?
Choose code fragments which are good for optimizing
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;} 
Choose the correct statements for the code:
DO I=1,N  S1 A(I) = B(I) + 1   S2 B(I+1) = A(I) – 5END DO
What directive is used to mark a piece of code to be executed by master thread only?