cubecl-runtime 0.8.1

Crate that helps creating high performance async runtimes for CubeCL.
Documentation
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(missing_docs)]

//! CubeCL runtime crate that helps creating high performance async runtimes.

extern crate alloc;

#[macro_use]
extern crate derive_new;

/// Various identifier types used in CubeCL.
pub mod id;

/// Kernel related traits.
pub mod kernel;

/// Stream related utilities.
#[cfg(feature = "std")]
pub mod stream;

/// Compute client module.
pub mod client;

/// Autotune module
pub mod tune;

/// Memory management module.
pub mod memory_management;
/// Compute server module.
pub mod server;
/// Compute Storage module.
pub mod storage;

/// CubeCL config module.
pub mod config;

mod feature_set;
/// Runtime features and associated types
pub mod features;

pub use cubecl_common::benchmark;

pub use feature_set::*;
pub use features::*;
/// Logging utilities to be used by a compute server.
pub mod logging;

/// TMA-related runtime types
pub mod tma;

/// Simple system profiling using timestamps.
pub mod timestamp_profiler;