(self)
| 347 | assert_equal(out.dtype, tgt.dtype) |
| 348 | |
| 349 | def test_trace(self): |
| 350 | c = [[1, 2], [3, 4], [5, 6]] |
| 351 | assert_equal(np.trace(c), 5) |
| 352 | |
| 353 | def test_transpose(self): |
| 354 | arr = [[1, 2], [3, 4], [5, 6]] |
nothing calls this directly
no test coverage detected