Searched refs:estimator (Results 1 - 3 of 3) sorted by relevance
/third_party/vk-gl-cts/modules/gles3/performance/ |
H A D | es3pShaderOperatorTests.cpp | 423 const gls::LineParameters estimator = simpleLinearRegression(data); in simpleLinearRegressionError() local 428 const float estY = estimator.offset + estimator.coefficient*data[i].x(); in simpleLinearRegressionError() 950 const SegmentedEstimator& estimator = estimators[progNdx]; 985 log << TestLog::Float("Program" + progNdxStr + "WorkloadCostEstimate", "Workload cost estimate", "us / workload", QP_KEY_TAG_TIME, estimator.right.coefficient); 987 if (estimator.pivotX > -std::numeric_limits<float>::infinity()) 988 log << TestLog::Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX 990 << TestLog::Message << "Note: the left line is estimated to be " << lineParamsString(estimator.left) 991 << " and the right line " << lineParamsString(estimator.right) << TestLog::EndMessage; 993 log << TestLog::Message << "Note: the data seem to form a single line: " << lineParamsString(estimator [all...] |
/third_party/vk-gl-cts/modules/gles2/performance/ |
H A D | es2pShaderOperatorTests.cpp | 423 const gls::LineParameters estimator = simpleLinearRegression(data); in simpleLinearRegressionError() local 428 const float estY = estimator.offset + estimator.coefficient*data[i].x(); in simpleLinearRegressionError() 950 const SegmentedEstimator& estimator = estimators[progNdx]; 985 log << TestLog::Float("Program" + progNdxStr + "WorkloadCostEstimate", "Workload cost estimate", "us / workload", QP_KEY_TAG_TIME, estimator.right.coefficient); 987 if (estimator.pivotX > -std::numeric_limits<float>::infinity()) 988 log << TestLog::Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX 990 << TestLog::Message << "Note: the left line is estimated to be " << lineParamsString(estimator.left) 991 << " and the right line " << lineParamsString(estimator.right) << TestLog::EndMessage; 993 log << TestLog::Message << "Note: the data seem to form a single line: " << lineParamsString(estimator [all...] |
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 6999 sample resample(URng& rng, int resamples, Iterator first, Iterator last, Estimator& estimator) { 7005 std::generate_n(std::back_inserter(out), resamples, [n, first, &estimator, &dist, &rng] { 7009 return estimator(resampled.begin(), resampled.end()); 7016 sample jackknife(Estimator&& estimator, Iterator first, Iterator last) { 7024 results.push_back(estimator(second, last)); 7039 Estimate<double> bootstrap(double confidence_level, Iterator first, Iterator last, sample const& resample, Estimator&& estimator) { 7042 double point = estimator(first, last); 7046 sample jack = jackknife(estimator, first, last);
|
Completed in 19 milliseconds