MCPcopy Create free account
hub / github.com/apache/arrow / WithinUlp

Function WithinUlp

cpp/src/arrow/util/ulp_distance.cc:93–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91} // namespace
92
93bool WithinUlp(util::Float16 left, util::Float16 right, int32_t n_ulps) {
94 return WithinUlpGeneric(left, right, n_ulps);
95}
96
97bool WithinUlp(float left, float right, int32_t n_ulps) {
98 return WithinUlpGeneric(left, right, n_ulps);

Callers 5

operator()Method · 0.85
operator()Method · 0.85
WithinUlpGenericFunction · 0.85
CheckWithinUlpSingleFunction · 0.85
CheckNotWithinUlpSingleFunction · 0.85

Calls 1

WithinUlpGenericFunction · 0.70

Tested by 2

CheckWithinUlpSingleFunction · 0.68
CheckNotWithinUlpSingleFunction · 0.68