Searched defs:estimator (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/gles2/performance/
H A Des2pShaderOperatorTests.cpp423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
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...]
/external/deqp/modules/gles3/performance/
H A Des3pShaderOperatorTests.cpp423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
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...]

Completed in 437 milliseconds