1
2
3
4
5
6
7
8
9
10
#![cfg_attr(feature = "nightly", feature(stdsimd), feature(avx512_target_feature))]
#![cfg_attr(not(feature = "std"), no_std)]

pub mod gemm;
pub mod microkernel;
pub use half::f16;

#[macro_use]
#[allow(unused_imports)]
extern crate gemm_common;