pub fn get_simd_badge() -> &'static str {
use crate::math::common::{InstructionSet, effective_instruction_set};
match effective_instruction_set() {
InstructionSet::Avx2 => "AVX2",
InstructionSet::Avx512 => "AVX-512",
InstructionSet::Avx512VnniBf16 => "AVX-512-BF16",
}
}