Skip to main content

dynamo_memory/pool/
mod.rs

1// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Memory pool for efficient device memory allocation in hot paths.
5
6pub mod cuda;
7
8pub use cuda::{CudaMemPool, CudaMemPoolBuilder};