ruda-driver-cpu 0.1.2

CPU driver backend for Ruda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate derive_new;

extern crate alloc;

#[cfg(test)]
#[allow(unexpected_cfgs)]
mod tests;

pub mod compilation;
pub mod execution;
pub mod device;
pub mod memory;
pub mod runtime;

pub use device::CpuDevice;
pub use runtime::*;