gemm_f16/
lib.rs

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;
9pub mod microkernel;
10pub use half::f16;
11
12#[macro_use]
13#[allow(unused_imports)]
14extern crate gemm_common;