"lib/runtime/vscode:/vscode.git/clone" did not exist on "ec7af93953a81c9320c67842e92358b619285b8f"
Cargo.toml 1.07 KB
Newer Older
1
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
3
4
5
6
7
8
9
10
# SPDX-License-Identifier: Apache-2.0

[package]
name = "dynamo-memory"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
11
description = "Memory management library for Dynamo"
12
13

[features]
14
default = []
15
16
17
18
19
20
21
22
23
24
25
26
27

# feature to enable unsafe slices of memory descriptors
# for advanced testing in other crates
unsafe-slices = []

# test features for hardware-specific tests
testing-cuda = []
testing-nixl = []
testing-all = ["testing-cuda", "testing-nixl"]

[dependencies]
anyhow = { workspace = true }
cudarc = { workspace = true }
28
nixl-sys = { version = "=0.10.1" }
29
30
31
32
33
serde = { workspace = true}
thiserror = { workspace = true }
tracing = { workspace = true }

libc = { version = "0.2" }
Ryan Olson's avatar
Ryan Olson committed
34
libloading = "0.8"
35
36
37
nix = { version = "0.30", features = ["fs"] }
offset-allocator = "0.2"

38
39
40
41
[[bin]]
name = "validate_numa_placement"
path = "bin/validate_numa_placement.rs"

42
[dev-dependencies]
43
serde_json = { workspace = true }
44
tempfile = "3"