#![cfg_attr(test, allow(dead_code))]
pub use super::kernels::RapidHashKernelId as KernelId;
use crate::platform::Caps;
pub const DEFAULT_BOUNDARIES: [usize; 3] = [64, 256, 4096];
#[derive(Clone, Copy, Debug)]
pub struct DispatchTable {
pub boundaries: [usize; 3],
pub xs: KernelId,
pub s: KernelId,
pub m: KernelId,
pub l: KernelId,
}
pub static DEFAULT_TABLE: DispatchTable = DispatchTable {
boundaries: DEFAULT_BOUNDARIES,
xs: KernelId::Portable,
s: KernelId::Portable,
m: KernelId::Portable,
l: KernelId::Portable,
};
#[inline]
#[must_use]
pub const fn select_runtime_table(_caps: Caps) -> &'static DispatchTable {
&DEFAULT_TABLE
}