42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# 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
|
|
description = "Memory management library for Dynamo"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# 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]
|
|
dynamo-config = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
cudarc = { workspace = true }
|
|
nixl-sys = { version = "0.9" }
|
|
serde = { workspace = true}
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
libc = { version = "0.2" }
|
|
nix = { version = "0.30", features = ["fs"] }
|
|
offset-allocator = "0.2"
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|
|
tempfile = "3"
|