1#![cfg_attr(not(feature = "std"), no_std)] 2 3pub mod gemm; 4pub mod microkernel; 5pub use half::f16; 6 7#[macro_use] 8#[allow(unused_imports)] 9extern crate gemm_common;