MCPcopy Create free account
hub / github.com/numpy/numpy / test_gt_128

Function test_gt_128

numpy/core/tests/test_extint128.py:174–180  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

172
173
174def test_gt_128():
175 with exc_iter(INT128_VALUES, INT128_VALUES) as it:
176 for a, b in it:
177 c = a > b
178 d = mt.extint_gt_128(a, b)
179 if c != d:
180 assert_equal(d, c)
181
182
183@pytest.mark.slow

Callers

nothing calls this directly

Calls 2

assert_equalFunction · 0.90
exc_iterFunction · 0.85

Tested by

no test coverage detected