collenchyma 0.0.8

high-performance computation on any hardware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Provides a operation on native CPU.

use operation::IOperation;

#[derive(Debug, Copy, Clone)]
/// Defines a host CPU operation.
pub struct Function;

impl Function {
    /// Initializes a native CPU hardware.
    pub fn new() -> Function {
        Function
    }
}

impl IOperation for Function {}