Banerjee test
This article includes a list of references, related reading or external links, but its sources remain unclear because it lacks inline citations. (January 2021) (Learn how and when to remove this template message) |
In compiler theory, the Banerjee test is a dependence test. The Banerjee test assumes that all loop indices are independent, however in reality, this is often not true. The Banerjee test is a conservative test. That is, it will not break a dependence that does not exist.
This means that the only thing the test can guarantee is the absence of a dependence.
Antidependence is broken | True dependence is broken | |
---|---|---|
True | There are no antidependencies |
There are no true dependencies |
False | There may or may not be antidependencies |
There may or may not be true dependencies |
General form
For a loop of the form:
for(i=0; i<n; i++) { c[f(i)] = a[i] + b[i]; /* statement s1 */ d[i] = c[g(i)] + e[i]; /* statement s2 */ }
A true dependence exists between statement s1 and statement s2 if and only if :
[math]\displaystyle{ \exists i, j \in \left [ 0 , n -1 \right] : i \le j ~~ \textrm{and} ~~ f \left ( i \right ) = g \left ( j \right ) \! }[/math]
An anti dependence exists between statement s1 and statement s2 if and only if :
[math]\displaystyle{ \exists i, j \in \left [ 0 , n -1 \right] : i \gt j ~~ \textrm{and} ~~ f \left ( i \right ) = g \left ( j \right ) \! }[/math]
For a loop of the form:
for(i=0; i<n; i++) { c[i] = a[g(i)] + b[i]; /* statement s1 */ a[f(i)] = d[i] + e[i]; /* statement s2 */ }
A true dependence exists between statement s1 and statement s2 if and only if :
[math]\displaystyle{ \exists i, j \in \left [ 0 , n -1 \right] : i \lt j ~~ \textrm{and} ~~ f \left ( i \right ) = g \left ( j \right ) \! }[/math]
Example
An example of Banerjee's test follows below.
The loop to be tested for dependence is:
for(i=0; i<10; i++) { c[i+9] = a[i] + b[i]; /*statement s1*/ d[i] = c[i] + e[i]; /*statement s2*/ }
Let
[math]\displaystyle{ \begin{array}{lcr} f(i) \ = \ i + 9 \\ g(j) \ = \ j + 0 . \end{array} }[/math]
So therefore,
[math]\displaystyle{ \begin{array}{lcr} a_{0} = 9 \ , \ a_{1} = 1, \\ b_{0} = 0 \ , \ b_{1} = 1. \\ \end{array} }[/math]
and [math]\displaystyle{ b_{0} - a_{0} = -9. }[/math]
Testing for antidependence
Then
[math]\displaystyle{ \begin{array}{lcr} U_{\max} \ = \ \max\left \{a_{1} \times i - b_{1} \times j \right\} ~~ \textrm{when} ~~ 0 \le j \lt i \lt n \\ L_{\min} \ = \ \min\left \{a_{1} \times i - b_{1} \times j \right\} ~~ \textrm{when} ~~ 0 \le j \lt i \lt n, \\ \end{array} }[/math]
which gives
[math]\displaystyle{ \begin{array}{lcr} U_{\max} \ = \ 9 - 0 = 9 \\ L_{\min} \ = \ 1 - 0 = 1. \\ \end{array} }[/math]
Now, the bounds on [math]\displaystyle{ b_{0} - a_{0} }[/math] are [math]\displaystyle{ 1 \le -9 \le 9. }[/math]
Clearly, -9 is not inside the bounds, so the antidependence is broken.
Testing for true dependence
[math]\displaystyle{ \begin{array}{lcr} U_{max} \ = \ \max\left\{a_{1} \times i - b_{1} \times j \right\} ~~ \textrm{when} ~~ \le i \le j \lt n \\ L_{min} \ = \ \min\left\{a_{1} \times i - b_{1} \times j \right\} ~~ \textrm{when} ~~ \le i \le j \lt n. \\ \end{array} }[/math]
Which gives:
[math]\displaystyle{ \begin{array}{lcr} U_{max} \ = \ 9 - 9 = 0 \\ L_{min} \ = \ 0 - 9 = -9. \\ \end{array} }[/math]
Now, the bounds on [math]\displaystyle{ b_{0} - a_{0} }[/math] are [math]\displaystyle{ -9 \le -9 \le 0. }[/math]
Clearly, -9 is inside the bounds, so the true dependence is not broken.
Conclusion
Because the antidependence was broken, we can assert that anti dependence does not exist between the statements.
Because the true dependence was not broken, we do not know if a true dependence exists between the statements.
Therefore, the loop is parallelisable, but the statements must be executed in order of their (potential) true dependence.
See also
References
- Randy Allen and Ken Kennedy. Optimizing Compilers for Modern Architectures: A Dependence-based Approach
- Lastovetsky, Alex. Parallel Computing on Heterogenous Networks
Original source: https://en.wikipedia.org/wiki/Banerjee test.
Read more |