aisimulate-core 0.12.0

Engine-neutral inference simulation, deterministic replay, and performance modeling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

use aisimulate_core::{
    ReplayEngineConfig, ReplayReport, ReplaySpec, Replayer, TimingModel, TimingModelConfig,
};

fn assert_public<T: ?Sized>() {}

#[test]
fn public_facade_exposes_stable_engine_and_replay_contracts() {
    assert_public::<ReplayEngineConfig>();
    assert_public::<ReplaySpec>();
    assert_public::<ReplayReport>();
    assert_public::<Replayer>();
    assert_public::<dyn TimingModel>();
    assert_public::<TimingModelConfig>();
}