ha-ndarray 0.5.0

A hardware-accelerated n-dimensional array
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM rust:1-bookworm

# Install build and OpenCL headers (compile-time), BLAS/LAPACK, git, curl
RUN apt-get update \
    && apt-get install -y --no-install-recommends \
        build-essential \
        pkg-config \
        git \
        curl \
        ocl-icd-opencl-dev \
        clinfo \
        libblas-dev \
        liblapack-dev \
    && rm -rf /var/lib/apt/lists/*

# Set a default workdir used by Dev Containers / Codespaces
WORKDIR /workspaces/ha-ndarray