Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Threshold

64 static BlockFrequency Threshold;
67 /// Decision threshold. A node gets the output value 0 if the weighted sum of
68 /// its inputs falls in the open interval (-Threshold;Threshold).
69 static BlockFrequency getThreshold() { return Threshold; }
71 /// \brief Set the threshold for a given entry frequency.
73 /// Set the threshold relative to \c Entry. Since the threshold is used as a
74 /// bound on the open interval (-Threshold;Threshold), 1 is the minimum
75 /// threshold.
77 // Apparently 2 is a good threshold when Entry==2^14, but we need to scale
81 Threshold = std::max(UINT64_C(1), Scaled);
110 /// SumLinkWeights - Cached sum of the weights of all links + ThresHold.
123 // true when the RHS saturates. Note that SumLinkWeights includes Threshold.