mod.rs 717 Bytes
Newer Older
1
2
3
4
5
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

pub(crate) use crate::replay::normalize_trace_requests;

6
pub(crate) mod agg;
7
pub(crate) mod components;
8
pub(crate) mod core;
9
pub(crate) mod disagg;
10
mod entrypoints;
11
pub(crate) mod events;
12
mod progress;
13
pub(crate) mod runtime_utils;
14
15
16
pub(crate) mod single;
pub(crate) mod state;

17
pub(crate) use entrypoints::{
18
19
20
    generate_trace_worker_artifacts, simulate_concurrency, simulate_concurrency_disagg,
    simulate_concurrency_workload, simulate_concurrency_workload_disagg, simulate_trace,
    simulate_trace_disagg, simulate_trace_workload, simulate_trace_workload_disagg,
21
};