cubecl_core/
prelude.rs

1pub use crate::{CubeLaunch, CubeType, RuntimeArg, cube};
2
3pub use crate::codegen::{KernelExpansion, KernelIntegrator, KernelSettings};
4pub use crate::compute::{
5    CompiledKernel, CubeKernel, KernelBuilder, KernelDefinition, KernelLauncher, KernelTask,
6};
7pub use crate::frontend::cmma;
8/// Elements
9pub use crate::frontend::{
10    Array, ArrayHandleRef, Atomic, Float, FloatExpand, LaunchArg, NumericExpand, Slice, SliceMut,
11    Tensor, TensorArg,
12};
13pub use crate::frontend::{branch::*, synchronization::*};
14pub use crate::pod::CubeElement;
15pub use crate::runtime::Runtime;
16
17/// Export plane operations.
18pub use crate::frontend::{plane_all, plane_max, plane_min, plane_prod, plane_sum};
19pub use cubecl_runtime::client::ComputeClient;
20pub use cubecl_runtime::id::KernelId;
21pub use cubecl_runtime::kernel::KernelMetadata;
22pub use cubecl_runtime::server::CubeCount;
23
24pub use crate::frontend::*;
25pub use crate::{comment, comptime, comptime_type, derive_cube_comptime, terminate};
26pub use cubecl_common::{CubeDim, ExecutionMode, flex32, tf32};
27pub use cubecl_ir::Scope;