218fe975b3
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{
|
|
_cuda,
|
|
buildRedist,
|
|
libcublas,
|
|
libnvshmem,
|
|
nccl,
|
|
}:
|
|
buildRedist {
|
|
redistName = "cublasmp";
|
|
pname = "libcublasmp";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"include"
|
|
"lib"
|
|
];
|
|
|
|
# TODO: Looks like the minimum supported capability is 7.0 as of the latest:
|
|
# https://docs.nvidia.com/cuda/cublasmp/getting_started/index.html
|
|
buildInputs = [
|
|
libcublas
|
|
libnvshmem
|
|
nccl
|
|
];
|
|
|
|
autoPatchelfIgnoreMissingDeps = [
|
|
"libcuda.so.1"
|
|
];
|
|
|
|
meta = {
|
|
description = "High-performance, multi-process, GPU-accelerated library for distributed basic dense linear algebra";
|
|
longDescription = ''
|
|
NVIDIA cuBLASMp is a high-performance, multi-process, GPU-accelerated library for distributed basic dense linear
|
|
algebra.
|
|
|
|
cuBLASMp is compatible with 2D block-cyclic data layout and provides PBLAS-like C APIs.
|
|
'';
|
|
homepage = "https://docs.nvidia.com/cuda/cublasmp";
|
|
changelog = "https://docs.nvidia.com/cuda/cublasmp/release_notes";
|
|
license = _cuda.lib.licenses.math_sdk_sla;
|
|
};
|
|
}
|