Predication (branch predication)

In computer science, predication is a technique for optimizing code performance by reducing the number of branches that are executed. Predication can be used to improve the performance of code that contains conditional branches, by reducing the number of times the branch is executed. For example, if a conditional branch is only taken 50% of … Read more