llml 0.2.3

Implementation of basic math data types with high level frontend and low level backend
1
2
3
4
5
6
7
8
9
10
11
use cfg_if::cfg_if;
flat_mod!(vec2);

cfg_if! {
    if #[cfg(target_feature = "avx")] {
        flat_mod!(sse);
        //flat_mod!(avx);
    } else {
        flat_mod!(sse);
    }
}