(self, load_async)
| 3030 | @pytest.mark.asyncio |
| 3031 | @pytest.mark.parametrize("load_async", [True, False]) |
| 3032 | async def test_MemoryCachedArray(self, load_async): |
| 3033 | v = Variable(dims=("x", "y"), data=MemoryCachedArray(self.d)) |
| 3034 | await self.check_orthogonal_indexing(v, load_async) |
| 3035 | await self.check_vectorized_indexing(v, load_async) |
| 3036 | # doubly wrapping |
| 3037 | v = Variable(dims=("x", "y"), data=CopyOnWriteArray(MemoryCachedArray(self.d))) # type: ignore[arg-type] |
| 3038 | await self.check_orthogonal_indexing(v, load_async) |
| 3039 | await self.check_vectorized_indexing(v, load_async) |
| 3040 | |
| 3041 | @requires_dask |
| 3042 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected