1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#[macro_use]
extern crate derive_new;

extern crate alloc;

mod compiler;
mod compute;
mod device;
mod element;
mod graphics;
mod runtime;

pub use device::*;
pub use element::*;
pub use graphics::*;
pub use runtime::*;

#[cfg(test)]
mod tests {
    pub type TestRuntime = crate::WgpuRuntime;

    cubecl_core::testgen_all!();
    cubecl_linalg::testgen_all!();
}