Lines Matching refs:evaluation
5 Executive summary: Eigen has intelligent compile-time mechanisms to enable lazy evaluation and remo…
21 …evaluation</i> as an expression is getting evaluated as late as possible, instead of immediately. …
23 …nt compile-time mechanisms to determine automatically when to use lazy evaluation, and when on the…
29 …chooses lazy evaluation. Thus the arrays are traversed only once, producing optimized code. If you…
37 Eigen chooses lazy evaluation at every stage in that example, which is clearly the correct choice. …
39 <b>The first circumstance</b> in which Eigen chooses immediate evaluation, is when it sees an assig…
43 … \c matrix. This guarantees a correct result as we saw above that lazy evaluation gives wrong resu…
45 …result does no alias the operand of the product and want to force lazy evaluation? Then use \link …
49 …the same matrix as matrix1, we know that lazy evaluation is not dangerous, so we may force lazy ev…
51 <b>The second circumstance</b> in which Eigen chooses immediate evaluation, is when it sees a neste…
57 <b>The third circumstance</b> in which Eigen chooses immediate evaluation, is when its cost model s…