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

Function test_mul_64_64

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

Source from the content-addressed store, hash-verified

106
107
108def test_mul_64_64():
109 with exc_iter(INT64_VALUES, INT64_VALUES) as it:
110 for a, b in it:
111 c = a * b
112 d = mt.extint_mul_64_64(a, b)
113 if c != d:
114 assert_equal(d, c)
115
116
117def test_add_128():

Callers

nothing calls this directly

Calls 2

assert_equalFunction · 0.90
exc_iterFunction · 0.85

Tested by

no test coverage detected