pub(crate) const MAX_DIM_FOR_NATIVE_BLAS: usize = 16;
pub(crate) type CcBool = i32;
pub(crate) const C_TRUE: i32 = 1;
pub(crate) const C_FALSE: i32 = 0;
pub(crate) const NORM_EUC: isize = 0;
pub(crate) const NORM_FRO: isize = 1;
pub(crate) const NORM_INF: isize = 2;
pub(crate) const NORM_MAX: isize = 3;
pub(crate) const NORM_ONE: isize = 4;
pub(crate) const SVD_CODE_A: i32 = 0;
pub(crate) const CBLAS_COL_MAJOR: i32 = 102;
pub(crate) const CBLAS_NO_TRANS: i32 = 111;
pub(crate) const CBLAS_TRANS: i32 = 112;
pub(crate) const CBLAS_CONJ_TRANS: i32 = 113;
pub(crate) const CBLAS_UPPER: i32 = 121;
pub(crate) const CBLAS_LOWER: i32 = 122;