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
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Shared foundation types used by every other module in the crate.
//!
//! Contents have no AIC-domain knowledge of their own (no model graphs, no
//! perf-DB queries, no backends). Domain modules import from here; nothing
//! here imports from domain modules.

pub mod enums;
pub mod error;
pub mod system_spec;

pub use error::AicError;