HomeSort by relevance Sort by last modified time
    Searched refs:ulpDiff (Results 1 - 7 of 7) sorted by null

  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 134 inline float getEpsFromMaxUlpDiff (float value, deUint32 ulpDiff)
137 return tcu::Float32::construct(+1, exp, (1u<<23) | ulpDiff).asFloat() - tcu::Float32::construct(+1, exp, 1u<<23).asFloat();
750 const deUint32 ulpDiff = hasSignedZero ? getUlpDiff(out0, ref) : getUlpDiffIgnoreZeroSign(out0, ref);
752 if (ulpDiff > 0)
754 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref) << ", got ULP diff " << tcu::toHex(ulpDiff);
775 const deUint32 ulpDiff = getUlpDiffIgnoreZeroSign(out0, float(roundedVal));
777 if (ulpDiff <= maxUlpDiff)
848 const deUint32 ulpDiff = hasZeroSign ? getUlpDiff(resSum, in0) : getUlpDiffIgnoreZeroSign(resSum, in0);
850 if (ulpDiff > maxUlpDiff)
853 << tcu::toHex(maxUlpDiff) << ", got ULP diff " << tcu::toHex(ulpDiff);
    [all...]
  /external/catch2/include/internal/
catch_matchers_floating.cpp 73 auto ulpDiff = std::abs(lc.i - rc.i);
74 return ulpDiff <= maxUlpDiff;
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 130 inline float getEpsFromMaxUlpDiff (float value, deUint32 ulpDiff)
133 return tcu::Float32::construct(+1, exp, (1u<<23) | ulpDiff).asFloat() - tcu::Float32::construct(+1, exp, 1u<<23).asFloat();
672 const deUint32 ulpDiff = hasSignedZero ? getUlpDiff(out0, ref) : getUlpDiffIgnoreZeroSign(out0, ref);
674 if (ulpDiff > 0)
676 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref) << ", got ULP diff " << tcu::toHex(ulpDiff);
697 const deUint32 ulpDiff = getUlpDiffIgnoreZeroSign(out0, float(roundedVal));
699 if (ulpDiff <= maxUlpDiff)
770 const deUint32 ulpDiff = hasZeroSign ? getUlpDiff(resSum, in0) : getUlpDiffIgnoreZeroSign(resSum, in0);
772 if (ulpDiff > maxUlpDiff)
775 << tcu::toHex(maxUlpDiff) << ", got ULP diff " << tcu::toHex(ulpDiff);
    [all...]
es3fShaderPrecisionTests.cpp 315 const deUint64 ulpDiff = (deUint64)de::abs((deInt64)accurateRefBits - (deInt64)accurateResBits);
317 if (ulpDiff > (deUint64)roundingUlpError)
319 m_testCtx.getLog() << TestLog::Message << "ERROR: comparison failed! ULP diff (ignoring lost/undefined bits) = " << ulpDiff << TestLog::EndMessage;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderCommonFunctionTests.cpp 138 inline float getEpsFromMaxUlpDiff (float value, deUint32 ulpDiff)
141 return tcu::Float32::construct(+1, exp, (1u<<23) | ulpDiff).asFloat() - tcu::Float32::construct(+1, exp, 1u<<23).asFloat();
853 const deUint32 ulpDiff = hasSignedZero ? getUlpDiff(out0, ref) : getUlpDiffIgnoreZeroSign(out0, ref);
855 if (ulpDiff > 0)
857 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref) << ", got ULP diff " << tcu::toHex(ulpDiff);
878 const deUint32 ulpDiff = getUlpDiffIgnoreZeroSign(out0, float(roundedVal));
880 if (ulpDiff <= maxUlpDiff)
964 const deUint32 ulpDiff = hasZeroSign ? getUlpDiff(resSum, in0) : getUlpDiffIgnoreZeroSign(resSum, in0);
966 if (ulpDiff > maxUlpDiff)
969 << tcu::toHex(maxUlpDiff) << ", got ULP diff " << tcu::toHex(ulpDiff);
    [all...]
  /external/deqp/modules/internal/
ditFrameworkTests.cpp 574 inline deUint32 ulpDiff (float a, float b)
582 inline tcu::Vector<deUint32, Size> ulpDiff (const tcu::Vector<float, Size>& a, const tcu::Vector<float, Size>& b)
586 res[ndx] = ulpDiff(a[ndx], b[ndx]);
825 const UVec4 colorDiff = ulpDiff(color, subCase.varying);
829 const deUint32 depthDiff = ulpDiff(depth, refDepth);
  /external/catch2/single_include/catch2/
catch.hpp     [all...]

Completed in 644 milliseconds