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

mod compute;
mod device;
mod runtime;

pub mod compiler;
pub use device::*;

pub use runtime::CudaRuntime;

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

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