blob: e4e4655f8c36ca3f8034725adae7f2996f4dc214 (
plain)
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
29
30
31
|
{
buildRedist,
libcufile,
numactl,
}:
buildRedist {
redistName = "cuda";
pname = "libcuobjclient";
outputs = [
"out"
"dev"
"include"
"lib"
];
buildInputs = [
libcufile
numactl
];
meta = {
description = "CUDA cuObject Client";
longDescription = ''
High-performance suite of libraries designed to enable direct data transfers between GPU
memory or system memory and object storage (S3-compatible) solution via RDMA.
'';
homepage = "https://docs.nvidia.com/gpudirect-storage/cuobject/";
changelog = "https://docs.nvidia.com/gpudirect-storage/cuobject/";
};
}
|