blob: 1dbe5d9c9baf33f8e52e1a47f6ef63432083a42d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ buildRedist }:
buildRedist {
redistName = "cuda";
pname = "nvidia_fs";
outputs = [ "out" ];
allowFHSReferences = true;
meta = {
description = "GPUDirect Storage kernel driver to read/write data from supported storage using cufile APIs";
longDescription = ''
GPUDirect Storage kernel driver nvidia-fs.ko is a kernel module to orchestrate IO directly from DMA/RDMA
capable storage to user allocated GPU memory on NVIDIA Graphics cards.
'';
homepage = "https://github.com/NVIDIA/gds-nvidia-fs";
changelog = "https://github.com/NVIDIA/gds-nvidia-fs/releases";
};
}
|