Content deleted Content added
Rescuing 2 sources and tagging 0 as dead. #IABot (v1.2.5) |
|||
Line 97:
inserting the appropriate code to forward the output of one processor to the next processor.
Recent research focuses on using the power of GPU's<ref>J Anantpur, R Govindarajan, Runtime dependence computation and execution of loops on heterogeneous systems
The memory accessed (whether direct or indirect) can be simply marked for different iterations of a loop and can be compared for dependency detection. Using this information, the iterations are grouped into levels such that iterations belonging to the same level are independent of each other, and can be executed in parallel.
==Difficulties==
Automatic parallelization by compilers or tools is very difficult due to the following reasons:<ref>{{cite web
* dependence analysis is hard for code that uses indirect addressing, pointers, recursion, or indirect function calls because it is difficult to detect such dependencies at compile time;
* loops have an unknown number of iterations;
|