File: utils_test.py

package info (click to toggle)
dask.distributed 2024.12.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,588 kB
  • sloc: python: 96,954; javascript: 1,549; sh: 390; makefile: 220
file content (28 lines) | stat: -rw-r--r-- 795 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from __future__ import annotations

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    import numpy


def get_host_array(a: numpy.ndarray) -> numpy.ndarray | bytes | bytearray:
    """Given a numpy array, find the underlying memory allocated by either
    distributed.protocol.utils.host_array or internally by numpy
    """
    import numpy

    assert isinstance(a, numpy.ndarray)
    o: object = a
    while True:
        if isinstance(o, memoryview):
            o = o.obj
        elif isinstance(o, numpy.ndarray):
            if o.base is not None:
                o = o.base
            else:
                return o
        elif isinstance(o, (bytes, bytearray)):
            return o
        else:  # pragma: nocover
            raise TypeError(f"Unexpected numpy buffer: {o!r}")