xlog-core 0.5.0

Core types, traits, and error surfaces shared across XLOG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core types and traits for XLOG

pub mod config;
pub mod error;
pub mod symbol;
pub mod traits;
pub mod types;

pub use config::{MemoryBudget, RuntimeConfig};
pub use error::{Result, XlogError};
pub use traits::{GpuBuffer, KernelProvider, RelationStore};
pub use types::{AggOp, RelId, ScalarType, Schema};