(self, arr1, arr2)
| 353 | assert self.has_shared_memory() |
| 354 | |
| 355 | def arr_equal(self, arr1, arr2): |
| 356 | if arr1.shape != arr2.shape: |
| 357 | return False |
| 358 | return (arr1 == arr2).all() |
| 359 | |
| 360 | def __str__(self): |
| 361 | return str(self.arr) |
no test coverage detected