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

Method test_identityless_reduction_forder

numpy/core/tests/test_ufunc.py:1636–1638  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1634 self.check_identityless_reduction(a)
1635
1636 def test_identityless_reduction_forder(self):
1637 a = np.empty((2, 3, 4), order='F')
1638 self.check_identityless_reduction(a)
1639
1640 def test_identityless_reduction_otherorder(self):
1641 a = np.empty((2, 4, 3), order='C').swapaxes(1, 2)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected