Skip to main content

xlog_core/
lib.rs

1//! Core types and traits for XLOG
2#![warn(missing_docs)]
3
4pub mod config;
5pub mod error;
6pub mod symbol;
7pub mod traits;
8pub mod types;
9
10pub use config::{CostModelKind, MemoryBudget, RuntimeConfig};
11pub use error::{Result, XlogError};
12pub use traits::{GpuBuffer, KernelProvider, RelationStore};
13pub use types::{AggOp, RelId, ScalarType, Schema};