Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ray / purelib / ray / experimental / array / distributed / __init__.py
Size: Mime:
from . import linalg, random
from .core import (
    BLOCK_SIZE,
    DistArray,
    add,
    assemble,
    blockwise_dot,
    copy,
    dot,
    eye,
    numpy_to_dist,
    ones,
    subblocks,
    subtract,
    transpose,
    tril,
    triu,
    zeros,
)

__all__ = [
    "random",
    "linalg",
    "BLOCK_SIZE",
    "DistArray",
    "assemble",
    "zeros",
    "ones",
    "copy",
    "eye",
    "triu",
    "tril",
    "blockwise_dot",
    "dot",
    "transpose",
    "add",
    "subtract",
    "numpy_to_dist",
    "subblocks",
]