1#![cfg_attr(
2 all(feature = "nightly", any(target_arch = "x86", target_arch = "x86_64")),
3 feature(stdarch_x86_avx512),
4 feature(avx512_target_feature)
5)]
6#![cfg_attr(not(feature = "std"), no_std)]
7
8pub mod gemm;
9mod microkernel;
10
11#[macro_use]
12extern crate gemm_common;