Compile-time dispatch policy tags for the kernel module.
real l1_norm(const Vector &x, seq_t) noexcept
Sequential: calls raw::l1_norm (routes to cblas_dasum when BLAS available; otherwise auto-vectorizabl...
real sum(const Vector &x, seq_t) noexcept
Sequential: auto-vectorizable summation loop (no BLAS equivalent).
real linf_norm(const Vector &x, seq_t) noexcept
Sequential: calls raw::linf_norm (routes to cblas_idamax when BLAS available; otherwise plain max loo...
Parallel execution policy tag. Activates OMP parallel-for / reduction constructs when NUMERICS_HAS_OM...
Sequential execution policy tag. Guarantees no OMP parallel regions; safe to call inside an existing ...