├── INSTRUCTIONS.txt ├── LICENSE.md ├── README.md ├── VERSION ├── bin └── .gitkeep ├── blis ├── .travis.yml ├── CHANGELOG ├── CREDITS ├── INSTALL ├── LICENSE ├── Makefile ├── README.md ├── blis │ └── include │ │ └── blis │ │ ├── bla_amax.h │ │ ├── bla_asum.h │ │ ├── bla_axpy.h │ │ ├── bla_c_abs.h │ │ ├── bla_c_div.h │ │ ├── bla_copy.h │ │ ├── bla_d_abs.h │ │ ├── bla_d_cnjg.h │ │ ├── bla_d_imag.h │ │ ├── bla_d_sign.h │ │ ├── bla_dot.h │ │ ├── bla_f__cabs.h │ │ ├── bla_gbmv.h │ │ ├── bla_gemm.h │ │ ├── bla_gemm_check.h │ │ ├── bla_gemv.h │ │ ├── bla_gemv_check.h │ │ ├── bla_ger.h │ │ ├── bla_ger_check.h │ │ ├── bla_hbmv.h │ │ ├── bla_hemm.h │ │ ├── bla_hemm_check.h │ │ ├── bla_hemv.h │ │ ├── bla_hemv_check.h │ │ ├── bla_her.h │ │ ├── bla_her2.h │ │ ├── bla_her2_check.h │ │ ├── bla_her2k.h │ │ ├── bla_her2k_check.h │ │ ├── bla_her_check.h │ │ ├── bla_herk.h │ │ ├── bla_herk_check.h │ │ ├── bla_hpmv.h │ │ ├── bla_hpr.h │ │ ├── bla_hpr2.h │ │ ├── bla_lsame.h │ │ ├── bla_nrm2.h │ │ ├── bla_r_abs.h │ │ ├── bla_r_cnjg.h │ │ ├── bla_r_imag.h │ │ ├── bla_r_sign.h │ │ ├── bla_rot.h │ │ ├── bla_rotg.h │ │ ├── bla_rotm.h │ │ ├── bla_rotmg.h │ │ ├── bla_sbmv.h │ │ ├── bla_scal.h │ │ ├── bla_spmv.h │ │ ├── bla_spr.h │ │ ├── bla_spr2.h │ │ ├── bla_swap.h │ │ ├── bla_symm.h │ │ ├── bla_symm_check.h │ │ ├── bla_symv.h │ │ ├── bla_symv_check.h │ │ ├── bla_syr.h │ │ ├── bla_syr2.h │ │ ├── bla_syr2_check.h │ │ ├── bla_syr2k.h │ │ ├── bla_syr2k_check.h │ │ ├── bla_syr_check.h │ │ ├── bla_syrk.h │ │ ├── bla_syrk_check.h │ │ ├── bla_tbmv.h │ │ ├── bla_tbsv.h │ │ ├── bla_tpmv.h │ │ ├── bla_tpsv.h │ │ ├── bla_trmm.h │ │ ├── bla_trmm_check.h │ │ ├── bla_trmv.h │ │ ├── bla_trmv_check.h │ │ ├── bla_trsm.h │ │ ├── bla_trsm_check.h │ │ ├── bla_trsv.h │ │ ├── bla_trsv_check.h │ │ ├── bla_xerbla.h │ │ ├── bla_z_abs.h │ │ ├── bla_z_div.h │ │ ├── bli_absq2ris.h │ │ ├── bli_absq2s.h │ │ ├── bli_absqsc.h │ │ ├── bli_absqsc_check.h │ │ ├── bli_absqsc_unb_var1.h │ │ ├── bli_abval2ris.h │ │ ├── bli_abval2s.h │ │ ├── bli_add3ris.h │ │ ├── bli_add3s.h │ │ ├── bli_addd.h │ │ ├── bli_addd_check.h │ │ ├── bli_addd_unb_var1.h │ │ ├── bli_addjris.h │ │ ├── bli_addjs.h │ │ ├── bli_addm.h │ │ ├── bli_addm_check.h │ │ ├── bli_addm_unb_var1.h │ │ ├── bli_addris.h │ │ ├── bli_adds.h │ │ ├── bli_adds_mxn.h │ │ ├── bli_adds_mxn_uplo.h │ │ ├── bli_addsc.h │ │ ├── bli_addsc_check.h │ │ ├── bli_addsc_unb_var1.h │ │ ├── bli_addv.h │ │ ├── bli_addv_check.h │ │ ├── bli_addv_kernel.h │ │ ├── bli_addv_ref.h │ │ ├── bli_amaxv.h │ │ ├── bli_amaxv_check.h │ │ ├── bli_amaxv_unb_var1.h │ │ ├── bli_asumv.h │ │ ├── bli_asumv_check.h │ │ ├── bli_asumv_unb_var1.h │ │ ├── bli_auxinfo_macro_defs.h │ │ ├── bli_axmyris.h │ │ ├── bli_axmys.h │ │ ├── bli_axpbyris.h │ │ ├── bli_axpy2v.h │ │ ├── bli_axpy2v_check.h │ │ ├── bli_axpy2v_kernel.h │ │ ├── bli_axpy2v_ref.h │ │ ├── bli_axpyd.h │ │ ├── bli_axpyd_check.h │ │ ├── bli_axpyd_unb_var1.h │ │ ├── bli_axpyf.h │ │ ├── bli_axpyf_check.h │ │ ├── bli_axpyf_fusefac.h │ │ ├── bli_axpyf_kernel.h │ │ ├── bli_axpyf_ref.h │ │ ├── bli_axpyjris.h │ │ ├── bli_axpyjs.h │ │ ├── bli_axpym.h │ │ ├── bli_axpym_check.h │ │ ├── bli_axpym_unb_var1.h │ │ ├── bli_axpyris.h │ │ ├── bli_axpys.h │ │ ├── bli_axpyv.h │ │ ├── bli_axpyv_check.h │ │ ├── bli_axpyv_kernel.h │ │ ├── bli_axpyv_ref.h │ │ ├── bli_blas.h │ │ ├── bli_blas_macro_defs.h │ │ ├── bli_blocksize.h │ │ ├── bli_bsv_query.h │ │ ├── bli_cast.h │ │ ├── bli_cblas.h │ │ ├── bli_check.h │ │ ├── bli_clock.h │ │ ├── bli_cntl.h │ │ ├── bli_cntl_init.h │ │ ├── bli_complex_macro_defs.h │ │ ├── bli_config.h │ │ ├── bli_config_macro_defs.h │ │ ├── bli_conjris.h │ │ ├── bli_conjs.h │ │ ├── bli_const.h │ │ ├── bli_constants.h │ │ ├── bli_copycjris.h │ │ ├── bli_copycjs.h │ │ ├── bli_copyd.h │ │ ├── bli_copyd_check.h │ │ ├── bli_copyd_unb_var1.h │ │ ├── bli_copyjri3s.h │ │ ├── bli_copyjris.h │ │ ├── bli_copyjs.h │ │ ├── bli_copym.h │ │ ├── bli_copym_check.h │ │ ├── bli_copym_unb_var1.h │ │ ├── bli_copyri3s.h │ │ ├── bli_copyris.h │ │ ├── bli_copys.h │ │ ├── bli_copys_mxn.h │ │ ├── bli_copysc.h │ │ ├── bli_copysc_check.h │ │ ├── bli_copysc_unb_var1.h │ │ ├── bli_copyv.h │ │ ├── bli_copyv_check.h │ │ ├── bli_copyv_kernel.h │ │ ├── bli_copyv_ref.h │ │ ├── bli_divsc.h │ │ ├── bli_divsc_check.h │ │ ├── bli_divsc_unb_var1.h │ │ ├── bli_dlamch.h │ │ ├── bli_dotaxpyv.h │ │ ├── bli_dotaxpyv_check.h │ │ ├── bli_dotaxpyv_kernel.h │ │ ├── bli_dotaxpyv_ref.h │ │ ├── bli_dotjs.h │ │ ├── bli_dots.h │ │ ├── bli_dotv.h │ │ ├── bli_dotv_check.h │ │ ├── bli_dotv_kernel.h │ │ ├── bli_dotv_ref.h │ │ ├── bli_dotxaxpyf.h │ │ ├── bli_dotxaxpyf_check.h │ │ ├── bli_dotxaxpyf_fusefac.h │ │ ├── bli_dotxaxpyf_kernel.h │ │ ├── bli_dotxaxpyf_ref_var1.h │ │ ├── bli_dotxaxpyf_ref_var2.h │ │ ├── bli_dotxf.h │ │ ├── bli_dotxf_check.h │ │ ├── bli_dotxf_fusefac.h │ │ ├── bli_dotxf_kernel.h │ │ ├── bli_dotxf_ref.h │ │ ├── bli_dotxv.h │ │ ├── bli_dotxv_check.h │ │ ├── bli_dotxv_kernel.h │ │ ├── bli_dotxv_ref.h │ │ ├── bli_eq.h │ │ ├── bli_eqris.h │ │ ├── bli_error.h │ │ ├── bli_error_macro_defs.h │ │ ├── bli_extern_defs.h │ │ ├── bli_f2c.h │ │ ├── bli_fprintm.h │ │ ├── bli_fprintm_check.h │ │ ├── bli_fprints.h │ │ ├── bli_fprintv.h │ │ ├── bli_fprintv_check.h │ │ ├── bli_func.h │ │ ├── bli_gemm.h │ │ ├── bli_gemm_blk_var1f.h │ │ ├── bli_gemm_blk_var2f.h │ │ ├── bli_gemm_blk_var3f.h │ │ ├── bli_gemm_blk_var4f.h │ │ ├── bli_gemm_blocksize.h │ │ ├── bli_gemm_check.h │ │ ├── bli_gemm_cntl.h │ │ ├── bli_gemm_front.h │ │ ├── bli_gemm_int.h │ │ ├── bli_gemm_ker_var2.h │ │ ├── bli_gemm_ker_var3.h │ │ ├── bli_gemm_ker_var4.h │ │ ├── bli_gemm_threading.h │ │ ├── bli_gemm_ukernel.h │ │ ├── bli_gemm_ukr_ref.h │ │ ├── bli_gemmind_cntl.h │ │ ├── bli_gemmind_ukr_ref.h │ │ ├── bli_gemmtrsm_l_ukr_ref.h │ │ ├── bli_gemmtrsm_u_ukr_ref.h │ │ ├── bli_gemmtrsm_ukernel.h │ │ ├── bli_gemmtrsmind_x_ukr_ref.h │ │ ├── bli_gemv.h │ │ ├── bli_gemv_blk_var1.h │ │ ├── bli_gemv_blk_var2.h │ │ ├── bli_gemv_check.h │ │ ├── bli_gemv_cntl.h │ │ ├── bli_gemv_int.h │ │ ├── bli_gemv_unb_var1.h │ │ ├── bli_gemv_unb_var2.h │ │ ├── bli_gemv_unf_var1.h │ │ ├── bli_gemv_unf_var2.h │ │ ├── bli_genarray_macro_defs.h │ │ ├── bli_gentfunc_macro_defs.h │ │ ├── bli_gentprot_macro_defs.h │ │ ├── bli_ger.h │ │ ├── bli_ger_blk_var1.h │ │ ├── bli_ger_blk_var2.h │ │ ├── bli_ger_check.h │ │ ├── bli_ger_cntl.h │ │ ├── bli_ger_int.h │ │ ├── bli_ger_unb_var1.h │ │ ├── bli_ger_unb_var2.h │ │ ├── bli_getopt.h │ │ ├── bli_gets.h │ │ ├── bli_getsc.h │ │ ├── bli_getsc_check.h │ │ ├── bli_hemm.h │ │ ├── bli_hemm_check.h │ │ ├── bli_hemm_front.h │ │ ├── bli_hemv.h │ │ ├── bli_hemv_blk_var1.h │ │ ├── bli_hemv_blk_var2.h │ │ ├── bli_hemv_blk_var3.h │ │ ├── bli_hemv_blk_var4.h │ │ ├── bli_hemv_check.h │ │ ├── bli_hemv_cntl.h │ │ ├── bli_hemv_int.h │ │ ├── bli_hemv_unb_var1.h │ │ ├── bli_hemv_unb_var2.h │ │ ├── bli_hemv_unb_var3.h │ │ ├── bli_hemv_unb_var4.h │ │ ├── bli_hemv_unf_var1.h │ │ ├── bli_hemv_unf_var1a.h │ │ ├── bli_hemv_unf_var3.h │ │ ├── bli_hemv_unf_var3a.h │ │ ├── bli_her.h │ │ ├── bli_her2.h │ │ ├── bli_her2_blk_var1.h │ │ ├── bli_her2_blk_var2.h │ │ ├── bli_her2_blk_var3.h │ │ ├── bli_her2_blk_var4.h │ │ ├── bli_her2_check.h │ │ ├── bli_her2_cntl.h │ │ ├── bli_her2_int.h │ │ ├── bli_her2_unb_var1.h │ │ ├── bli_her2_unb_var2.h │ │ ├── bli_her2_unb_var3.h │ │ ├── bli_her2_unb_var4.h │ │ ├── bli_her2_unf_var1.h │ │ ├── bli_her2_unf_var4.h │ │ ├── bli_her2k.h │ │ ├── bli_her2k_check.h │ │ ├── bli_her2k_front.h │ │ ├── bli_her_blk_var1.h │ │ ├── bli_her_blk_var2.h │ │ ├── bli_her_check.h │ │ ├── bli_her_cntl.h │ │ ├── bli_her_int.h │ │ ├── bli_her_unb_var1.h │ │ ├── bli_her_unb_var2.h │ │ ├── bli_herk.h │ │ ├── bli_herk_blk_var1f.h │ │ ├── bli_herk_blk_var2f.h │ │ ├── bli_herk_blk_var3f.h │ │ ├── bli_herk_check.h │ │ ├── bli_herk_front.h │ │ ├── bli_herk_int.h │ │ ├── bli_herk_l_ker_var2.h │ │ ├── bli_herk_prune.h │ │ ├── bli_herk_threading.h │ │ ├── bli_herk_u_ker_var2.h │ │ ├── bli_ind.h │ │ ├── bli_ind_cntl_init.h │ │ ├── bli_ind_query.h │ │ ├── bli_info.h │ │ ├── bli_init.h │ │ ├── bli_invertd.h │ │ ├── bli_invertd_check.h │ │ ├── bli_invertd_unb_var1.h │ │ ├── bli_invertris.h │ │ ├── bli_inverts.h │ │ ├── bli_invertv.h │ │ ├── bli_invertv_check.h │ │ ├── bli_invertv_kernel.h │ │ ├── bli_invertv_ref.h │ │ ├── bli_invscaljris.h │ │ ├── bli_invscaljs.h │ │ ├── bli_invscalris.h │ │ ├── bli_invscals.h │ │ ├── bli_kernel.h │ │ ├── bli_kernel_3m1_macro_defs.h │ │ ├── bli_kernel_3m2_macro_defs.h │ │ ├── bli_kernel_3m3_macro_defs.h │ │ ├── bli_kernel_3mh_macro_defs.h │ │ ├── bli_kernel_4m1_macro_defs.h │ │ ├── bli_kernel_4mb_macro_defs.h │ │ ├── bli_kernel_4mh_macro_defs.h │ │ ├── bli_kernel_ind_macro_defs.h │ │ ├── bli_kernel_ind_pre_macro_defs.h │ │ ├── bli_kernel_ind_prototypes.h │ │ ├── bli_kernel_macro_defs.h │ │ ├── bli_kernel_post_macro_defs.h │ │ ├── bli_kernel_pre_macro_defs.h │ │ ├── bli_kernel_prototypes.h │ │ ├── bli_kernel_type_defs.h │ │ ├── bli_level3_type_defs.h │ │ ├── bli_lsame.h │ │ ├── bli_machval.h │ │ ├── bli_macro_defs.h │ │ ├── bli_malloc.h │ │ ├── bli_mem.h │ │ ├── bli_mem_macro_defs.h │ │ ├── bli_mkherm.h │ │ ├── bli_mkherm_check.h │ │ ├── bli_mkherm_unb_var1.h │ │ ├── bli_mksymm.h │ │ ├── bli_mksymm_check.h │ │ ├── bli_mksymm_unb_var1.h │ │ ├── bli_mktrim.h │ │ ├── bli_mktrim_check.h │ │ ├── bli_mktrim_unb_var1.h │ │ ├── bli_mulsc.h │ │ ├── bli_mulsc_check.h │ │ ├── bli_mulsc_unb_var1.h │ │ ├── bli_neg2ris.h │ │ ├── bli_neg2s.h │ │ ├── bli_norm1m.h │ │ ├── bli_norm1m_check.h │ │ ├── bli_norm1m_unb_var1.h │ │ ├── bli_norm1v.h │ │ ├── bli_norm1v_check.h │ │ ├── bli_norm1v_unb_var1.h │ │ ├── bli_normfm.h │ │ ├── bli_normfm_check.h │ │ ├── bli_normfm_unb_var1.h │ │ ├── bli_normfsc.h │ │ ├── bli_normfsc_check.h │ │ ├── bli_normfsc_unb_var1.h │ │ ├── bli_normfv.h │ │ ├── bli_normfv_check.h │ │ ├── bli_normfv_unb_var1.h │ │ ├── bli_normim.h │ │ ├── bli_normim_check.h │ │ ├── bli_normim_unb_var1.h │ │ ├── bli_normiv.h │ │ ├── bli_normiv_check.h │ │ ├── bli_normiv_unb_var1.h │ │ ├── bli_oapi_ind.h │ │ ├── bli_obj.h │ │ ├── bli_obj_check.h │ │ ├── bli_obj_macro_defs.h │ │ ├── bli_obj_scalar.h │ │ ├── bli_opid.h │ │ ├── bli_packm.h │ │ ├── bli_packm_3mis_macro_defs.h │ │ ├── bli_packm_4mi_macro_defs.h │ │ ├── bli_packm_blk_var1.h │ │ ├── bli_packm_check.h │ │ ├── bli_packm_cntl.h │ │ ├── bli_packm_cxk.h │ │ ├── bli_packm_cxk_3mis.h │ │ ├── bli_packm_cxk_4mi.h │ │ ├── bli_packm_cxk_rih.h │ │ ├── bli_packm_ind_pre_macro_defs.h │ │ ├── bli_packm_init.h │ │ ├── bli_packm_int.h │ │ ├── bli_packm_part.h │ │ ├── bli_packm_ref_cxk.h │ │ ├── bli_packm_ref_cxk_3mis.h │ │ ├── bli_packm_ref_cxk_4mi.h │ │ ├── bli_packm_ref_cxk_rih.h │ │ ├── bli_packm_rih_macro_defs.h │ │ ├── bli_packm_struc_cxk.h │ │ ├── bli_packm_struc_cxk_3mis.h │ │ ├── bli_packm_struc_cxk_4mi.h │ │ ├── bli_packm_struc_cxk_rih.h │ │ ├── bli_packm_threading.h │ │ ├── bli_packm_unb_var1.h │ │ ├── bli_packv.h │ │ ├── bli_packv_check.h │ │ ├── bli_packv_cntl.h │ │ ├── bli_packv_init.h │ │ ├── bli_packv_int.h │ │ ├── bli_packv_unb_var1.h │ │ ├── bli_param_macro_defs.h │ │ ├── bli_param_map.h │ │ ├── bli_part.h │ │ ├── bli_part_check.h │ │ ├── bli_pool.h │ │ ├── bli_printm.h │ │ ├── bli_printv.h │ │ ├── bli_prune.h │ │ ├── bli_query.h │ │ ├── bli_randm.h │ │ ├── bli_randm_check.h │ │ ├── bli_randm_unb_var1.h │ │ ├── bli_rands.h │ │ ├── bli_randv.h │ │ ├── bli_randv_check.h │ │ ├── bli_randv_unb_var1.h │ │ ├── bli_scal2d.h │ │ ├── bli_scal2d_check.h │ │ ├── bli_scal2d_unb_var1.h │ │ ├── bli_scal2ios.h │ │ ├── bli_scal2jios.h │ │ ├── bli_scal2jri3s.h │ │ ├── bli_scal2jris.h │ │ ├── bli_scal2jros.h │ │ ├── bli_scal2jrpis.h │ │ ├── bli_scal2js.h │ │ ├── bli_scal2m.h │ │ ├── bli_scal2m_check.h │ │ ├── bli_scal2m_unb_var1.h │ │ ├── bli_scal2ri3s.h │ │ ├── bli_scal2rihs_mxn_diag.h │ │ ├── bli_scal2rihs_mxn_uplo.h │ │ ├── bli_scal2ris.h │ │ ├── bli_scal2ros.h │ │ ├── bli_scal2rpis.h │ │ ├── bli_scal2s.h │ │ ├── bli_scal2v.h │ │ ├── bli_scal2v_check.h │ │ ├── bli_scal2v_kernel.h │ │ ├── bli_scal2v_ref.h │ │ ├── bli_scalar_macro_defs.h │ │ ├── bli_scalcjris.h │ │ ├── bli_scalcjs.h │ │ ├── bli_scald.h │ │ ├── bli_scald_check.h │ │ ├── bli_scald_unb_var1.h │ │ ├── bli_scaljris.h │ │ ├── bli_scaljs.h │ │ ├── bli_scalm.h │ │ ├── bli_scalm_check.h │ │ ├── bli_scalm_cntl.h │ │ ├── bli_scalm_int.h │ │ ├── bli_scalm_unb_var1.h │ │ ├── bli_scalris.h │ │ ├── bli_scalris_mxn_uplo.h │ │ ├── bli_scals.h │ │ ├── bli_scalv.h │ │ ├── bli_scalv_check.h │ │ ├── bli_scalv_cntl.h │ │ ├── bli_scalv_int.h │ │ ├── bli_scalv_kernel.h │ │ ├── bli_scalv_ref.h │ │ ├── bli_set0ris.h │ │ ├── bli_set0s.h │ │ ├── bli_set0s_mxn.h │ │ ├── bli_set1s.h │ │ ├── bli_setd.h │ │ ├── bli_setd_check.h │ │ ├── bli_setd_unb_var1.h │ │ ├── bli_seti0s.h │ │ ├── bli_setid.h │ │ ├── bli_setid_check.h │ │ ├── bli_setid_unb_var1.h │ │ ├── bli_setis.h │ │ ├── bli_setm.h │ │ ├── bli_setm_check.h │ │ ├── bli_setm_unb_var1.h │ │ ├── bli_setrihs_mxn_diag.h │ │ ├── bli_setrs.h │ │ ├── bli_sets.h │ │ ├── bli_setsc.h │ │ ├── bli_setsc_check.h │ │ ├── bli_setv.h │ │ ├── bli_setv_check.h │ │ ├── bli_setv_kernel.h │ │ ├── bli_setv_ref.h │ │ ├── bli_slamch.h │ │ ├── bli_sqrt2ris.h │ │ ├── bli_sqrt2s.h │ │ ├── bli_sqrtsc.h │ │ ├── bli_sqrtsc_check.h │ │ ├── bli_sqrtsc_unb_var1.h │ │ ├── bli_subd.h │ │ ├── bli_subd_check.h │ │ ├── bli_subd_unb_var1.h │ │ ├── bli_subjris.h │ │ ├── bli_subjs.h │ │ ├── bli_subm.h │ │ ├── bli_subm_check.h │ │ ├── bli_subm_unb_var1.h │ │ ├── bli_subris.h │ │ ├── bli_subs.h │ │ ├── bli_subsc.h │ │ ├── bli_subsc_check.h │ │ ├── bli_subsc_unb_var1.h │ │ ├── bli_subv.h │ │ ├── bli_subv_check.h │ │ ├── bli_subv_kernel.h │ │ ├── bli_subv_ref.h │ │ ├── bli_sumsqv.h │ │ ├── bli_sumsqv_check.h │ │ ├── bli_sumsqv_unb_var1.h │ │ ├── bli_swapris.h │ │ ├── bli_swaps.h │ │ ├── bli_swapv.h │ │ ├── bli_swapv_check.h │ │ ├── bli_swapv_kernel.h │ │ ├── bli_swapv_ref.h │ │ ├── bli_symm.h │ │ ├── bli_symm_check.h │ │ ├── bli_symm_front.h │ │ ├── bli_symv.h │ │ ├── bli_symv_check.h │ │ ├── bli_syr.h │ │ ├── bli_syr2.h │ │ ├── bli_syr2_check.h │ │ ├── bli_syr2k.h │ │ ├── bli_syr2k_check.h │ │ ├── bli_syr2k_front.h │ │ ├── bli_syr_check.h │ │ ├── bli_syrk.h │ │ ├── bli_syrk_check.h │ │ ├── bli_syrk_front.h │ │ ├── bli_system.h │ │ ├── bli_tapi_ind.h │ │ ├── bli_threading.h │ │ ├── bli_threading_omp.h │ │ ├── bli_threading_pthreads.h │ │ ├── bli_trmm.h │ │ ├── bli_trmm3.h │ │ ├── bli_trmm3_check.h │ │ ├── bli_trmm3_front.h │ │ ├── bli_trmm_blk_var1f.h │ │ ├── bli_trmm_blk_var2b.h │ │ ├── bli_trmm_blk_var2f.h │ │ ├── bli_trmm_blk_var3b.h │ │ ├── bli_trmm_blk_var3f.h │ │ ├── bli_trmm_blocksize.h │ │ ├── bli_trmm_check.h │ │ ├── bli_trmm_front.h │ │ ├── bli_trmm_int.h │ │ ├── bli_trmm_ll_ker_var2.h │ │ ├── bli_trmm_lu_ker_var2.h │ │ ├── bli_trmm_prune.h │ │ ├── bli_trmm_rl_ker_var2.h │ │ ├── bli_trmm_ru_ker_var2.h │ │ ├── bli_trmm_threading.h │ │ ├── bli_trmv.h │ │ ├── bli_trmv_check.h │ │ ├── bli_trmv_cntl.h │ │ ├── bli_trmv_int.h │ │ ├── bli_trmv_l_blk_var1.h │ │ ├── bli_trmv_l_blk_var2.h │ │ ├── bli_trmv_u_blk_var1.h │ │ ├── bli_trmv_u_blk_var2.h │ │ ├── bli_trmv_unb_var1.h │ │ ├── bli_trmv_unb_var2.h │ │ ├── bli_trmv_unf_var1.h │ │ ├── bli_trmv_unf_var2.h │ │ ├── bli_trsm.h │ │ ├── bli_trsm_blk_var1b.h │ │ ├── bli_trsm_blk_var1f.h │ │ ├── bli_trsm_blk_var2b.h │ │ ├── bli_trsm_blk_var2f.h │ │ ├── bli_trsm_blk_var3b.h │ │ ├── bli_trsm_blk_var3f.h │ │ ├── bli_trsm_blocksize.h │ │ ├── bli_trsm_check.h │ │ ├── bli_trsm_cntl.h │ │ ├── bli_trsm_front.h │ │ ├── bli_trsm_int.h │ │ ├── bli_trsm_l_ukr_ref.h │ │ ├── bli_trsm_ll_ker_var2.h │ │ ├── bli_trsm_lu_ker_var2.h │ │ ├── bli_trsm_prune.h │ │ ├── bli_trsm_rl_ker_var2.h │ │ ├── bli_trsm_ru_ker_var2.h │ │ ├── bli_trsm_threading.h │ │ ├── bli_trsm_u_ukr_ref.h │ │ ├── bli_trsm_ukernel.h │ │ ├── bli_trsmind_cntl.h │ │ ├── bli_trsmind_x_ukr_ref.h │ │ ├── bli_trsv.h │ │ ├── bli_trsv_check.h │ │ ├── bli_trsv_cntl.h │ │ ├── bli_trsv_int.h │ │ ├── bli_trsv_l_blk_var1.h │ │ ├── bli_trsv_l_blk_var2.h │ │ ├── bli_trsv_u_blk_var1.h │ │ ├── bli_trsv_u_blk_var2.h │ │ ├── bli_trsv_unb_var1.h │ │ ├── bli_trsv_unb_var2.h │ │ ├── bli_trsv_unf_var1.h │ │ ├── bli_trsv_unf_var2.h │ │ ├── bli_type_defs.h │ │ ├── bli_ukr_query.h │ │ ├── bli_unpackm.h │ │ ├── bli_unpackm_blk_var2.h │ │ ├── bli_unpackm_check.h │ │ ├── bli_unpackm_cntl.h │ │ ├── bli_unpackm_cxk.h │ │ ├── bli_unpackm_int.h │ │ ├── bli_unpackm_ref_cxk.h │ │ ├── bli_unpackm_unb_var1.h │ │ ├── bli_unpackv.h │ │ ├── bli_unpackv_check.h │ │ ├── bli_unpackv_cntl.h │ │ ├── bli_unpackv_int.h │ │ ├── bli_unpackv_unb_var1.h │ │ ├── bli_unzipsc.h │ │ ├── bli_unzipsc_check.h │ │ ├── bli_unzipsc_unb_var1.h │ │ ├── bli_xpbyris.h │ │ ├── bli_xpbys.h │ │ ├── bli_xpbys_mxn.h │ │ ├── bli_xpbys_mxn_uplo.h │ │ ├── bli_zipsc.h │ │ ├── bli_zipsc_check.h │ │ ├── bli_zipsc_unb_var1.h │ │ ├── blis.h │ │ ├── cblas.h │ │ ├── cblas_f77.h │ │ ├── f77_amax_sub.h │ │ ├── f77_asum_sub.h │ │ ├── f77_dot_sub.h │ │ └── f77_nrm2_sub.h ├── build │ ├── auto-detect │ │ ├── arch_detect.c │ │ ├── auto-detect.sh │ │ ├── cpuid_arm.c │ │ └── cpuid_x86.c │ ├── bump-version.sh │ ├── check-test.sh │ ├── config.mk.in │ ├── gen-make-frags │ │ ├── fragment.mk │ │ ├── gen-make-frag.sh │ │ ├── ignore_list │ │ ├── special_list │ │ └── suffix_list │ ├── mirror-tree.sh │ ├── templates │ │ ├── license.c │ │ ├── license.h │ │ └── license.sh │ └── update-version-file.sh ├── config │ ├── armv7a │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── armv8a │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── bgq │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── binary_gemm │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ │ └── 3 │ │ │ │ ├── bin_gemm.c │ │ │ │ └── bin_gemm.s │ │ └── make_defs.mk │ ├── bulldozer │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ └── make_defs.mk │ ├── carrizo │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── cortex-a15 │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── cortex-a9 │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── dunnington │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── emscripten │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ └── make_defs.mk │ ├── haswell │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── loongson3a │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── mic │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── piledriver │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── pnacl │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── power7 │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ ├── reference │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ └── make_defs.mk │ ├── sandybridge │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ └── make_defs.mk │ └── template │ │ ├── bli_config.h │ │ ├── bli_kernel.h │ │ ├── kernels │ │ ├── 1 │ │ │ ├── bli_axpyv_opt_var1.c │ │ │ └── bli_dotv_opt_var1.c │ │ ├── 3 │ │ │ ├── bli_gemm_opt_mxn.c │ │ │ ├── bli_gemmtrsm_l_opt_mxn.c │ │ │ ├── bli_gemmtrsm_u_opt_mxn.c │ │ │ ├── bli_trsm_l_opt_mxn.c │ │ │ └── bli_trsm_u_opt_mxn.c │ │ └── 1f │ │ │ ├── bli_axpy2v_opt_var1.c │ │ │ ├── bli_axpyf_opt_var1.c │ │ │ ├── bli_dotaxpyv_opt_var1.c │ │ │ ├── bli_dotxaxpyf_opt_var1.c │ │ │ └── bli_dotxf_opt_var1.c │ │ └── make_defs.mk ├── configure ├── frame │ ├── 0 │ │ ├── absqsc │ │ │ ├── bli_absqsc.c │ │ │ ├── bli_absqsc.h │ │ │ ├── bli_absqsc_check.c │ │ │ ├── bli_absqsc_check.h │ │ │ ├── bli_absqsc_unb_var1.c │ │ │ └── bli_absqsc_unb_var1.h │ │ ├── addsc │ │ │ ├── bli_addsc.c │ │ │ ├── bli_addsc.h │ │ │ ├── bli_addsc_check.c │ │ │ ├── bli_addsc_check.h │ │ │ ├── bli_addsc_unb_var1.c │ │ │ └── bli_addsc_unb_var1.h │ │ ├── copysc │ │ │ ├── bli_copysc.c │ │ │ ├── bli_copysc.h │ │ │ ├── bli_copysc_check.c │ │ │ ├── bli_copysc_check.h │ │ │ ├── bli_copysc_unb_var1.c │ │ │ └── bli_copysc_unb_var1.h │ │ ├── divsc │ │ │ ├── bli_divsc.c │ │ │ ├── bli_divsc.h │ │ │ ├── bli_divsc_check.c │ │ │ ├── bli_divsc_check.h │ │ │ ├── bli_divsc_unb_var1.c │ │ │ └── bli_divsc_unb_var1.h │ │ ├── getsc │ │ │ ├── bli_getsc.c │ │ │ ├── bli_getsc.h │ │ │ ├── bli_getsc_check.c │ │ │ └── bli_getsc_check.h │ │ ├── mulsc │ │ │ ├── bli_mulsc.c │ │ │ ├── bli_mulsc.h │ │ │ ├── bli_mulsc_check.c │ │ │ ├── bli_mulsc_check.h │ │ │ ├── bli_mulsc_unb_var1.c │ │ │ └── bli_mulsc_unb_var1.h │ │ ├── normfsc │ │ │ ├── bli_normfsc.c │ │ │ ├── bli_normfsc.h │ │ │ ├── bli_normfsc_check.c │ │ │ ├── bli_normfsc_check.h │ │ │ ├── bli_normfsc_unb_var1.c │ │ │ └── bli_normfsc_unb_var1.h │ │ ├── setsc │ │ │ ├── bli_setsc.c │ │ │ ├── bli_setsc.h │ │ │ ├── bli_setsc_check.c │ │ │ └── bli_setsc_check.h │ │ ├── sqrtsc │ │ │ ├── bli_sqrtsc.c │ │ │ ├── bli_sqrtsc.h │ │ │ ├── bli_sqrtsc_check.c │ │ │ ├── bli_sqrtsc_check.h │ │ │ ├── bli_sqrtsc_unb_var1.c │ │ │ └── bli_sqrtsc_unb_var1.h │ │ ├── subsc │ │ │ ├── bli_subsc.c │ │ │ ├── bli_subsc.h │ │ │ ├── bli_subsc_check.c │ │ │ ├── bli_subsc_check.h │ │ │ ├── bli_subsc_unb_var1.c │ │ │ └── bli_subsc_unb_var1.h │ │ ├── unzipsc │ │ │ ├── bli_unzipsc.c │ │ │ ├── bli_unzipsc.h │ │ │ ├── bli_unzipsc_check.c │ │ │ ├── bli_unzipsc_check.h │ │ │ ├── bli_unzipsc_unb_var1.c │ │ │ └── bli_unzipsc_unb_var1.h │ │ └── zipsc │ │ │ ├── bli_zipsc.c │ │ │ ├── bli_zipsc.h │ │ │ ├── bli_zipsc_check.c │ │ │ ├── bli_zipsc_check.h │ │ │ ├── bli_zipsc_unb_var1.c │ │ │ └── bli_zipsc_unb_var1.h │ ├── 1 │ │ ├── addv │ │ │ ├── bli_addv.c │ │ │ ├── bli_addv.h │ │ │ ├── bli_addv_check.c │ │ │ ├── bli_addv_check.h │ │ │ ├── bli_addv_kernel.c │ │ │ ├── bli_addv_kernel.h │ │ │ ├── bli_addv_ref.c │ │ │ └── bli_addv_ref.h │ │ ├── axpyv │ │ │ ├── bli_axpyv.c │ │ │ ├── bli_axpyv.h │ │ │ ├── bli_axpyv_check.c │ │ │ ├── bli_axpyv_check.h │ │ │ ├── bli_axpyv_kernel.c │ │ │ ├── bli_axpyv_kernel.h │ │ │ ├── bli_axpyv_ref.c │ │ │ └── bli_axpyv_ref.h │ │ ├── copyv │ │ │ ├── bli_copyv.c │ │ │ ├── bli_copyv.h │ │ │ ├── bli_copyv_check.c │ │ │ ├── bli_copyv_check.h │ │ │ ├── bli_copyv_kernel.c │ │ │ ├── bli_copyv_kernel.h │ │ │ ├── bli_copyv_ref.c │ │ │ └── bli_copyv_ref.h │ │ ├── dotv │ │ │ ├── bli_dotv.c │ │ │ ├── bli_dotv.h │ │ │ ├── bli_dotv_check.c │ │ │ ├── bli_dotv_check.h │ │ │ ├── bli_dotv_kernel.c │ │ │ ├── bli_dotv_kernel.h │ │ │ ├── bli_dotv_ref.c │ │ │ └── bli_dotv_ref.h │ │ ├── dotxv │ │ │ ├── bli_dotxv.c │ │ │ ├── bli_dotxv.h │ │ │ ├── bli_dotxv_check.c │ │ │ ├── bli_dotxv_check.h │ │ │ ├── bli_dotxv_kernel.c │ │ │ ├── bli_dotxv_kernel.h │ │ │ ├── bli_dotxv_ref.c │ │ │ └── bli_dotxv_ref.h │ │ ├── invertv │ │ │ ├── bli_invertv.c │ │ │ ├── bli_invertv.h │ │ │ ├── bli_invertv_check.c │ │ │ ├── bli_invertv_check.h │ │ │ ├── bli_invertv_kernel.c │ │ │ ├── bli_invertv_kernel.h │ │ │ ├── bli_invertv_ref.c │ │ │ └── bli_invertv_ref.h │ │ ├── packv │ │ │ ├── bli_packv.c │ │ │ ├── bli_packv.h │ │ │ ├── bli_packv_check.c │ │ │ ├── bli_packv_check.h │ │ │ ├── bli_packv_cntl.c │ │ │ ├── bli_packv_cntl.h │ │ │ ├── bli_packv_init.c │ │ │ ├── bli_packv_init.h │ │ │ ├── bli_packv_int.c │ │ │ ├── bli_packv_int.h │ │ │ ├── bli_packv_unb_var1.c │ │ │ └── bli_packv_unb_var1.h │ │ ├── scal2v │ │ │ ├── bli_scal2v.c │ │ │ ├── bli_scal2v.h │ │ │ ├── bli_scal2v_check.c │ │ │ ├── bli_scal2v_check.h │ │ │ ├── bli_scal2v_kernel.c │ │ │ ├── bli_scal2v_kernel.h │ │ │ ├── bli_scal2v_ref.c │ │ │ └── bli_scal2v_ref.h │ │ ├── scalv │ │ │ ├── bli_scalv.c │ │ │ ├── bli_scalv.h │ │ │ ├── bli_scalv_check.c │ │ │ ├── bli_scalv_check.h │ │ │ ├── bli_scalv_cntl.c │ │ │ ├── bli_scalv_cntl.h │ │ │ ├── bli_scalv_int.c │ │ │ ├── bli_scalv_int.h │ │ │ ├── bli_scalv_kernel.c │ │ │ ├── bli_scalv_kernel.h │ │ │ ├── bli_scalv_ref.c │ │ │ └── bli_scalv_ref.h │ │ ├── setv │ │ │ ├── bli_setv.c │ │ │ ├── bli_setv.h │ │ │ ├── bli_setv_check.c │ │ │ ├── bli_setv_check.h │ │ │ ├── bli_setv_kernel.c │ │ │ ├── bli_setv_kernel.h │ │ │ ├── bli_setv_ref.c │ │ │ ├── bli_setv_ref.h │ │ │ └── old │ │ │ │ ├── bli_setv_unb_var2.c │ │ │ │ └── bli_setv_unb_var2.h │ │ ├── subv │ │ │ ├── bli_subv.c │ │ │ ├── bli_subv.h │ │ │ ├── bli_subv_check.c │ │ │ ├── bli_subv_check.h │ │ │ ├── bli_subv_kernel.c │ │ │ ├── bli_subv_kernel.h │ │ │ ├── bli_subv_ref.c │ │ │ └── bli_subv_ref.h │ │ ├── swapv │ │ │ ├── bli_swapv.c │ │ │ ├── bli_swapv.h │ │ │ ├── bli_swapv_check.c │ │ │ ├── bli_swapv_check.h │ │ │ ├── bli_swapv_kernel.c │ │ │ ├── bli_swapv_kernel.h │ │ │ ├── bli_swapv_ref.c │ │ │ └── bli_swapv_ref.h │ │ └── unpackv │ │ │ ├── bli_unpackv.c │ │ │ ├── bli_unpackv.h │ │ │ ├── bli_unpackv_check.c │ │ │ ├── bli_unpackv_check.h │ │ │ ├── bli_unpackv_cntl.c │ │ │ ├── bli_unpackv_cntl.h │ │ │ ├── bli_unpackv_int.c │ │ │ ├── bli_unpackv_int.h │ │ │ ├── bli_unpackv_unb_var1.c │ │ │ └── bli_unpackv_unb_var1.h │ ├── 2 │ │ ├── gemv │ │ │ ├── bli_gemv.c │ │ │ ├── bli_gemv.h │ │ │ ├── bli_gemv_blk_var1.c │ │ │ ├── bli_gemv_blk_var1.h │ │ │ ├── bli_gemv_blk_var2.c │ │ │ ├── bli_gemv_blk_var2.h │ │ │ ├── bli_gemv_check.c │ │ │ ├── bli_gemv_check.h │ │ │ ├── bli_gemv_cntl.c │ │ │ ├── bli_gemv_cntl.h │ │ │ ├── bli_gemv_int.c │ │ │ ├── bli_gemv_int.h │ │ │ ├── bli_gemv_unb_var1.c │ │ │ ├── bli_gemv_unb_var1.h │ │ │ ├── bli_gemv_unb_var2.c │ │ │ ├── bli_gemv_unb_var2.h │ │ │ ├── bli_gemv_unf_var1.c │ │ │ ├── bli_gemv_unf_var1.h │ │ │ ├── bli_gemv_unf_var2.c │ │ │ └── bli_gemv_unf_var2.h │ │ ├── ger │ │ │ ├── bli_ger.c │ │ │ ├── bli_ger.h │ │ │ ├── bli_ger_blk_var1.c │ │ │ ├── bli_ger_blk_var1.h │ │ │ ├── bli_ger_blk_var2.c │ │ │ ├── bli_ger_blk_var2.h │ │ │ ├── bli_ger_check.c │ │ │ ├── bli_ger_check.h │ │ │ ├── bli_ger_cntl.c │ │ │ ├── bli_ger_cntl.h │ │ │ ├── bli_ger_int.c │ │ │ ├── bli_ger_int.h │ │ │ ├── bli_ger_unb_var1.c │ │ │ ├── bli_ger_unb_var1.h │ │ │ ├── bli_ger_unb_var2.c │ │ │ └── bli_ger_unb_var2.h │ │ ├── hemv │ │ │ ├── bli_hemv.c │ │ │ ├── bli_hemv.h │ │ │ ├── bli_hemv_blk_var1.c │ │ │ ├── bli_hemv_blk_var1.h │ │ │ ├── bli_hemv_blk_var2.c │ │ │ ├── bli_hemv_blk_var2.h │ │ │ ├── bli_hemv_blk_var3.c │ │ │ ├── bli_hemv_blk_var3.h │ │ │ ├── bli_hemv_blk_var4.c │ │ │ ├── bli_hemv_blk_var4.h │ │ │ ├── bli_hemv_check.c │ │ │ ├── bli_hemv_check.h │ │ │ ├── bli_hemv_cntl.c │ │ │ ├── bli_hemv_cntl.h │ │ │ ├── bli_hemv_int.c │ │ │ ├── bli_hemv_int.h │ │ │ ├── bli_hemv_unb_var1.c │ │ │ ├── bli_hemv_unb_var1.h │ │ │ ├── bli_hemv_unb_var2.c │ │ │ ├── bli_hemv_unb_var2.h │ │ │ ├── bli_hemv_unb_var3.c │ │ │ ├── bli_hemv_unb_var3.h │ │ │ ├── bli_hemv_unb_var4.c │ │ │ ├── bli_hemv_unb_var4.h │ │ │ ├── bli_hemv_unf_var1.c │ │ │ ├── bli_hemv_unf_var1.h │ │ │ ├── bli_hemv_unf_var1a.c │ │ │ ├── bli_hemv_unf_var1a.h │ │ │ ├── bli_hemv_unf_var3.c │ │ │ ├── bli_hemv_unf_var3.h │ │ │ ├── bli_hemv_unf_var3a.c │ │ │ └── bli_hemv_unf_var3a.h │ │ ├── her │ │ │ ├── bli_her.c │ │ │ ├── bli_her.h │ │ │ ├── bli_her_blk_var1.c │ │ │ ├── bli_her_blk_var1.h │ │ │ ├── bli_her_blk_var2.c │ │ │ ├── bli_her_blk_var2.h │ │ │ ├── bli_her_check.c │ │ │ ├── bli_her_check.h │ │ │ ├── bli_her_cntl.c │ │ │ ├── bli_her_cntl.h │ │ │ ├── bli_her_int.c │ │ │ ├── bli_her_int.h │ │ │ ├── bli_her_unb_var1.c │ │ │ ├── bli_her_unb_var1.h │ │ │ ├── bli_her_unb_var2.c │ │ │ └── bli_her_unb_var2.h │ │ ├── her2 │ │ │ ├── bli_her2.c │ │ │ ├── bli_her2.h │ │ │ ├── bli_her2_blk_var1.c │ │ │ ├── bli_her2_blk_var1.h │ │ │ ├── bli_her2_blk_var2.c │ │ │ ├── bli_her2_blk_var2.h │ │ │ ├── bli_her2_blk_var3.c │ │ │ ├── bli_her2_blk_var3.h │ │ │ ├── bli_her2_blk_var4.c │ │ │ ├── bli_her2_blk_var4.h │ │ │ ├── bli_her2_check.c │ │ │ ├── bli_her2_check.h │ │ │ ├── bli_her2_cntl.c │ │ │ ├── bli_her2_cntl.h │ │ │ ├── bli_her2_int.c │ │ │ ├── bli_her2_int.h │ │ │ ├── bli_her2_unb_var1.c │ │ │ ├── bli_her2_unb_var1.h │ │ │ ├── bli_her2_unb_var2.c │ │ │ ├── bli_her2_unb_var2.h │ │ │ ├── bli_her2_unb_var3.c │ │ │ ├── bli_her2_unb_var3.h │ │ │ ├── bli_her2_unb_var4.c │ │ │ ├── bli_her2_unb_var4.h │ │ │ ├── bli_her2_unf_var1.c │ │ │ ├── bli_her2_unf_var1.h │ │ │ ├── bli_her2_unf_var4.c │ │ │ └── bli_her2_unf_var4.h │ │ ├── symv │ │ │ ├── bli_symv.c │ │ │ ├── bli_symv.h │ │ │ ├── bli_symv_check.c │ │ │ └── bli_symv_check.h │ │ ├── syr │ │ │ ├── bli_syr.c │ │ │ ├── bli_syr.h │ │ │ ├── bli_syr_check.c │ │ │ └── bli_syr_check.h │ │ ├── syr2 │ │ │ ├── bli_syr2.c │ │ │ ├── bli_syr2.h │ │ │ ├── bli_syr2_check.c │ │ │ └── bli_syr2_check.h │ │ ├── trmv │ │ │ ├── bli_trmv.c │ │ │ ├── bli_trmv.h │ │ │ ├── bli_trmv_check.c │ │ │ ├── bli_trmv_check.h │ │ │ ├── bli_trmv_cntl.c │ │ │ ├── bli_trmv_cntl.h │ │ │ ├── bli_trmv_int.c │ │ │ ├── bli_trmv_int.h │ │ │ ├── bli_trmv_l_blk_var1.c │ │ │ ├── bli_trmv_l_blk_var1.h │ │ │ ├── bli_trmv_l_blk_var2.c │ │ │ ├── bli_trmv_l_blk_var2.h │ │ │ ├── bli_trmv_u_blk_var1.c │ │ │ ├── bli_trmv_u_blk_var1.h │ │ │ ├── bli_trmv_u_blk_var2.c │ │ │ ├── bli_trmv_u_blk_var2.h │ │ │ ├── bli_trmv_unb_var1.c │ │ │ ├── bli_trmv_unb_var1.h │ │ │ ├── bli_trmv_unb_var2.c │ │ │ ├── bli_trmv_unb_var2.h │ │ │ ├── bli_trmv_unf_var1.c │ │ │ ├── bli_trmv_unf_var1.h │ │ │ ├── bli_trmv_unf_var2.c │ │ │ └── bli_trmv_unf_var2.h │ │ └── trsv │ │ │ ├── bli_trsv.c │ │ │ ├── bli_trsv.h │ │ │ ├── bli_trsv_check.c │ │ │ ├── bli_trsv_check.h │ │ │ ├── bli_trsv_cntl.c │ │ │ ├── bli_trsv_cntl.h │ │ │ ├── bli_trsv_int.c │ │ │ ├── bli_trsv_int.h │ │ │ ├── bli_trsv_l_blk_var1.c │ │ │ ├── bli_trsv_l_blk_var1.h │ │ │ ├── bli_trsv_l_blk_var2.c │ │ │ ├── bli_trsv_l_blk_var2.h │ │ │ ├── bli_trsv_u_blk_var1.c │ │ │ ├── bli_trsv_u_blk_var1.h │ │ │ ├── bli_trsv_u_blk_var2.c │ │ │ ├── bli_trsv_u_blk_var2.h │ │ │ ├── bli_trsv_unb_var1.c │ │ │ ├── bli_trsv_unb_var1.h │ │ │ ├── bli_trsv_unb_var2.c │ │ │ ├── bli_trsv_unb_var2.h │ │ │ ├── bli_trsv_unf_var1.c │ │ │ ├── bli_trsv_unf_var1.h │ │ │ ├── bli_trsv_unf_var2.c │ │ │ └── bli_trsv_unf_var2.h │ ├── 3 │ │ ├── gemm │ │ │ ├── bli_gemm.c │ │ │ ├── bli_gemm.h │ │ │ ├── bli_gemm_blk_var1f.c │ │ │ ├── bli_gemm_blk_var1f.h │ │ │ ├── bli_gemm_blk_var2f.c │ │ │ ├── bli_gemm_blk_var2f.h │ │ │ ├── bli_gemm_blk_var3f.c │ │ │ ├── bli_gemm_blk_var3f.h │ │ │ ├── bli_gemm_blocksize.c │ │ │ ├── bli_gemm_blocksize.h │ │ │ ├── bli_gemm_check.c │ │ │ ├── bli_gemm_check.h │ │ │ ├── bli_gemm_cntl.c │ │ │ ├── bli_gemm_cntl.h │ │ │ ├── bli_gemm_front.c │ │ │ ├── bli_gemm_front.h │ │ │ ├── bli_gemm_int.c │ │ │ ├── bli_gemm_int.h │ │ │ ├── bli_gemm_ker_var2.c │ │ │ ├── bli_gemm_ker_var2.h │ │ │ ├── bli_gemm_threading.c │ │ │ ├── bli_gemm_threading.h │ │ │ ├── bli_gemm_ukernel.c │ │ │ ├── bli_gemm_ukernel.h │ │ │ ├── ind │ │ │ │ ├── bli_gemm_blk_var4f.c │ │ │ │ ├── bli_gemm_blk_var4f.h │ │ │ │ ├── bli_gemm_ker_var3.c │ │ │ │ ├── bli_gemm_ker_var3.h │ │ │ │ ├── bli_gemm_ker_var4.c │ │ │ │ └── bli_gemm_ker_var4.h │ │ │ ├── other │ │ │ │ ├── bli_gemm_cntl_exp.c │ │ │ │ ├── bli_gemm_cntl_exp.h │ │ │ │ ├── bli_gemm_ker_var5.c │ │ │ │ └── bli_gemm_ker_var5.h │ │ │ └── ukernels │ │ │ │ ├── bli_gemm_ukr_ref.c │ │ │ │ └── bli_gemm_ukr_ref.h │ │ ├── hemm │ │ │ ├── bli_hemm.c │ │ │ ├── bli_hemm.h │ │ │ ├── bli_hemm_check.c │ │ │ ├── bli_hemm_check.h │ │ │ ├── bli_hemm_front.c │ │ │ └── bli_hemm_front.h │ │ ├── her2k │ │ │ ├── bli_her2k.c │ │ │ ├── bli_her2k.h │ │ │ ├── bli_her2k_check.c │ │ │ ├── bli_her2k_check.h │ │ │ ├── bli_her2k_front.c │ │ │ └── bli_her2k_front.h │ │ ├── herk │ │ │ ├── bli_herk.c │ │ │ ├── bli_herk.h │ │ │ ├── bli_herk_blk_var1f.c │ │ │ ├── bli_herk_blk_var1f.h │ │ │ ├── bli_herk_blk_var2f.c │ │ │ ├── bli_herk_blk_var2f.h │ │ │ ├── bli_herk_blk_var3f.c │ │ │ ├── bli_herk_blk_var3f.h │ │ │ ├── bli_herk_check.c │ │ │ ├── bli_herk_check.h │ │ │ ├── bli_herk_front.c │ │ │ ├── bli_herk_front.h │ │ │ ├── bli_herk_int.c │ │ │ ├── bli_herk_int.h │ │ │ ├── bli_herk_l_ker_var2.c │ │ │ ├── bli_herk_l_ker_var2.h │ │ │ ├── bli_herk_prune.c │ │ │ ├── bli_herk_prune.h │ │ │ ├── bli_herk_threading.c │ │ │ ├── bli_herk_threading.h │ │ │ ├── bli_herk_u_ker_var2.c │ │ │ └── bli_herk_u_ker_var2.h │ │ ├── symm │ │ │ ├── bli_symm.c │ │ │ ├── bli_symm.h │ │ │ ├── bli_symm_check.c │ │ │ ├── bli_symm_check.h │ │ │ ├── bli_symm_front.c │ │ │ └── bli_symm_front.h │ │ ├── syr2k │ │ │ ├── bli_syr2k.c │ │ │ ├── bli_syr2k.h │ │ │ ├── bli_syr2k_check.c │ │ │ ├── bli_syr2k_check.h │ │ │ ├── bli_syr2k_front.c │ │ │ └── bli_syr2k_front.h │ │ ├── syrk │ │ │ ├── bli_syrk.c │ │ │ ├── bli_syrk.h │ │ │ ├── bli_syrk_check.c │ │ │ ├── bli_syrk_check.h │ │ │ ├── bli_syrk_front.c │ │ │ └── bli_syrk_front.h │ │ ├── trmm │ │ │ ├── bli_trmm.c │ │ │ ├── bli_trmm.h │ │ │ ├── bli_trmm_blk_var1f.c │ │ │ ├── bli_trmm_blk_var1f.h │ │ │ ├── bli_trmm_blk_var2b.c │ │ │ ├── bli_trmm_blk_var2b.h │ │ │ ├── bli_trmm_blk_var2f.c │ │ │ ├── bli_trmm_blk_var2f.h │ │ │ ├── bli_trmm_blk_var3b.c │ │ │ ├── bli_trmm_blk_var3b.h │ │ │ ├── bli_trmm_blk_var3f.c │ │ │ ├── bli_trmm_blk_var3f.h │ │ │ ├── bli_trmm_blocksize.c │ │ │ ├── bli_trmm_blocksize.h │ │ │ ├── bli_trmm_check.c │ │ │ ├── bli_trmm_check.h │ │ │ ├── bli_trmm_front.c │ │ │ ├── bli_trmm_front.h │ │ │ ├── bli_trmm_int.c │ │ │ ├── bli_trmm_int.h │ │ │ ├── bli_trmm_ll_ker_var2.c │ │ │ ├── bli_trmm_ll_ker_var2.h │ │ │ ├── bli_trmm_lu_ker_var2.c │ │ │ ├── bli_trmm_lu_ker_var2.h │ │ │ ├── bli_trmm_prune.c │ │ │ ├── bli_trmm_prune.h │ │ │ ├── bli_trmm_rl_ker_var2.c │ │ │ ├── bli_trmm_rl_ker_var2.h │ │ │ ├── bli_trmm_ru_ker_var2.c │ │ │ ├── bli_trmm_ru_ker_var2.h │ │ │ ├── bli_trmm_threading.c │ │ │ ├── bli_trmm_threading.h │ │ │ └── other │ │ │ │ ├── bli_trmm_ll_blk_var1.c │ │ │ │ ├── bli_trmm_ll_blk_var1.h │ │ │ │ ├── bli_trmm_ll_blk_var4.c │ │ │ │ ├── bli_trmm_ll_blk_var4.h │ │ │ │ ├── bli_trmm_lu_blk_var1.c │ │ │ │ ├── bli_trmm_lu_blk_var1.h │ │ │ │ ├── bli_trmm_lu_blk_var4.c │ │ │ │ └── bli_trmm_lu_blk_var4.h │ │ ├── trmm3 │ │ │ ├── bli_trmm3.c │ │ │ ├── bli_trmm3.h │ │ │ ├── bli_trmm3_check.c │ │ │ ├── bli_trmm3_check.h │ │ │ ├── bli_trmm3_front.c │ │ │ └── bli_trmm3_front.h │ │ └── trsm │ │ │ ├── bli_gemmtrsm_ukernel.c │ │ │ ├── bli_gemmtrsm_ukernel.h │ │ │ ├── bli_trsm.c │ │ │ ├── bli_trsm.h │ │ │ ├── bli_trsm_blk_var1b.c │ │ │ ├── bli_trsm_blk_var1b.h │ │ │ ├── bli_trsm_blk_var1f.c │ │ │ ├── bli_trsm_blk_var1f.h │ │ │ ├── bli_trsm_blk_var2b.c │ │ │ ├── bli_trsm_blk_var2b.h │ │ │ ├── bli_trsm_blk_var2f.c │ │ │ ├── bli_trsm_blk_var2f.h │ │ │ ├── bli_trsm_blk_var3b.c │ │ │ ├── bli_trsm_blk_var3b.h │ │ │ ├── bli_trsm_blk_var3f.c │ │ │ ├── bli_trsm_blk_var3f.h │ │ │ ├── bli_trsm_blocksize.c │ │ │ ├── bli_trsm_blocksize.h │ │ │ ├── bli_trsm_check.c │ │ │ ├── bli_trsm_check.h │ │ │ ├── bli_trsm_cntl.c │ │ │ ├── bli_trsm_cntl.h │ │ │ ├── bli_trsm_front.c │ │ │ ├── bli_trsm_front.h │ │ │ ├── bli_trsm_int.c │ │ │ ├── bli_trsm_int.h │ │ │ ├── bli_trsm_ll_ker_var2.c │ │ │ ├── bli_trsm_ll_ker_var2.h │ │ │ ├── bli_trsm_lu_ker_var2.c │ │ │ ├── bli_trsm_lu_ker_var2.h │ │ │ ├── bli_trsm_prune.c │ │ │ ├── bli_trsm_prune.h │ │ │ ├── bli_trsm_rl_ker_var2.c │ │ │ ├── bli_trsm_rl_ker_var2.h │ │ │ ├── bli_trsm_ru_ker_var2.c │ │ │ ├── bli_trsm_ru_ker_var2.h │ │ │ ├── bli_trsm_threading.c │ │ │ ├── bli_trsm_threading.h │ │ │ ├── bli_trsm_ukernel.c │ │ │ ├── bli_trsm_ukernel.h │ │ │ ├── other │ │ │ ├── bli_trsm_l_blk_var4.c │ │ │ ├── bli_trsm_l_blk_var4.h │ │ │ ├── bli_trsm_u_blk_var4.c │ │ │ └── bli_trsm_u_blk_var4.h │ │ │ └── ukernels │ │ │ ├── bli_gemmtrsm_l_ukr_ref.c │ │ │ ├── bli_gemmtrsm_l_ukr_ref.h │ │ │ ├── bli_gemmtrsm_u_ukr_ref.c │ │ │ ├── bli_gemmtrsm_u_ukr_ref.h │ │ │ ├── bli_trsm_l_ukr_ref.c │ │ │ ├── bli_trsm_l_ukr_ref.h │ │ │ ├── bli_trsm_u_ukr_ref.c │ │ │ └── bli_trsm_u_ukr_ref.h │ ├── 1d │ │ ├── addd │ │ │ ├── bli_addd.c │ │ │ ├── bli_addd.h │ │ │ ├── bli_addd_check.c │ │ │ ├── bli_addd_check.h │ │ │ ├── bli_addd_unb_var1.c │ │ │ └── bli_addd_unb_var1.h │ │ ├── axpyd │ │ │ ├── bli_axpyd.c │ │ │ ├── bli_axpyd.h │ │ │ ├── bli_axpyd_check.c │ │ │ ├── bli_axpyd_check.h │ │ │ ├── bli_axpyd_unb_var1.c │ │ │ └── bli_axpyd_unb_var1.h │ │ ├── copyd │ │ │ ├── bli_copyd.c │ │ │ ├── bli_copyd.h │ │ │ ├── bli_copyd_check.c │ │ │ ├── bli_copyd_check.h │ │ │ ├── bli_copyd_unb_var1.c │ │ │ └── bli_copyd_unb_var1.h │ │ ├── invertd │ │ │ ├── bli_invertd.c │ │ │ ├── bli_invertd.h │ │ │ ├── bli_invertd_check.c │ │ │ ├── bli_invertd_check.h │ │ │ ├── bli_invertd_unb_var1.c │ │ │ └── bli_invertd_unb_var1.h │ │ ├── scal2d │ │ │ ├── bli_scal2d.c │ │ │ ├── bli_scal2d.h │ │ │ ├── bli_scal2d_check.c │ │ │ ├── bli_scal2d_check.h │ │ │ ├── bli_scal2d_unb_var1.c │ │ │ └── bli_scal2d_unb_var1.h │ │ ├── scald │ │ │ ├── bli_scald.c │ │ │ ├── bli_scald.h │ │ │ ├── bli_scald_check.c │ │ │ ├── bli_scald_check.h │ │ │ ├── bli_scald_unb_var1.c │ │ │ └── bli_scald_unb_var1.h │ │ ├── setd │ │ │ ├── bli_setd.c │ │ │ ├── bli_setd.h │ │ │ ├── bli_setd_check.c │ │ │ ├── bli_setd_check.h │ │ │ ├── bli_setd_unb_var1.c │ │ │ └── bli_setd_unb_var1.h │ │ ├── setid │ │ │ ├── bli_setid.c │ │ │ ├── bli_setid.h │ │ │ ├── bli_setid_check.c │ │ │ ├── bli_setid_check.h │ │ │ ├── bli_setid_unb_var1.c │ │ │ └── bli_setid_unb_var1.h │ │ └── subd │ │ │ ├── bli_subd.c │ │ │ ├── bli_subd.h │ │ │ ├── bli_subd_check.c │ │ │ ├── bli_subd_check.h │ │ │ ├── bli_subd_unb_var1.c │ │ │ └── bli_subd_unb_var1.h │ ├── 1f │ │ ├── axpy2v │ │ │ ├── bli_axpy2v.c │ │ │ ├── bli_axpy2v.h │ │ │ ├── bli_axpy2v_check.c │ │ │ ├── bli_axpy2v_check.h │ │ │ ├── bli_axpy2v_kernel.c │ │ │ ├── bli_axpy2v_kernel.h │ │ │ ├── bli_axpy2v_ref.c │ │ │ └── bli_axpy2v_ref.h │ │ ├── axpyf │ │ │ ├── bli_axpyf.c │ │ │ ├── bli_axpyf.h │ │ │ ├── bli_axpyf_check.c │ │ │ ├── bli_axpyf_check.h │ │ │ ├── bli_axpyf_fusefac.c │ │ │ ├── bli_axpyf_fusefac.h │ │ │ ├── bli_axpyf_kernel.c │ │ │ ├── bli_axpyf_kernel.h │ │ │ ├── bli_axpyf_ref.c │ │ │ └── bli_axpyf_ref.h │ │ ├── dotaxpyv │ │ │ ├── bli_dotaxpyv.c │ │ │ ├── bli_dotaxpyv.h │ │ │ ├── bli_dotaxpyv_check.c │ │ │ ├── bli_dotaxpyv_check.h │ │ │ ├── bli_dotaxpyv_kernel.c │ │ │ ├── bli_dotaxpyv_kernel.h │ │ │ ├── bli_dotaxpyv_ref.c │ │ │ └── bli_dotaxpyv_ref.h │ │ ├── dotxaxpyf │ │ │ ├── bli_dotxaxpyf.c │ │ │ ├── bli_dotxaxpyf.h │ │ │ ├── bli_dotxaxpyf_check.c │ │ │ ├── bli_dotxaxpyf_check.h │ │ │ ├── bli_dotxaxpyf_fusefac.c │ │ │ ├── bli_dotxaxpyf_fusefac.h │ │ │ ├── bli_dotxaxpyf_kernel.c │ │ │ ├── bli_dotxaxpyf_kernel.h │ │ │ ├── bli_dotxaxpyf_ref_var1.c │ │ │ ├── bli_dotxaxpyf_ref_var1.h │ │ │ ├── bli_dotxaxpyf_ref_var2.c │ │ │ └── bli_dotxaxpyf_ref_var2.h │ │ └── dotxf │ │ │ ├── bli_dotxf.c │ │ │ ├── bli_dotxf.h │ │ │ ├── bli_dotxf_check.c │ │ │ ├── bli_dotxf_check.h │ │ │ ├── bli_dotxf_fusefac.c │ │ │ ├── bli_dotxf_fusefac.h │ │ │ ├── bli_dotxf_kernel.c │ │ │ ├── bli_dotxf_kernel.h │ │ │ ├── bli_dotxf_ref.c │ │ │ └── bli_dotxf_ref.h │ ├── 1m │ │ ├── addm │ │ │ ├── bli_addm.c │ │ │ ├── bli_addm.h │ │ │ ├── bli_addm_check.c │ │ │ ├── bli_addm_check.h │ │ │ ├── bli_addm_unb_var1.c │ │ │ └── bli_addm_unb_var1.h │ │ ├── axpym │ │ │ ├── bli_axpym.c │ │ │ ├── bli_axpym.h │ │ │ ├── bli_axpym_check.c │ │ │ ├── bli_axpym_check.h │ │ │ ├── bli_axpym_unb_var1.c │ │ │ └── bli_axpym_unb_var1.h │ │ ├── copym │ │ │ ├── bli_copym.c │ │ │ ├── bli_copym.h │ │ │ ├── bli_copym_check.c │ │ │ ├── bli_copym_check.h │ │ │ ├── bli_copym_unb_var1.c │ │ │ └── bli_copym_unb_var1.h │ │ ├── packm │ │ │ ├── bli_packm.c │ │ │ ├── bli_packm.h │ │ │ ├── bli_packm_blk_var1.c │ │ │ ├── bli_packm_blk_var1.c.old │ │ │ ├── bli_packm_blk_var1.h │ │ │ ├── bli_packm_check.c │ │ │ ├── bli_packm_check.h │ │ │ ├── bli_packm_cntl.c │ │ │ ├── bli_packm_cntl.h │ │ │ ├── bli_packm_cxk.c │ │ │ ├── bli_packm_cxk.h │ │ │ ├── bli_packm_cxk_3mis.c │ │ │ ├── bli_packm_cxk_3mis.h │ │ │ ├── bli_packm_cxk_4mi.c │ │ │ ├── bli_packm_cxk_4mi.h │ │ │ ├── bli_packm_cxk_rih.c │ │ │ ├── bli_packm_cxk_rih.h │ │ │ ├── bli_packm_init.c │ │ │ ├── bli_packm_init.h │ │ │ ├── bli_packm_int.c │ │ │ ├── bli_packm_int.h │ │ │ ├── bli_packm_part.c │ │ │ ├── bli_packm_part.h │ │ │ ├── bli_packm_struc_cxk.c │ │ │ ├── bli_packm_struc_cxk.h │ │ │ ├── bli_packm_struc_cxk_3mis.c │ │ │ ├── bli_packm_struc_cxk_3mis.h │ │ │ ├── bli_packm_struc_cxk_4mi.c │ │ │ ├── bli_packm_struc_cxk_4mi.h │ │ │ ├── bli_packm_struc_cxk_rih.c │ │ │ ├── bli_packm_struc_cxk_rih.h │ │ │ ├── bli_packm_threading.c │ │ │ ├── bli_packm_threading.h │ │ │ ├── bli_packm_unb_var1.c │ │ │ ├── bli_packm_unb_var1.h │ │ │ └── ukernels │ │ │ │ ├── bli_packm_ref_cxk.c │ │ │ │ ├── bli_packm_ref_cxk.h │ │ │ │ ├── bli_packm_ref_cxk_3mis.c │ │ │ │ ├── bli_packm_ref_cxk_3mis.h │ │ │ │ ├── bli_packm_ref_cxk_4mi.c │ │ │ │ ├── bli_packm_ref_cxk_4mi.h │ │ │ │ ├── bli_packm_ref_cxk_rih.c │ │ │ │ └── bli_packm_ref_cxk_rih.h │ │ ├── scal2m │ │ │ ├── bli_scal2m.c │ │ │ ├── bli_scal2m.h │ │ │ ├── bli_scal2m_check.c │ │ │ ├── bli_scal2m_check.h │ │ │ ├── bli_scal2m_unb_var1.c │ │ │ └── bli_scal2m_unb_var1.h │ │ ├── scalm │ │ │ ├── bli_scalm.c │ │ │ ├── bli_scalm.h │ │ │ ├── bli_scalm_check.c │ │ │ ├── bli_scalm_check.h │ │ │ ├── bli_scalm_cntl.c │ │ │ ├── bli_scalm_cntl.h │ │ │ ├── bli_scalm_int.c │ │ │ ├── bli_scalm_int.h │ │ │ ├── bli_scalm_unb_var1.c │ │ │ └── bli_scalm_unb_var1.h │ │ ├── setm │ │ │ ├── bli_setm.c │ │ │ ├── bli_setm.h │ │ │ ├── bli_setm_check.c │ │ │ ├── bli_setm_check.h │ │ │ ├── bli_setm_unb_var1.c │ │ │ └── bli_setm_unb_var1.h │ │ ├── subm │ │ │ ├── bli_subm.c │ │ │ ├── bli_subm.h │ │ │ ├── bli_subm_check.c │ │ │ ├── bli_subm_check.h │ │ │ ├── bli_subm_unb_var1.c │ │ │ └── bli_subm_unb_var1.h │ │ └── unpackm │ │ │ ├── bli_unpackm.c │ │ │ ├── bli_unpackm.h │ │ │ ├── bli_unpackm_blk_var2.c │ │ │ ├── bli_unpackm_blk_var2.h │ │ │ ├── bli_unpackm_check.c │ │ │ ├── bli_unpackm_check.h │ │ │ ├── bli_unpackm_cntl.c │ │ │ ├── bli_unpackm_cntl.h │ │ │ ├── bli_unpackm_cxk.c │ │ │ ├── bli_unpackm_cxk.h │ │ │ ├── bli_unpackm_int.c │ │ │ ├── bli_unpackm_int.h │ │ │ ├── bli_unpackm_unb_var1.c │ │ │ ├── bli_unpackm_unb_var1.h │ │ │ ├── old │ │ │ ├── bli_unpackm_blk_var1.c │ │ │ └── bli_unpackm_blk_var1.h │ │ │ └── ukernels │ │ │ ├── bli_unpackm_ref_cxk.c │ │ │ └── bli_unpackm_ref_cxk.h │ ├── base │ │ ├── bli_blocksize.c │ │ ├── bli_blocksize.h │ │ ├── bli_check.c │ │ ├── bli_check.h │ │ ├── bli_clock.c │ │ ├── bli_clock.h │ │ ├── bli_const.c │ │ ├── bli_const.h │ │ ├── bli_error.c │ │ ├── bli_error.h │ │ ├── bli_func.c │ │ ├── bli_func.h │ │ ├── bli_getopt.c │ │ ├── bli_getopt.h │ │ ├── bli_info.c │ │ ├── bli_info.h │ │ ├── bli_init.c │ │ ├── bli_init.h │ │ ├── bli_machval.c │ │ ├── bli_machval.h │ │ ├── bli_malloc.c │ │ ├── bli_malloc.h │ │ ├── bli_mem.c │ │ ├── bli_mem.c.prev │ │ ├── bli_mem.h │ │ ├── bli_obj.c │ │ ├── bli_obj.h │ │ ├── bli_obj_scalar.c │ │ ├── bli_obj_scalar.h │ │ ├── bli_opid.c │ │ ├── bli_opid.h │ │ ├── bli_param_map.c │ │ ├── bli_param_map.h │ │ ├── bli_part.c │ │ ├── bli_part.h │ │ ├── bli_pool.c │ │ ├── bli_pool.h │ │ ├── bli_prune.c │ │ ├── bli_prune.h │ │ ├── bli_query.c │ │ ├── bli_query.h │ │ ├── bli_threading.c │ │ ├── bli_threading.h │ │ ├── bli_threading_omp.c │ │ ├── bli_threading_omp.h │ │ ├── bli_threading_pthreads.c │ │ ├── bli_threading_pthreads.h │ │ ├── check │ │ │ ├── bli_obj_check.c │ │ │ ├── bli_obj_check.h │ │ │ ├── bli_part_check.c │ │ │ └── bli_part_check.h │ │ └── noopt │ │ │ ├── bli_dlamch.c │ │ │ ├── bli_dlamch.h │ │ │ ├── bli_lsame.c │ │ │ ├── bli_lsame.h │ │ │ ├── bli_slamch.c │ │ │ └── bli_slamch.h │ ├── cntl │ │ ├── bli_cntl.c │ │ ├── bli_cntl.h │ │ ├── bli_cntl_init.c │ │ └── bli_cntl_init.h │ ├── compat │ │ ├── attic │ │ │ ├── bla_gbmv.c │ │ │ ├── bla_gbmv.h │ │ │ ├── bla_hbmv.c │ │ │ ├── bla_hbmv.h │ │ │ ├── bla_hpmv.c │ │ │ ├── bla_hpmv.h │ │ │ ├── bla_hpr.c │ │ │ ├── bla_hpr.h │ │ │ ├── bla_hpr2.c │ │ │ ├── bla_hpr2.h │ │ │ ├── bla_rot.c │ │ │ ├── bla_rot.h │ │ │ ├── bla_rotg.c │ │ │ ├── bla_rotg.h │ │ │ ├── bla_rotm.c │ │ │ ├── bla_rotm.h │ │ │ ├── bla_rotmg.c │ │ │ ├── bla_rotmg.h │ │ │ ├── bla_sbmv.c │ │ │ ├── bla_sbmv.h │ │ │ ├── bla_spmv.c │ │ │ ├── bla_spmv.h │ │ │ ├── bla_spr.c │ │ │ ├── bla_spr.h │ │ │ ├── bla_spr2.c │ │ │ ├── bla_spr2.h │ │ │ ├── bla_tbmv.c │ │ │ ├── bla_tbmv.h │ │ │ ├── bla_tbsv.c │ │ │ ├── bla_tbsv.h │ │ │ ├── bla_tpmv.c │ │ │ ├── bla_tpmv.h │ │ │ ├── bla_tpsv.c │ │ │ └── bla_tpsv.h │ │ ├── bla_amax.c │ │ ├── bla_amax.h │ │ ├── bla_asum.c │ │ ├── bla_asum.h │ │ ├── bla_axpy.c │ │ ├── bla_axpy.h │ │ ├── bla_copy.c │ │ ├── bla_copy.h │ │ ├── bla_dot.c │ │ ├── bla_dot.h │ │ ├── bla_gemm.c │ │ ├── bla_gemm.h │ │ ├── bla_gemv.c │ │ ├── bla_gemv.h │ │ ├── bla_ger.c │ │ ├── bla_ger.h │ │ ├── bla_hemm.c │ │ ├── bla_hemm.h │ │ ├── bla_hemv.c │ │ ├── bla_hemv.h │ │ ├── bla_her.c │ │ ├── bla_her.h │ │ ├── bla_her2.c │ │ ├── bla_her2.h │ │ ├── bla_her2k.c │ │ ├── bla_her2k.h │ │ ├── bla_herk.c │ │ ├── bla_herk.h │ │ ├── bla_nrm2.c │ │ ├── bla_nrm2.h │ │ ├── bla_scal.c │ │ ├── bla_scal.h │ │ ├── bla_swap.c │ │ ├── bla_swap.h │ │ ├── bla_symm.c │ │ ├── bla_symm.h │ │ ├── bla_symv.c │ │ ├── bla_symv.h │ │ ├── bla_syr.c │ │ ├── bla_syr.h │ │ ├── bla_syr2.c │ │ ├── bla_syr2.h │ │ ├── bla_syr2k.c │ │ ├── bla_syr2k.h │ │ ├── bla_syrk.c │ │ ├── bla_syrk.h │ │ ├── bla_trmm.c │ │ ├── bla_trmm.h │ │ ├── bla_trmv.c │ │ ├── bla_trmv.h │ │ ├── bla_trsm.c │ │ ├── bla_trsm.h │ │ ├── bla_trsv.c │ │ ├── bla_trsv.h │ │ ├── bli_blas.h │ │ ├── cblas │ │ │ ├── bli_cblas.h │ │ │ ├── cblas.tgz │ │ │ ├── f77_sub │ │ │ │ ├── f77_amax_sub.c │ │ │ │ ├── f77_amax_sub.h │ │ │ │ ├── f77_asum_sub.c │ │ │ │ ├── f77_asum_sub.h │ │ │ │ ├── f77_dot_sub.c │ │ │ │ ├── f77_dot_sub.h │ │ │ │ ├── f77_nrm2_sub.c │ │ │ │ └── f77_nrm2_sub.h │ │ │ ├── integrate-cblas-tarball.sh │ │ │ └── src │ │ │ │ ├── cblas.h │ │ │ │ ├── cblas_caxpy.c │ │ │ │ ├── cblas_ccopy.c │ │ │ │ ├── cblas_cdotc_sub.c │ │ │ │ ├── cblas_cdotu_sub.c │ │ │ │ ├── cblas_cgbmv.c │ │ │ │ ├── cblas_cgemm.c │ │ │ │ ├── cblas_cgemv.c │ │ │ │ ├── cblas_cgerc.c │ │ │ │ ├── cblas_cgeru.c │ │ │ │ ├── cblas_chbmv.c │ │ │ │ ├── cblas_chemm.c │ │ │ │ ├── cblas_chemv.c │ │ │ │ ├── cblas_cher.c │ │ │ │ ├── cblas_cher2.c │ │ │ │ ├── cblas_cher2k.c │ │ │ │ ├── cblas_cherk.c │ │ │ │ ├── cblas_chpmv.c │ │ │ │ ├── cblas_chpr.c │ │ │ │ ├── cblas_chpr2.c │ │ │ │ ├── cblas_cscal.c │ │ │ │ ├── cblas_csscal.c │ │ │ │ ├── cblas_cswap.c │ │ │ │ ├── cblas_csymm.c │ │ │ │ ├── cblas_csyr2k.c │ │ │ │ ├── cblas_csyrk.c │ │ │ │ ├── cblas_ctbmv.c │ │ │ │ ├── cblas_ctbsv.c │ │ │ │ ├── cblas_ctpmv.c │ │ │ │ ├── cblas_ctpsv.c │ │ │ │ ├── cblas_ctrmm.c │ │ │ │ ├── cblas_ctrmv.c │ │ │ │ ├── cblas_ctrsm.c │ │ │ │ ├── cblas_ctrsv.c │ │ │ │ ├── cblas_dasum.c │ │ │ │ ├── cblas_daxpy.c │ │ │ │ ├── cblas_dcopy.c │ │ │ │ ├── cblas_ddot.c │ │ │ │ ├── cblas_dgbmv.c │ │ │ │ ├── cblas_dgemm.c │ │ │ │ ├── cblas_dgemv.c │ │ │ │ ├── cblas_dger.c │ │ │ │ ├── cblas_dnrm2.c │ │ │ │ ├── cblas_drot.c │ │ │ │ ├── cblas_drotg.c │ │ │ │ ├── cblas_drotm.c │ │ │ │ ├── cblas_drotmg.c │ │ │ │ ├── cblas_dsbmv.c │ │ │ │ ├── cblas_dscal.c │ │ │ │ ├── cblas_dsdot.c │ │ │ │ ├── cblas_dspmv.c │ │ │ │ ├── cblas_dspr.c │ │ │ │ ├── cblas_dspr2.c │ │ │ │ ├── cblas_dswap.c │ │ │ │ ├── cblas_dsymm.c │ │ │ │ ├── cblas_dsymv.c │ │ │ │ ├── cblas_dsyr.c │ │ │ │ ├── cblas_dsyr2.c │ │ │ │ ├── cblas_dsyr2k.c │ │ │ │ ├── cblas_dsyrk.c │ │ │ │ ├── cblas_dtbmv.c │ │ │ │ ├── cblas_dtbsv.c │ │ │ │ ├── cblas_dtpmv.c │ │ │ │ ├── cblas_dtpsv.c │ │ │ │ ├── cblas_dtrmm.c │ │ │ │ ├── cblas_dtrmv.c │ │ │ │ ├── cblas_dtrsm.c │ │ │ │ ├── cblas_dtrsv.c │ │ │ │ ├── cblas_dzasum.c │ │ │ │ ├── cblas_dznrm2.c │ │ │ │ ├── cblas_f77.h │ │ │ │ ├── cblas_globals.c │ │ │ │ ├── cblas_icamax.c │ │ │ │ ├── cblas_idamax.c │ │ │ │ ├── cblas_isamax.c │ │ │ │ ├── cblas_izamax.c │ │ │ │ ├── cblas_sasum.c │ │ │ │ ├── cblas_saxpy.c │ │ │ │ ├── cblas_scasum.c │ │ │ │ ├── cblas_scnrm2.c │ │ │ │ ├── cblas_scopy.c │ │ │ │ ├── cblas_sdot.c │ │ │ │ ├── cblas_sdsdot.c │ │ │ │ ├── cblas_sgbmv.c │ │ │ │ ├── cblas_sgemm.c │ │ │ │ ├── cblas_sgemv.c │ │ │ │ ├── cblas_sger.c │ │ │ │ ├── cblas_snrm2.c │ │ │ │ ├── cblas_srot.c │ │ │ │ ├── cblas_srotg.c │ │ │ │ ├── cblas_srotm.c │ │ │ │ ├── cblas_srotmg.c │ │ │ │ ├── cblas_ssbmv.c │ │ │ │ ├── cblas_sscal.c │ │ │ │ ├── cblas_sspmv.c │ │ │ │ ├── cblas_sspr.c │ │ │ │ ├── cblas_sspr2.c │ │ │ │ ├── cblas_sswap.c │ │ │ │ ├── cblas_ssymm.c │ │ │ │ ├── cblas_ssymv.c │ │ │ │ ├── cblas_ssyr.c │ │ │ │ ├── cblas_ssyr2.c │ │ │ │ ├── cblas_ssyr2k.c │ │ │ │ ├── cblas_ssyrk.c │ │ │ │ ├── cblas_stbmv.c │ │ │ │ ├── cblas_stbsv.c │ │ │ │ ├── cblas_stpmv.c │ │ │ │ ├── cblas_stpsv.c │ │ │ │ ├── cblas_strmm.c │ │ │ │ ├── cblas_strmv.c │ │ │ │ ├── cblas_strsm.c │ │ │ │ ├── cblas_strsv.c │ │ │ │ ├── cblas_xerbla.c │ │ │ │ ├── cblas_zaxpy.c │ │ │ │ ├── cblas_zcopy.c │ │ │ │ ├── cblas_zdotc_sub.c │ │ │ │ ├── cblas_zdotu_sub.c │ │ │ │ ├── cblas_zdscal.c │ │ │ │ ├── cblas_zgbmv.c │ │ │ │ ├── cblas_zgemm.c │ │ │ │ ├── cblas_zgemv.c │ │ │ │ ├── cblas_zgerc.c │ │ │ │ ├── cblas_zgeru.c │ │ │ │ ├── cblas_zhbmv.c │ │ │ │ ├── cblas_zhemm.c │ │ │ │ ├── cblas_zhemv.c │ │ │ │ ├── cblas_zher.c │ │ │ │ ├── cblas_zher2.c │ │ │ │ ├── cblas_zher2k.c │ │ │ │ ├── cblas_zherk.c │ │ │ │ ├── cblas_zhpmv.c │ │ │ │ ├── cblas_zhpr.c │ │ │ │ ├── cblas_zhpr2.c │ │ │ │ ├── cblas_zscal.c │ │ │ │ ├── cblas_zswap.c │ │ │ │ ├── cblas_zsymm.c │ │ │ │ ├── cblas_zsyr2k.c │ │ │ │ ├── cblas_zsyrk.c │ │ │ │ ├── cblas_ztbmv.c │ │ │ │ ├── cblas_ztbsv.c │ │ │ │ ├── cblas_ztpmv.c │ │ │ │ ├── cblas_ztpsv.c │ │ │ │ ├── cblas_ztrmm.c │ │ │ │ ├── cblas_ztrmv.c │ │ │ │ ├── cblas_ztrsm.c │ │ │ │ └── cblas_ztrsv.c │ │ ├── check │ │ │ ├── bla_gemm_check.c │ │ │ ├── bla_gemm_check.h │ │ │ ├── bla_gemv_check.c │ │ │ ├── bla_gemv_check.h │ │ │ ├── bla_ger_check.c │ │ │ ├── bla_ger_check.h │ │ │ ├── bla_hemm_check.c │ │ │ ├── bla_hemm_check.h │ │ │ ├── bla_hemv_check.c │ │ │ ├── bla_hemv_check.h │ │ │ ├── bla_her2_check.c │ │ │ ├── bla_her2_check.h │ │ │ ├── bla_her2k_check.c │ │ │ ├── bla_her2k_check.h │ │ │ ├── bla_her_check.c │ │ │ ├── bla_her_check.h │ │ │ ├── bla_herk_check.c │ │ │ ├── bla_herk_check.h │ │ │ ├── bla_symm_check.c │ │ │ ├── bla_symm_check.h │ │ │ ├── bla_symv_check.c │ │ │ ├── bla_symv_check.h │ │ │ ├── bla_syr2_check.c │ │ │ ├── bla_syr2_check.h │ │ │ ├── bla_syr2k_check.c │ │ │ ├── bla_syr2k_check.h │ │ │ ├── bla_syr_check.c │ │ │ ├── bla_syr_check.h │ │ │ ├── bla_syrk_check.c │ │ │ ├── bla_syrk_check.h │ │ │ ├── bla_trmm_check.c │ │ │ ├── bla_trmm_check.h │ │ │ ├── bla_trmv_check.c │ │ │ ├── bla_trmv_check.h │ │ │ ├── bla_trsm_check.c │ │ │ ├── bla_trsm_check.h │ │ │ ├── bla_trsv_check.c │ │ │ └── bla_trsv_check.h │ │ └── f2c │ │ │ ├── bla_gbmv.c │ │ │ ├── bla_gbmv.h │ │ │ ├── bla_hbmv.c │ │ │ ├── bla_hbmv.h │ │ │ ├── bla_hpmv.c │ │ │ ├── bla_hpmv.h │ │ │ ├── bla_hpr.c │ │ │ ├── bla_hpr.h │ │ │ ├── bla_hpr2.c │ │ │ ├── bla_hpr2.h │ │ │ ├── bla_lsame.c │ │ │ ├── bla_lsame.h │ │ │ ├── bla_rot.c │ │ │ ├── bla_rot.h │ │ │ ├── bla_rotg.c │ │ │ ├── bla_rotg.h │ │ │ ├── bla_rotm.c │ │ │ ├── bla_rotm.h │ │ │ ├── bla_rotmg.c │ │ │ ├── bla_rotmg.h │ │ │ ├── bla_sbmv.c │ │ │ ├── bla_sbmv.h │ │ │ ├── bla_spmv.c │ │ │ ├── bla_spmv.h │ │ │ ├── bla_spr.c │ │ │ ├── bla_spr.h │ │ │ ├── bla_spr2.c │ │ │ ├── bla_spr2.h │ │ │ ├── bla_tbmv.c │ │ │ ├── bla_tbmv.h │ │ │ ├── bla_tbsv.c │ │ │ ├── bla_tbsv.h │ │ │ ├── bla_tpmv.c │ │ │ ├── bla_tpmv.h │ │ │ ├── bla_tpsv.c │ │ │ ├── bla_tpsv.h │ │ │ ├── bla_xerbla.c │ │ │ ├── bla_xerbla.h │ │ │ └── util │ │ │ ├── bla_c_abs.c │ │ │ ├── bla_c_abs.h │ │ │ ├── bla_c_div.c │ │ │ ├── bla_c_div.h │ │ │ ├── bla_d_abs.c │ │ │ ├── bla_d_abs.h │ │ │ ├── bla_d_cnjg.c │ │ │ ├── bla_d_cnjg.h │ │ │ ├── bla_d_imag.c │ │ │ ├── bla_d_imag.h │ │ │ ├── bla_d_sign.c │ │ │ ├── bla_d_sign.h │ │ │ ├── bla_f__cabs.c │ │ │ ├── bla_f__cabs.h │ │ │ ├── bla_r_abs.c │ │ │ ├── bla_r_abs.h │ │ │ ├── bla_r_cnjg.c │ │ │ ├── bla_r_cnjg.h │ │ │ ├── bla_r_imag.c │ │ │ ├── bla_r_imag.h │ │ │ ├── bla_r_sign.c │ │ │ ├── bla_r_sign.h │ │ │ ├── bla_z_abs.c │ │ │ ├── bla_z_abs.h │ │ │ ├── bla_z_div.c │ │ │ └── bla_z_div.h │ ├── include │ │ ├── bli_auxinfo_macro_defs.h │ │ ├── bli_blas_macro_defs.h │ │ ├── bli_complex_macro_defs.h │ │ ├── bli_config_macro_defs.h │ │ ├── bli_error_macro_defs.h │ │ ├── bli_extern_defs.h │ │ ├── bli_f2c.h │ │ ├── bli_genarray_macro_defs.h │ │ ├── bli_gentfunc_macro_defs.h │ │ ├── bli_gentprot_macro_defs.h │ │ ├── bli_kernel_macro_defs.h │ │ ├── bli_kernel_post_macro_defs.h │ │ ├── bli_kernel_pre_macro_defs.h │ │ ├── bli_kernel_prototypes.h │ │ ├── bli_kernel_type_defs.h │ │ ├── bli_level3_type_defs.h │ │ ├── bli_macro_defs.h │ │ ├── bli_mem_macro_defs.h │ │ ├── bli_obj_macro_defs.h │ │ ├── bli_param_macro_defs.h │ │ ├── bli_scalar_macro_defs.h │ │ ├── bli_system.h │ │ ├── bli_type_defs.h │ │ ├── blis.h │ │ └── level0 │ │ │ ├── bli_absq2s.h │ │ │ ├── bli_abval2s.h │ │ │ ├── bli_add3s.h │ │ │ ├── bli_addjs.h │ │ │ ├── bli_adds.h │ │ │ ├── bli_adds_mxn.h │ │ │ ├── bli_adds_mxn_uplo.h │ │ │ ├── bli_axmys.h │ │ │ ├── bli_axpyjs.h │ │ │ ├── bli_axpys.h │ │ │ ├── bli_cast.h │ │ │ ├── bli_conjs.h │ │ │ ├── bli_constants.h │ │ │ ├── bli_copycjs.h │ │ │ ├── bli_copyjs.h │ │ │ ├── bli_copys.h │ │ │ ├── bli_copys_mxn.h │ │ │ ├── bli_dotjs.h │ │ │ ├── bli_dots.h │ │ │ ├── bli_eq.h │ │ │ ├── bli_fprints.h │ │ │ ├── bli_gets.h │ │ │ ├── bli_inverts.h │ │ │ ├── bli_invscaljs.h │ │ │ ├── bli_invscals.h │ │ │ ├── bli_neg2s.h │ │ │ ├── bli_rands.h │ │ │ ├── bli_scal2js.h │ │ │ ├── bli_scal2s.h │ │ │ ├── bli_scalcjs.h │ │ │ ├── bli_scaljs.h │ │ │ ├── bli_scals.h │ │ │ ├── bli_set0s.h │ │ │ ├── bli_set0s_mxn.h │ │ │ ├── bli_set1s.h │ │ │ ├── bli_seti0s.h │ │ │ ├── bli_setis.h │ │ │ ├── bli_setrs.h │ │ │ ├── bli_sets.h │ │ │ ├── bli_sqrt2s.h │ │ │ ├── bli_subjs.h │ │ │ ├── bli_subs.h │ │ │ ├── bli_swaps.h │ │ │ ├── bli_xpbys.h │ │ │ ├── bli_xpbys_mxn.h │ │ │ ├── bli_xpbys_mxn_uplo.h │ │ │ ├── io │ │ │ ├── bli_scal2ios.h │ │ │ └── bli_scal2jios.h │ │ │ ├── old │ │ │ ├── bli_castfrom.h │ │ │ ├── bli_castto.h │ │ │ ├── bli_copynzjs.h │ │ │ ├── bli_copynzs.h │ │ │ ├── bli_invscalcjs.h │ │ │ ├── bli_scalcjs.h │ │ │ └── bli_set0ris_mxn.h │ │ │ ├── ri │ │ │ ├── bli_absq2ris.h │ │ │ ├── bli_abval2ris.h │ │ │ ├── bli_add3ris.h │ │ │ ├── bli_addjris.h │ │ │ ├── bli_addris.h │ │ │ ├── bli_axmyris.h │ │ │ ├── bli_axpbyris.h │ │ │ ├── bli_axpyjris.h │ │ │ ├── bli_axpyris.h │ │ │ ├── bli_conjris.h │ │ │ ├── bli_copycjris.h │ │ │ ├── bli_copyjris.h │ │ │ ├── bli_copyris.h │ │ │ ├── bli_eqris.h │ │ │ ├── bli_invertris.h │ │ │ ├── bli_invscaljris.h │ │ │ ├── bli_invscalris.h │ │ │ ├── bli_neg2ris.h │ │ │ ├── bli_scal2jris.h │ │ │ ├── bli_scal2ris.h │ │ │ ├── bli_scalcjris.h │ │ │ ├── bli_scaljris.h │ │ │ ├── bli_scalris.h │ │ │ ├── bli_scalris_mxn_uplo.h │ │ │ ├── bli_set0ris.h │ │ │ ├── bli_sqrt2ris.h │ │ │ ├── bli_subjris.h │ │ │ ├── bli_subris.h │ │ │ ├── bli_swapris.h │ │ │ └── bli_xpbyris.h │ │ │ ├── ri3 │ │ │ ├── bli_copyjri3s.h │ │ │ ├── bli_copyri3s.h │ │ │ ├── bli_scal2jri3s.h │ │ │ └── bli_scal2ri3s.h │ │ │ ├── rih │ │ │ ├── bli_scal2rihs_mxn_diag.h │ │ │ ├── bli_scal2rihs_mxn_uplo.h │ │ │ └── bli_setrihs_mxn_diag.h │ │ │ ├── ro │ │ │ ├── bli_scal2jros.h │ │ │ └── bli_scal2ros.h │ │ │ └── rpi │ │ │ ├── bli_scal2jrpis.h │ │ │ └── bli_scal2rpis.h │ ├── ind │ │ ├── bli_ind.h │ │ ├── cntl │ │ │ ├── bli_gemm3m1_cntl.c │ │ │ ├── bli_gemm3m2_cntl.c │ │ │ ├── bli_gemm3m3_cntl.c │ │ │ ├── bli_gemm3mh_cntl.c │ │ │ ├── bli_gemm4m1_cntl.c │ │ │ ├── bli_gemm4mb_cntl.c │ │ │ ├── bli_gemm4mh_cntl.c │ │ │ ├── bli_gemmind_cntl.h │ │ │ ├── bli_ind_cntl_init.c │ │ │ ├── bli_ind_cntl_init.h │ │ │ ├── bli_trsm3m1_cntl.c │ │ │ ├── bli_trsm4m1_cntl.c │ │ │ └── bli_trsmind_cntl.h │ │ ├── include │ │ │ ├── bli_kernel_3m1_macro_defs.h │ │ │ ├── bli_kernel_3m2_macro_defs.h │ │ │ ├── bli_kernel_3m3_macro_defs.h │ │ │ ├── bli_kernel_3mh_macro_defs.h │ │ │ ├── bli_kernel_4m1_macro_defs.h │ │ │ ├── bli_kernel_4mb_macro_defs.h │ │ │ ├── bli_kernel_4mh_macro_defs.h │ │ │ ├── bli_kernel_ind_macro_defs.h │ │ │ ├── bli_kernel_ind_pre_macro_defs.h │ │ │ ├── bli_kernel_ind_prototypes.h │ │ │ ├── bli_packm_3mis_macro_defs.h │ │ │ ├── bli_packm_4mi_macro_defs.h │ │ │ ├── bli_packm_ind_pre_macro_defs.h │ │ │ └── bli_packm_rih_macro_defs.h │ │ ├── oapi │ │ │ ├── bli_oapi_3m1.c │ │ │ ├── bli_oapi_3m2.c │ │ │ ├── bli_oapi_3m3.c │ │ │ ├── bli_oapi_3mh.c │ │ │ ├── bli_oapi_4m1.c │ │ │ ├── bli_oapi_4mb.c │ │ │ ├── bli_oapi_4mh.c │ │ │ └── bli_oapi_ind.h │ │ ├── query │ │ │ ├── bli_bsv_query.c │ │ │ ├── bli_bsv_query.h │ │ │ ├── bli_ind_query.c │ │ │ ├── bli_ind_query.h │ │ │ ├── bli_ukr_query.c │ │ │ └── bli_ukr_query.h │ │ ├── tapi │ │ │ ├── bli_tapi_ind.c │ │ │ └── bli_tapi_ind.h │ │ └── ukernels │ │ │ ├── gemm │ │ │ ├── bli_gemm3m1_ukr_ref.c │ │ │ ├── bli_gemm3m2_ukr_ref.c │ │ │ ├── bli_gemm3m3_ukr_ref.c │ │ │ ├── bli_gemm3mh_ukr_ref.c │ │ │ ├── bli_gemm4m1_ukr_ref.c │ │ │ ├── bli_gemm4mb_ukr_ref.c │ │ │ ├── bli_gemm4mh_ukr_ref.c │ │ │ └── bli_gemmind_ukr_ref.h │ │ │ └── trsm │ │ │ ├── bli_gemmtrsm3m1_l_ukr_ref.c │ │ │ ├── bli_gemmtrsm3m1_u_ukr_ref.c │ │ │ ├── bli_gemmtrsm4m1_l_ukr_ref.c │ │ │ ├── bli_gemmtrsm4m1_u_ukr_ref.c │ │ │ ├── bli_gemmtrsmind_x_ukr_ref.h │ │ │ ├── bli_trsm3m1_l_ukr_ref.c │ │ │ ├── bli_trsm3m1_u_ukr_ref.c │ │ │ ├── bli_trsm4m1_l_ukr_ref.c │ │ │ ├── bli_trsm4m1_u_ukr_ref.c │ │ │ └── bli_trsmind_x_ukr_ref.h │ └── util │ │ ├── amaxv │ │ ├── bli_amaxv.c │ │ ├── bli_amaxv.h │ │ ├── bli_amaxv_check.c │ │ ├── bli_amaxv_check.h │ │ ├── bli_amaxv_unb_var1.c │ │ └── bli_amaxv_unb_var1.h │ │ ├── asumv │ │ ├── bli_asumv.c │ │ ├── bli_asumv.h │ │ ├── bli_asumv_check.c │ │ ├── bli_asumv_check.h │ │ ├── bli_asumv_unb_var1.c │ │ └── bli_asumv_unb_var1.h │ │ ├── mkherm │ │ ├── bli_mkherm.c │ │ ├── bli_mkherm.h │ │ ├── bli_mkherm_check.c │ │ ├── bli_mkherm_check.h │ │ ├── bli_mkherm_unb_var1.c │ │ └── bli_mkherm_unb_var1.h │ │ ├── mksymm │ │ ├── bli_mksymm.c │ │ ├── bli_mksymm.h │ │ ├── bli_mksymm_check.c │ │ ├── bli_mksymm_check.h │ │ ├── bli_mksymm_unb_var1.c │ │ └── bli_mksymm_unb_var1.h │ │ ├── mktrim │ │ ├── bli_mktrim.c │ │ ├── bli_mktrim.h │ │ ├── bli_mktrim_check.c │ │ ├── bli_mktrim_check.h │ │ ├── bli_mktrim_unb_var1.c │ │ └── bli_mktrim_unb_var1.h │ │ ├── norm1m │ │ ├── bli_norm1m.c │ │ ├── bli_norm1m.h │ │ ├── bli_norm1m_check.c │ │ ├── bli_norm1m_check.h │ │ ├── bli_norm1m_unb_var1.c │ │ └── bli_norm1m_unb_var1.h │ │ ├── norm1v │ │ ├── bli_norm1v.c │ │ ├── bli_norm1v.h │ │ ├── bli_norm1v_check.c │ │ ├── bli_norm1v_check.h │ │ ├── bli_norm1v_unb_var1.c │ │ └── bli_norm1v_unb_var1.h │ │ ├── normfm │ │ ├── bli_normfm.c │ │ ├── bli_normfm.h │ │ ├── bli_normfm_check.c │ │ ├── bli_normfm_check.h │ │ ├── bli_normfm_unb_var1.c │ │ └── bli_normfm_unb_var1.h │ │ ├── normfv │ │ ├── bli_normfv.c │ │ ├── bli_normfv.h │ │ ├── bli_normfv_check.c │ │ ├── bli_normfv_check.h │ │ ├── bli_normfv_unb_var1.c │ │ └── bli_normfv_unb_var1.h │ │ ├── normim │ │ ├── bli_normim.c │ │ ├── bli_normim.h │ │ ├── bli_normim_check.c │ │ ├── bli_normim_check.h │ │ ├── bli_normim_unb_var1.c │ │ └── bli_normim_unb_var1.h │ │ ├── normiv │ │ ├── bli_normiv.c │ │ ├── bli_normiv.h │ │ ├── bli_normiv_check.c │ │ ├── bli_normiv_check.h │ │ ├── bli_normiv_unb_var1.c │ │ └── bli_normiv_unb_var1.h │ │ ├── printm │ │ ├── bli_fprintm.c │ │ ├── bli_fprintm.h │ │ ├── bli_fprintm_check.c │ │ ├── bli_fprintm_check.h │ │ ├── bli_printm.c │ │ └── bli_printm.h │ │ ├── printv │ │ ├── bli_fprintv.c │ │ ├── bli_fprintv.h │ │ ├── bli_fprintv_check.c │ │ ├── bli_fprintv_check.h │ │ ├── bli_printv.c │ │ └── bli_printv.h │ │ ├── randm │ │ ├── bli_randm.c │ │ ├── bli_randm.h │ │ ├── bli_randm_check.c │ │ ├── bli_randm_check.h │ │ ├── bli_randm_unb_var1.c │ │ └── bli_randm_unb_var1.h │ │ ├── randv │ │ ├── bli_randv.c │ │ ├── bli_randv.h │ │ ├── bli_randv_check.c │ │ ├── bli_randv_check.h │ │ ├── bli_randv_unb_var1.c │ │ └── bli_randv_unb_var1.h │ │ └── sumsqv │ │ ├── bli_sumsqv.c │ │ ├── bli_sumsqv.h │ │ ├── bli_sumsqv_check.c │ │ ├── bli_sumsqv_check.h │ │ ├── bli_sumsqv_unb_var1.c │ │ └── bli_sumsqv_unb_var1.h ├── install.sh ├── kernels │ ├── arm │ │ └── neon │ │ │ └── 3 │ │ │ └── bli_gemm_opt_4x4.c │ ├── armv7a │ │ └── 3 │ │ │ ├── bli_cgemm_kernel_2x2.S │ │ │ ├── bli_dgemm_kernel_4x4.S │ │ │ ├── bli_gemm_opt_4x4.c │ │ │ ├── bli_sgemm_kernel_4x4.S │ │ │ └── bli_zgemm_kernel_2x2.S │ ├── armv8a │ │ └── neon │ │ │ └── 3 │ │ │ └── bli_gemm_opt_4x4.c │ ├── bgq │ │ ├── 1 │ │ │ ├── bli_axpyv_opt_var1.c │ │ │ └── bli_dotv_opt_var1.c │ │ ├── 3 │ │ │ ├── bli_gemm_8x8.c │ │ │ └── bli_gemm_8x8.h │ │ └── 1f │ │ │ └── bli_axpyf_opt_var1.c │ ├── c99 │ │ └── 3 │ │ │ ├── bli_gemm_ref_4x4.c │ │ │ ├── bli_gemmtrsm_l_ref_4x4.c │ │ │ ├── bli_gemmtrsm_u_ref_4x4.c │ │ │ ├── bli_trsm_l_ref_4x4.c │ │ │ └── bli_trsm_u_ref_4x4.c │ ├── loongson3a │ │ └── 3 │ │ │ └── bli_gemm_opt_d4x4.c │ ├── mic │ │ └── 3 │ │ │ ├── bli_dgemm_opt_30x8.c │ │ │ └── bli_sgemm_opt_30x16.c │ ├── nacl │ │ └── pnacl │ │ │ ├── 1 │ │ │ ├── bli_axpyv_opt.c │ │ │ └── bli_dotv_opt.c │ │ │ └── 3 │ │ │ └── bli_gemm_opt.c │ ├── power7 │ │ └── 3 │ │ │ ├── bli_gemm_opt_8x4.c │ │ │ ├── bli_gemm_opt_8x4.h │ │ │ └── test │ │ │ ├── Makefile │ │ │ ├── bli_gemm_opt_8x4.c │ │ │ ├── bli_gemm_opt_8x4.h │ │ │ ├── blis_utest.h │ │ │ └── exp.c │ ├── x86 │ │ ├── 3 │ │ │ ├── bli_gemm_opt_d2x4.c │ │ │ ├── bli_gemm_opt_d2x4.h │ │ │ ├── bli_gemm_opt_d4x2.c │ │ │ ├── bli_gemm_opt_d4x2.h │ │ │ ├── bli_gemmtrsm_l_opt_d4x2.c │ │ │ ├── bli_gemmtrsm_l_opt_d4x2.h │ │ │ ├── bli_gemmtrsm_u_opt_d4x2.c │ │ │ ├── bli_gemmtrsm_u_opt_d4x2.h │ │ │ ├── bli_trsm_l_opt_d4x2.c │ │ │ └── bli_trsm_l_opt_d4x2.h │ │ └── 1m │ │ │ ├── bli_packm_2xk.c │ │ │ ├── bli_packm_2xk.h │ │ │ ├── bli_packm_4xk.c │ │ │ └── bli_packm_4xk.h │ └── x86_64 │ │ ├── avx │ │ └── 3 │ │ │ ├── bli_gemm_asm_d8x4.c │ │ │ └── bli_gemm_int_d8x4.c │ │ ├── avx2 │ │ └── 3 │ │ │ ├── bli_gemm_asm_d12x4.c │ │ │ └── bli_gemm_asm_d8x6.c │ │ ├── bulldozer │ │ └── 3 │ │ │ └── bli_gemm_4x6_FMA4.c │ │ ├── core2-sse3 │ │ ├── 1 │ │ │ ├── bli_axpyv_opt_var1.c │ │ │ └── bli_dotv_opt_var1.c │ │ ├── 3 │ │ │ ├── bli_gemm_opt_d4x4.c │ │ │ ├── bli_gemmtrsm_l_opt_d4x4.c │ │ │ ├── bli_gemmtrsm_u_opt_d4x4.c │ │ │ ├── bli_trsm_l_opt_d4x4.c │ │ │ └── bli_trsm_u_opt_d4x4.c │ │ └── 1f │ │ │ ├── bli_axpy2v_opt_var1.c │ │ │ ├── bli_axpyf_opt_var1.c │ │ │ ├── bli_axpyf_opt_var1.c.alt │ │ │ ├── bli_dotaxpyv_opt_var1.c │ │ │ ├── bli_dotxaxpyf_opt_var1.c │ │ │ ├── bli_dotxf_opt_var1.c │ │ │ └── bli_dotxf_opt_var1.c.alt │ │ └── piledriver │ │ └── 3 │ │ └── bli_gemm_new_d8x3.c ├── mpi_test │ ├── Makefile │ ├── test_gemm.c │ ├── test_hemm.c │ ├── test_her2k.c │ ├── test_herk.c │ ├── test_trmm.c │ └── test_trsm.c ├── test │ ├── 3m4m │ │ ├── Makefile │ │ ├── runme.sh │ │ └── test_gemm.c │ ├── Makefile │ ├── exec_sizes │ │ ├── Makefile │ │ ├── grab_top_outputs.sh │ │ ├── makefile.prev │ │ └── test_size.c │ ├── runme.sh │ ├── test_gemm.c │ ├── test_gemv.c │ ├── test_ger.c │ ├── test_hemm.c │ ├── test_hemv.c │ ├── test_her.c │ ├── test_her2.c │ ├── test_her2k.c │ ├── test_herk.c │ ├── test_trmm.c │ ├── test_trmv.c │ ├── test_trsm.c │ ├── test_trsv.c │ └── thread_ranges │ │ ├── Makefile │ │ └── test_ranges.c ├── testsuite │ ├── Makefile │ ├── input.general │ ├── input.operations │ ├── obj │ │ └── .gitkeep │ └── src │ │ ├── test_addm.c │ │ ├── test_addm.h │ │ ├── test_addv.c │ │ ├── test_addv.h │ │ ├── test_axpy2v.c │ │ ├── test_axpy2v.h │ │ ├── test_axpyf.c │ │ ├── test_axpyf.h │ │ ├── test_axpym.c │ │ ├── test_axpym.h │ │ ├── test_axpyv.c │ │ ├── test_axpyv.h │ │ ├── test_copym.c │ │ ├── test_copym.h │ │ ├── test_copyv.c │ │ ├── test_copyv.h │ │ ├── test_dotaxpyv.c │ │ ├── test_dotaxpyv.h │ │ ├── test_dotv.c │ │ ├── test_dotv.h │ │ ├── test_dotxaxpyf.c │ │ ├── test_dotxaxpyf.h │ │ ├── test_dotxf.c │ │ ├── test_dotxf.h │ │ ├── test_dotxv.c │ │ ├── test_dotxv.h │ │ ├── test_gemm.c │ │ ├── test_gemm.h │ │ ├── test_gemm_ukr.c │ │ ├── test_gemm_ukr.h │ │ ├── test_gemmtrsm_ukr.c │ │ ├── test_gemmtrsm_ukr.h │ │ ├── test_gemv.c │ │ ├── test_gemv.h │ │ ├── test_ger.c │ │ ├── test_ger.h │ │ ├── test_hemm.c │ │ ├── test_hemm.h │ │ ├── test_hemv.c │ │ ├── test_hemv.h │ │ ├── test_her.c │ │ ├── test_her.h │ │ ├── test_her2.c │ │ ├── test_her2.h │ │ ├── test_her2k.c │ │ ├── test_her2k.h │ │ ├── test_herk.c │ │ ├── test_herk.h │ │ ├── test_libblis.c │ │ ├── test_libblis.h │ │ ├── test_normfm.c │ │ ├── test_normfm.h │ │ ├── test_normfv.c │ │ ├── test_normfv.h │ │ ├── test_randm.c │ │ ├── test_randm.h │ │ ├── test_randv.c │ │ ├── test_randv.h │ │ ├── test_scal2m.c │ │ ├── test_scal2m.h │ │ ├── test_scal2v.c │ │ ├── test_scal2v.h │ │ ├── test_scalm.c │ │ ├── test_scalm.h │ │ ├── test_scalv.c │ │ ├── test_scalv.h │ │ ├── test_setm.c │ │ ├── test_setm.h │ │ ├── test_setv.c │ │ ├── test_setv.h │ │ ├── test_subm.c │ │ ├── test_subm.h │ │ ├── test_subv.c │ │ ├── test_subv.h │ │ ├── test_symm.c │ │ ├── test_symm.h │ │ ├── test_symv.c │ │ ├── test_symv.h │ │ ├── test_syr.c │ │ ├── test_syr.h │ │ ├── test_syr2.c │ │ ├── test_syr2.h │ │ ├── test_syr2k.c │ │ ├── test_syr2k.h │ │ ├── test_syrk.c │ │ ├── test_syrk.h │ │ ├── test_trmm.c │ │ ├── test_trmm.h │ │ ├── test_trmm3.c │ │ ├── test_trmm3.h │ │ ├── test_trmv.c │ │ ├── test_trmv.h │ │ ├── test_trsm.c │ │ ├── test_trsm.h │ │ ├── test_trsm_ukr.c │ │ ├── test_trsm_ukr.h │ │ ├── test_trsv.c │ │ └── test_trsv.h ├── version └── windows │ ├── Makefile │ ├── build │ ├── bli_config.h │ ├── bli_kernel.h │ ├── config.mk.in │ ├── defs.mk │ ├── gather-src-for-windows.py │ ├── gen-check-rev-file.py │ ├── gen-config-file.py │ ├── ignore_list │ ├── ignore_list.windows │ ├── leaf_list │ ├── libblis-symbols.def │ └── nmake-help.cmd │ ├── configure.cmd │ ├── gendll.cmd │ ├── linkargs.txt │ ├── linkargs64.txt │ ├── revision │ └── vc110.pdb ├── config ├── heatmap_viewer_reqs.txt ├── install_blis ├── src ├── correlator │ ├── Makefile │ ├── build │ │ └── .gitkeep │ ├── include │ │ ├── correlate_IO.h │ │ ├── correlate_IOx32.h │ │ ├── correlate_IOx64.h │ │ ├── correlate_MEM.h │ │ ├── correlate_function__.h │ │ ├── correlate_our_kernel.h │ │ ├── fast_print.h │ │ ├── gemm_cpu.h │ │ ├── gemm_gpu.h │ │ ├── header.h │ │ ├── input_list.h │ │ ├── kernel │ │ │ └── blislike.h │ │ ├── load_balancer.h │ │ ├── pthreads.h │ │ ├── read_file.h │ │ └── snip_processing.h │ └── src │ │ ├── correlate_IO.c │ │ ├── correlate_IOx32.c │ │ ├── correlate_IOx64.c │ │ ├── correlate_MEM.c │ │ ├── correlate_function.c │ │ ├── correlate_function_gpu.c │ │ ├── correlate_our_kernel.c │ │ ├── fast_print.c │ │ ├── gemm_cpu.c │ │ ├── gemm_gpu.c │ │ ├── input_list.c │ │ ├── kernel │ │ └── blislike.cl │ │ ├── load_balancer.c │ │ ├── pthreads.c │ │ ├── read_file.c │ │ └── snip_processing.c ├── mdf_extension │ ├── Makefile │ ├── build │ │ └── .gitkeep │ ├── include │ │ ├── cl_args.h │ │ ├── header.h │ │ ├── help_menu.h │ │ ├── io.h │ │ ├── mem.h │ │ ├── preprocess_data.h │ │ ├── process_data.h │ │ ├── read_file.h │ │ ├── snip_processing.h │ │ └── structs.h │ └── src │ │ ├── cl_args.c │ │ ├── help_menu.c │ │ ├── io.c │ │ ├── mdf_extension.c │ │ ├── mem.c │ │ ├── preprocess_data.c │ │ ├── process_data.c │ │ ├── read_file.c │ │ └── snip_processing.c └── parser │ ├── Makefile │ ├── build │ └── .gitkeep │ └── src │ ├── header.h │ ├── parse_vcf.c │ ├── parse_vcf_output.c │ └── read_file.c ├── test_dataset ├── input │ └── .gitkeep ├── output │ └── .gitkeep └── vcf │ ├── .gitkeep │ └── test_covid.vcf.gz ├── test_run └── utilities ├── find_blocksize ├── heatmap_viewer.py ├── merge_dataset_output ├── plink_run ├── split_region └── split_region_dual /INSTRUCTIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/INSTRUCTIONS.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.3 2 | -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/.travis.yml -------------------------------------------------------------------------------- /blis/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/CHANGELOG -------------------------------------------------------------------------------- /blis/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/CREDITS -------------------------------------------------------------------------------- /blis/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/INSTALL -------------------------------------------------------------------------------- /blis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/LICENSE -------------------------------------------------------------------------------- /blis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/Makefile -------------------------------------------------------------------------------- /blis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/README.md -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_amax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_amax.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_asum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_asum.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_axpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_axpy.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_c_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_c_abs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_c_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_c_div.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_copy.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_d_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_d_abs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_d_cnjg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_d_cnjg.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_d_imag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_d_imag.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_d_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_d_sign.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_dot.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_gbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_gbmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_gemm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_gemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_gemv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_ger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_ger.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_hbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_hbmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_hemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_hemm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_hemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_hemv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_her.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_her.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_her2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_her2.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_her2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_her2k.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_herk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_herk.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_hpmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_hpmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_hpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_hpr.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_hpr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_hpr2.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_lsame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_lsame.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_nrm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_nrm2.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_r_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_r_abs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_rot.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_rotg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_rotg.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_rotm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_rotm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_rotmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_rotmg.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_sbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_sbmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_scal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_scal.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_spmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_spmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_spr.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_spr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_spr2.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_swap.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_symm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_symm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_symv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_symv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_syr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_syr.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_syr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_syr2.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_syr2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_syr2k.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_syrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_syrk.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_tbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_tbmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_tbsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_tbsv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_tpmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_tpmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_tpsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_tpsv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_trmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_trmm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_trmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_trmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_trsm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_trsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_trsv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_z_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_z_abs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bla_z_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bla_z_div.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_add3s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_add3s.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_addd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_addd.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_addjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_addjs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_addm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_addm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_adds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_adds.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_addsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_addsc.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_addv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_addv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_amaxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_amaxv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_asumv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_asumv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_axmys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_axmys.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_axpyd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_axpyd.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_axpyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_axpyf.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_axpym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_axpym.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_axpys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_axpys.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_axpyv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_axpyv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_blas.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_cast.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_cblas.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_check.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_clock.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_cntl.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_conjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_conjs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_const.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_copyd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_copyd.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_copym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_copym.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_copys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_copys.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_copyv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_copyv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_divsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_divsc.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_dotjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_dotjs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_dots.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_dotv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_dotv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_dotxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_dotxf.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_dotxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_dotxv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_eq.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_eqris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_eqris.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_error.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_f2c.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_func.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_gemm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_gemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_gemv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_ger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_ger.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_gets.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_getsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_getsc.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_hemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_hemm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_hemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_hemv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_her.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_her.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_her2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_her2.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_her2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_her2k.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_herk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_herk.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_ind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_ind.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_info.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_init.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_lsame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_lsame.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_mem.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_mulsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_mulsc.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_neg2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_neg2s.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_obj.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_opid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_opid.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_packm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_packm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_packv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_packv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_part.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_pool.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_prune.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_query.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_randm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_randm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_rands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_rands.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_randv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_randv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_scald.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_scald.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_scalm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_scalm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_scals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_scals.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_scalv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_scalv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_set0s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_set0s.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_set1s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_set1s.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_setd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_setd.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_setid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_setid.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_setis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_setis.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_setm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_setm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_setrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_setrs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_sets.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_setsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_setsc.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_setv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_setv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_subd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_subd.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_subjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_subjs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_subm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_subm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_subs.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_subsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_subsc.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_subv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_subv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_swaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_swaps.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_swapv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_swapv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_symm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_symm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_symv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_symv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_syr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_syr.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_syr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_syr2.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_syr2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_syr2k.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_syrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_syrk.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_trmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_trmm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_trmm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_trmm3.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_trmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_trmv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_trsm.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_trsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_trsv.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_xpbys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_xpbys.h -------------------------------------------------------------------------------- /blis/blis/include/blis/bli_zipsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/bli_zipsc.h -------------------------------------------------------------------------------- /blis/blis/include/blis/blis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/blis.h -------------------------------------------------------------------------------- /blis/blis/include/blis/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/cblas.h -------------------------------------------------------------------------------- /blis/blis/include/blis/cblas_f77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/blis/include/blis/cblas_f77.h -------------------------------------------------------------------------------- /blis/build/auto-detect/cpuid_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/auto-detect/cpuid_arm.c -------------------------------------------------------------------------------- /blis/build/auto-detect/cpuid_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/auto-detect/cpuid_x86.c -------------------------------------------------------------------------------- /blis/build/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/bump-version.sh -------------------------------------------------------------------------------- /blis/build/check-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/check-test.sh -------------------------------------------------------------------------------- /blis/build/config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/config.mk.in -------------------------------------------------------------------------------- /blis/build/gen-make-frags/special_list: -------------------------------------------------------------------------------- 1 | noopt 2 | kernels 3 | -------------------------------------------------------------------------------- /blis/build/gen-make-frags/suffix_list: -------------------------------------------------------------------------------- 1 | c 2 | s 3 | S 4 | -------------------------------------------------------------------------------- /blis/build/mirror-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/mirror-tree.sh -------------------------------------------------------------------------------- /blis/build/templates/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/templates/license.c -------------------------------------------------------------------------------- /blis/build/templates/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/templates/license.h -------------------------------------------------------------------------------- /blis/build/templates/license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/templates/license.sh -------------------------------------------------------------------------------- /blis/build/update-version-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/build/update-version-file.sh -------------------------------------------------------------------------------- /blis/config/armv7a/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/armv7a/bli_config.h -------------------------------------------------------------------------------- /blis/config/armv7a/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/armv7a/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/armv7a/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/armv7a -------------------------------------------------------------------------------- /blis/config/armv7a/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/armv7a/make_defs.mk -------------------------------------------------------------------------------- /blis/config/armv8a/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/armv8a/bli_config.h -------------------------------------------------------------------------------- /blis/config/armv8a/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/armv8a/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/armv8a/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/armv8a/ -------------------------------------------------------------------------------- /blis/config/armv8a/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/armv8a/make_defs.mk -------------------------------------------------------------------------------- /blis/config/bgq/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/bgq/bli_config.h -------------------------------------------------------------------------------- /blis/config/bgq/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/bgq/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/bgq/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/bgq -------------------------------------------------------------------------------- /blis/config/bgq/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/bgq/make_defs.mk -------------------------------------------------------------------------------- /blis/config/bulldozer/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/bulldozer/bli_config.h -------------------------------------------------------------------------------- /blis/config/bulldozer/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/bulldozer/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/bulldozer/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/bulldozer/make_defs.mk -------------------------------------------------------------------------------- /blis/config/carrizo/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/carrizo/bli_config.h -------------------------------------------------------------------------------- /blis/config/carrizo/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/carrizo/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/carrizo/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/x86_64/piledriver -------------------------------------------------------------------------------- /blis/config/carrizo/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/carrizo/make_defs.mk -------------------------------------------------------------------------------- /blis/config/cortex-a15/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/arm/neon -------------------------------------------------------------------------------- /blis/config/cortex-a9/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/cortex-a9/bli_config.h -------------------------------------------------------------------------------- /blis/config/cortex-a9/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/cortex-a9/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/cortex-a9/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/arm/neon -------------------------------------------------------------------------------- /blis/config/cortex-a9/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/cortex-a9/make_defs.mk -------------------------------------------------------------------------------- /blis/config/dunnington/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/x86_64/core2-sse3 -------------------------------------------------------------------------------- /blis/config/haswell/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/haswell/bli_config.h -------------------------------------------------------------------------------- /blis/config/haswell/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/haswell/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/haswell/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/x86_64/avx2 -------------------------------------------------------------------------------- /blis/config/haswell/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/haswell/make_defs.mk -------------------------------------------------------------------------------- /blis/config/loongson3a/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/loongson3a -------------------------------------------------------------------------------- /blis/config/mic/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/mic/bli_config.h -------------------------------------------------------------------------------- /blis/config/mic/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/mic/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/mic/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/mic -------------------------------------------------------------------------------- /blis/config/mic/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/mic/make_defs.mk -------------------------------------------------------------------------------- /blis/config/piledriver/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/x86_64/piledriver -------------------------------------------------------------------------------- /blis/config/pnacl/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/pnacl/bli_config.h -------------------------------------------------------------------------------- /blis/config/pnacl/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/pnacl/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/pnacl/kernels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/pnacl/kernels -------------------------------------------------------------------------------- /blis/config/pnacl/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/pnacl/make_defs.mk -------------------------------------------------------------------------------- /blis/config/power7/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/power7/bli_config.h -------------------------------------------------------------------------------- /blis/config/power7/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/power7/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/power7/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/power7 -------------------------------------------------------------------------------- /blis/config/power7/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/power7/make_defs.mk -------------------------------------------------------------------------------- /blis/config/reference/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/reference/bli_config.h -------------------------------------------------------------------------------- /blis/config/reference/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/reference/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/reference/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/reference/make_defs.mk -------------------------------------------------------------------------------- /blis/config/sandybridge/kernels: -------------------------------------------------------------------------------- 1 | ../../kernels/x86_64/avx -------------------------------------------------------------------------------- /blis/config/template/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/template/bli_config.h -------------------------------------------------------------------------------- /blis/config/template/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/template/bli_kernel.h -------------------------------------------------------------------------------- /blis/config/template/make_defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/config/template/make_defs.mk -------------------------------------------------------------------------------- /blis/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/configure -------------------------------------------------------------------------------- /blis/frame/0/absqsc/bli_absqsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/absqsc/bli_absqsc.c -------------------------------------------------------------------------------- /blis/frame/0/absqsc/bli_absqsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/absqsc/bli_absqsc.h -------------------------------------------------------------------------------- /blis/frame/0/addsc/bli_addsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/addsc/bli_addsc.c -------------------------------------------------------------------------------- /blis/frame/0/addsc/bli_addsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/addsc/bli_addsc.h -------------------------------------------------------------------------------- /blis/frame/0/copysc/bli_copysc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/copysc/bli_copysc.c -------------------------------------------------------------------------------- /blis/frame/0/copysc/bli_copysc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/copysc/bli_copysc.h -------------------------------------------------------------------------------- /blis/frame/0/divsc/bli_divsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/divsc/bli_divsc.c -------------------------------------------------------------------------------- /blis/frame/0/divsc/bli_divsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/divsc/bli_divsc.h -------------------------------------------------------------------------------- /blis/frame/0/getsc/bli_getsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/getsc/bli_getsc.c -------------------------------------------------------------------------------- /blis/frame/0/getsc/bli_getsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/getsc/bli_getsc.h -------------------------------------------------------------------------------- /blis/frame/0/mulsc/bli_mulsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/mulsc/bli_mulsc.c -------------------------------------------------------------------------------- /blis/frame/0/mulsc/bli_mulsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/mulsc/bli_mulsc.h -------------------------------------------------------------------------------- /blis/frame/0/normfsc/bli_normfsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/normfsc/bli_normfsc.c -------------------------------------------------------------------------------- /blis/frame/0/normfsc/bli_normfsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/normfsc/bli_normfsc.h -------------------------------------------------------------------------------- /blis/frame/0/setsc/bli_setsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/setsc/bli_setsc.c -------------------------------------------------------------------------------- /blis/frame/0/setsc/bli_setsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/setsc/bli_setsc.h -------------------------------------------------------------------------------- /blis/frame/0/sqrtsc/bli_sqrtsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/sqrtsc/bli_sqrtsc.c -------------------------------------------------------------------------------- /blis/frame/0/sqrtsc/bli_sqrtsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/sqrtsc/bli_sqrtsc.h -------------------------------------------------------------------------------- /blis/frame/0/subsc/bli_subsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/subsc/bli_subsc.c -------------------------------------------------------------------------------- /blis/frame/0/subsc/bli_subsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/subsc/bli_subsc.h -------------------------------------------------------------------------------- /blis/frame/0/unzipsc/bli_unzipsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/unzipsc/bli_unzipsc.c -------------------------------------------------------------------------------- /blis/frame/0/unzipsc/bli_unzipsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/unzipsc/bli_unzipsc.h -------------------------------------------------------------------------------- /blis/frame/0/zipsc/bli_zipsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/zipsc/bli_zipsc.c -------------------------------------------------------------------------------- /blis/frame/0/zipsc/bli_zipsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/0/zipsc/bli_zipsc.h -------------------------------------------------------------------------------- /blis/frame/1/addv/bli_addv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/addv/bli_addv.c -------------------------------------------------------------------------------- /blis/frame/1/addv/bli_addv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/addv/bli_addv.h -------------------------------------------------------------------------------- /blis/frame/1/addv/bli_addv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/addv/bli_addv_check.c -------------------------------------------------------------------------------- /blis/frame/1/addv/bli_addv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/addv/bli_addv_check.h -------------------------------------------------------------------------------- /blis/frame/1/addv/bli_addv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/addv/bli_addv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/addv/bli_addv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/addv/bli_addv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/axpyv/bli_axpyv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/axpyv/bli_axpyv.c -------------------------------------------------------------------------------- /blis/frame/1/axpyv/bli_axpyv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/axpyv/bli_axpyv.h -------------------------------------------------------------------------------- /blis/frame/1/axpyv/bli_axpyv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/axpyv/bli_axpyv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/axpyv/bli_axpyv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/axpyv/bli_axpyv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/copyv/bli_copyv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/copyv/bli_copyv.c -------------------------------------------------------------------------------- /blis/frame/1/copyv/bli_copyv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/copyv/bli_copyv.h -------------------------------------------------------------------------------- /blis/frame/1/copyv/bli_copyv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/copyv/bli_copyv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/copyv/bli_copyv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/copyv/bli_copyv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/dotv/bli_dotv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotv/bli_dotv.c -------------------------------------------------------------------------------- /blis/frame/1/dotv/bli_dotv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotv/bli_dotv.h -------------------------------------------------------------------------------- /blis/frame/1/dotv/bli_dotv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotv/bli_dotv_check.c -------------------------------------------------------------------------------- /blis/frame/1/dotv/bli_dotv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotv/bli_dotv_check.h -------------------------------------------------------------------------------- /blis/frame/1/dotv/bli_dotv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotv/bli_dotv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/dotv/bli_dotv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotv/bli_dotv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/dotxv/bli_dotxv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotxv/bli_dotxv.c -------------------------------------------------------------------------------- /blis/frame/1/dotxv/bli_dotxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotxv/bli_dotxv.h -------------------------------------------------------------------------------- /blis/frame/1/dotxv/bli_dotxv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotxv/bli_dotxv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/dotxv/bli_dotxv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/dotxv/bli_dotxv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/invertv/bli_invertv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/invertv/bli_invertv.c -------------------------------------------------------------------------------- /blis/frame/1/invertv/bli_invertv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/invertv/bli_invertv.h -------------------------------------------------------------------------------- /blis/frame/1/packv/bli_packv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/packv/bli_packv.c -------------------------------------------------------------------------------- /blis/frame/1/packv/bli_packv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/packv/bli_packv.h -------------------------------------------------------------------------------- /blis/frame/1/packv/bli_packv_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/packv/bli_packv_int.c -------------------------------------------------------------------------------- /blis/frame/1/packv/bli_packv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/packv/bli_packv_int.h -------------------------------------------------------------------------------- /blis/frame/1/scal2v/bli_scal2v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scal2v/bli_scal2v.c -------------------------------------------------------------------------------- /blis/frame/1/scal2v/bli_scal2v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scal2v/bli_scal2v.h -------------------------------------------------------------------------------- /blis/frame/1/scalv/bli_scalv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scalv/bli_scalv.c -------------------------------------------------------------------------------- /blis/frame/1/scalv/bli_scalv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scalv/bli_scalv.h -------------------------------------------------------------------------------- /blis/frame/1/scalv/bli_scalv_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scalv/bli_scalv_int.c -------------------------------------------------------------------------------- /blis/frame/1/scalv/bli_scalv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scalv/bli_scalv_int.h -------------------------------------------------------------------------------- /blis/frame/1/scalv/bli_scalv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scalv/bli_scalv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/scalv/bli_scalv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/scalv/bli_scalv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/setv/bli_setv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/setv/bli_setv.c -------------------------------------------------------------------------------- /blis/frame/1/setv/bli_setv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/setv/bli_setv.h -------------------------------------------------------------------------------- /blis/frame/1/setv/bli_setv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/setv/bli_setv_check.c -------------------------------------------------------------------------------- /blis/frame/1/setv/bli_setv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/setv/bli_setv_check.h -------------------------------------------------------------------------------- /blis/frame/1/setv/bli_setv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/setv/bli_setv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/setv/bli_setv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/setv/bli_setv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/subv/bli_subv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/subv/bli_subv.c -------------------------------------------------------------------------------- /blis/frame/1/subv/bli_subv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/subv/bli_subv.h -------------------------------------------------------------------------------- /blis/frame/1/subv/bli_subv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/subv/bli_subv_check.c -------------------------------------------------------------------------------- /blis/frame/1/subv/bli_subv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/subv/bli_subv_check.h -------------------------------------------------------------------------------- /blis/frame/1/subv/bli_subv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/subv/bli_subv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/subv/bli_subv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/subv/bli_subv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/swapv/bli_swapv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/swapv/bli_swapv.c -------------------------------------------------------------------------------- /blis/frame/1/swapv/bli_swapv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/swapv/bli_swapv.h -------------------------------------------------------------------------------- /blis/frame/1/swapv/bli_swapv_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/swapv/bli_swapv_ref.c -------------------------------------------------------------------------------- /blis/frame/1/swapv/bli_swapv_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/swapv/bli_swapv_ref.h -------------------------------------------------------------------------------- /blis/frame/1/unpackv/bli_unpackv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/unpackv/bli_unpackv.c -------------------------------------------------------------------------------- /blis/frame/1/unpackv/bli_unpackv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1/unpackv/bli_unpackv.h -------------------------------------------------------------------------------- /blis/frame/1d/addd/bli_addd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/addd/bli_addd.c -------------------------------------------------------------------------------- /blis/frame/1d/addd/bli_addd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/addd/bli_addd.h -------------------------------------------------------------------------------- /blis/frame/1d/axpyd/bli_axpyd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/axpyd/bli_axpyd.c -------------------------------------------------------------------------------- /blis/frame/1d/axpyd/bli_axpyd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/axpyd/bli_axpyd.h -------------------------------------------------------------------------------- /blis/frame/1d/copyd/bli_copyd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/copyd/bli_copyd.c -------------------------------------------------------------------------------- /blis/frame/1d/copyd/bli_copyd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/copyd/bli_copyd.h -------------------------------------------------------------------------------- /blis/frame/1d/scal2d/bli_scal2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/scal2d/bli_scal2d.c -------------------------------------------------------------------------------- /blis/frame/1d/scal2d/bli_scal2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/scal2d/bli_scal2d.h -------------------------------------------------------------------------------- /blis/frame/1d/scald/bli_scald.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/scald/bli_scald.c -------------------------------------------------------------------------------- /blis/frame/1d/scald/bli_scald.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/scald/bli_scald.h -------------------------------------------------------------------------------- /blis/frame/1d/setd/bli_setd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/setd/bli_setd.c -------------------------------------------------------------------------------- /blis/frame/1d/setd/bli_setd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/setd/bli_setd.h -------------------------------------------------------------------------------- /blis/frame/1d/setid/bli_setid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/setid/bli_setid.c -------------------------------------------------------------------------------- /blis/frame/1d/setid/bli_setid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/setid/bli_setid.h -------------------------------------------------------------------------------- /blis/frame/1d/subd/bli_subd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/subd/bli_subd.c -------------------------------------------------------------------------------- /blis/frame/1d/subd/bli_subd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1d/subd/bli_subd.h -------------------------------------------------------------------------------- /blis/frame/1f/axpy2v/bli_axpy2v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1f/axpy2v/bli_axpy2v.c -------------------------------------------------------------------------------- /blis/frame/1f/axpy2v/bli_axpy2v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1f/axpy2v/bli_axpy2v.h -------------------------------------------------------------------------------- /blis/frame/1f/axpyf/bli_axpyf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1f/axpyf/bli_axpyf.c -------------------------------------------------------------------------------- /blis/frame/1f/axpyf/bli_axpyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1f/axpyf/bli_axpyf.h -------------------------------------------------------------------------------- /blis/frame/1f/dotxf/bli_dotxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1f/dotxf/bli_dotxf.c -------------------------------------------------------------------------------- /blis/frame/1f/dotxf/bli_dotxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1f/dotxf/bli_dotxf.h -------------------------------------------------------------------------------- /blis/frame/1m/addm/bli_addm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/addm/bli_addm.c -------------------------------------------------------------------------------- /blis/frame/1m/addm/bli_addm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/addm/bli_addm.h -------------------------------------------------------------------------------- /blis/frame/1m/axpym/bli_axpym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/axpym/bli_axpym.c -------------------------------------------------------------------------------- /blis/frame/1m/axpym/bli_axpym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/axpym/bli_axpym.h -------------------------------------------------------------------------------- /blis/frame/1m/copym/bli_copym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/copym/bli_copym.c -------------------------------------------------------------------------------- /blis/frame/1m/copym/bli_copym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/copym/bli_copym.h -------------------------------------------------------------------------------- /blis/frame/1m/packm/bli_packm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/packm/bli_packm.c -------------------------------------------------------------------------------- /blis/frame/1m/packm/bli_packm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/packm/bli_packm.h -------------------------------------------------------------------------------- /blis/frame/1m/scal2m/bli_scal2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/scal2m/bli_scal2m.c -------------------------------------------------------------------------------- /blis/frame/1m/scal2m/bli_scal2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/scal2m/bli_scal2m.h -------------------------------------------------------------------------------- /blis/frame/1m/scalm/bli_scalm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/scalm/bli_scalm.c -------------------------------------------------------------------------------- /blis/frame/1m/scalm/bli_scalm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/scalm/bli_scalm.h -------------------------------------------------------------------------------- /blis/frame/1m/setm/bli_setm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/setm/bli_setm.c -------------------------------------------------------------------------------- /blis/frame/1m/setm/bli_setm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/setm/bli_setm.h -------------------------------------------------------------------------------- /blis/frame/1m/subm/bli_subm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/subm/bli_subm.c -------------------------------------------------------------------------------- /blis/frame/1m/subm/bli_subm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/1m/subm/bli_subm.h -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv.c -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv.h -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv_check.c -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv_check.h -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv_cntl.c -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv_cntl.h -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv_int.c -------------------------------------------------------------------------------- /blis/frame/2/gemv/bli_gemv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/gemv/bli_gemv_int.h -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger.c -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger.h -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger_check.c -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger_check.h -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger_cntl.c -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger_cntl.h -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger_int.c -------------------------------------------------------------------------------- /blis/frame/2/ger/bli_ger_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/ger/bli_ger_int.h -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv.c -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv.h -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv_check.c -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv_check.h -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv_cntl.c -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv_cntl.h -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv_int.c -------------------------------------------------------------------------------- /blis/frame/2/hemv/bli_hemv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/hemv/bli_hemv_int.h -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her.c -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her.h -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her_check.c -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her_check.h -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her_cntl.c -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her_cntl.h -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her_int.c -------------------------------------------------------------------------------- /blis/frame/2/her/bli_her_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her/bli_her_int.h -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2.c -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2.h -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2_check.c -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2_check.h -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2_cntl.c -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2_cntl.h -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2_int.c -------------------------------------------------------------------------------- /blis/frame/2/her2/bli_her2_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/her2/bli_her2_int.h -------------------------------------------------------------------------------- /blis/frame/2/symv/bli_symv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/symv/bli_symv.c -------------------------------------------------------------------------------- /blis/frame/2/symv/bli_symv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/symv/bli_symv.h -------------------------------------------------------------------------------- /blis/frame/2/symv/bli_symv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/symv/bli_symv_check.c -------------------------------------------------------------------------------- /blis/frame/2/symv/bli_symv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/symv/bli_symv_check.h -------------------------------------------------------------------------------- /blis/frame/2/syr/bli_syr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr/bli_syr.c -------------------------------------------------------------------------------- /blis/frame/2/syr/bli_syr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr/bli_syr.h -------------------------------------------------------------------------------- /blis/frame/2/syr/bli_syr_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr/bli_syr_check.c -------------------------------------------------------------------------------- /blis/frame/2/syr/bli_syr_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr/bli_syr_check.h -------------------------------------------------------------------------------- /blis/frame/2/syr2/bli_syr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr2/bli_syr2.c -------------------------------------------------------------------------------- /blis/frame/2/syr2/bli_syr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr2/bli_syr2.h -------------------------------------------------------------------------------- /blis/frame/2/syr2/bli_syr2_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr2/bli_syr2_check.c -------------------------------------------------------------------------------- /blis/frame/2/syr2/bli_syr2_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/syr2/bli_syr2_check.h -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv.c -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv.h -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv_check.c -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv_check.h -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv_cntl.c -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv_cntl.h -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv_int.c -------------------------------------------------------------------------------- /blis/frame/2/trmv/bli_trmv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trmv/bli_trmv_int.h -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv.c -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv.h -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv_check.c -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv_check.h -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv_cntl.c -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv_cntl.h -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv_int.c -------------------------------------------------------------------------------- /blis/frame/2/trsv/bli_trsv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/2/trsv/bli_trsv_int.h -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm.c -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm.h -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_check.c -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_check.h -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_cntl.c -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_cntl.h -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_front.c -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_front.h -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_int.c -------------------------------------------------------------------------------- /blis/frame/3/gemm/bli_gemm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/gemm/bli_gemm_int.h -------------------------------------------------------------------------------- /blis/frame/3/hemm/bli_hemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/hemm/bli_hemm.c -------------------------------------------------------------------------------- /blis/frame/3/hemm/bli_hemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/hemm/bli_hemm.h -------------------------------------------------------------------------------- /blis/frame/3/hemm/bli_hemm_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/hemm/bli_hemm_check.c -------------------------------------------------------------------------------- /blis/frame/3/hemm/bli_hemm_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/hemm/bli_hemm_check.h -------------------------------------------------------------------------------- /blis/frame/3/hemm/bli_hemm_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/hemm/bli_hemm_front.c -------------------------------------------------------------------------------- /blis/frame/3/hemm/bli_hemm_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/hemm/bli_hemm_front.h -------------------------------------------------------------------------------- /blis/frame/3/her2k/bli_her2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/her2k/bli_her2k.c -------------------------------------------------------------------------------- /blis/frame/3/her2k/bli_her2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/her2k/bli_her2k.h -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk.c -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk.h -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_check.c -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_check.h -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_front.c -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_front.h -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_int.c -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_int.h -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_prune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_prune.c -------------------------------------------------------------------------------- /blis/frame/3/herk/bli_herk_prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/herk/bli_herk_prune.h -------------------------------------------------------------------------------- /blis/frame/3/symm/bli_symm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/symm/bli_symm.c -------------------------------------------------------------------------------- /blis/frame/3/symm/bli_symm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/symm/bli_symm.h -------------------------------------------------------------------------------- /blis/frame/3/symm/bli_symm_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/symm/bli_symm_check.c -------------------------------------------------------------------------------- /blis/frame/3/symm/bli_symm_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/symm/bli_symm_check.h -------------------------------------------------------------------------------- /blis/frame/3/symm/bli_symm_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/symm/bli_symm_front.c -------------------------------------------------------------------------------- /blis/frame/3/symm/bli_symm_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/symm/bli_symm_front.h -------------------------------------------------------------------------------- /blis/frame/3/syr2k/bli_syr2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syr2k/bli_syr2k.c -------------------------------------------------------------------------------- /blis/frame/3/syr2k/bli_syr2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syr2k/bli_syr2k.h -------------------------------------------------------------------------------- /blis/frame/3/syrk/bli_syrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syrk/bli_syrk.c -------------------------------------------------------------------------------- /blis/frame/3/syrk/bli_syrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syrk/bli_syrk.h -------------------------------------------------------------------------------- /blis/frame/3/syrk/bli_syrk_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syrk/bli_syrk_check.c -------------------------------------------------------------------------------- /blis/frame/3/syrk/bli_syrk_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syrk/bli_syrk_check.h -------------------------------------------------------------------------------- /blis/frame/3/syrk/bli_syrk_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syrk/bli_syrk_front.c -------------------------------------------------------------------------------- /blis/frame/3/syrk/bli_syrk_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/syrk/bli_syrk_front.h -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm.c -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm.h -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_check.c -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_check.h -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_front.c -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_front.h -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_int.c -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_int.h -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_prune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_prune.c -------------------------------------------------------------------------------- /blis/frame/3/trmm/bli_trmm_prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm/bli_trmm_prune.h -------------------------------------------------------------------------------- /blis/frame/3/trmm3/bli_trmm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm3/bli_trmm3.c -------------------------------------------------------------------------------- /blis/frame/3/trmm3/bli_trmm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trmm3/bli_trmm3.h -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm.c -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm.h -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_check.c -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_check.h -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_cntl.c -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_cntl.h -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_front.c -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_front.h -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_int.c -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_int.h -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_prune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_prune.c -------------------------------------------------------------------------------- /blis/frame/3/trsm/bli_trsm_prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/3/trsm/bli_trsm_prune.h -------------------------------------------------------------------------------- /blis/frame/base/bli_blocksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_blocksize.c -------------------------------------------------------------------------------- /blis/frame/base/bli_blocksize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_blocksize.h -------------------------------------------------------------------------------- /blis/frame/base/bli_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_check.c -------------------------------------------------------------------------------- /blis/frame/base/bli_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_check.h -------------------------------------------------------------------------------- /blis/frame/base/bli_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_clock.c -------------------------------------------------------------------------------- /blis/frame/base/bli_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_clock.h -------------------------------------------------------------------------------- /blis/frame/base/bli_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_const.c -------------------------------------------------------------------------------- /blis/frame/base/bli_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_const.h -------------------------------------------------------------------------------- /blis/frame/base/bli_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_error.c -------------------------------------------------------------------------------- /blis/frame/base/bli_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_error.h -------------------------------------------------------------------------------- /blis/frame/base/bli_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_func.c -------------------------------------------------------------------------------- /blis/frame/base/bli_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_func.h -------------------------------------------------------------------------------- /blis/frame/base/bli_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_getopt.c -------------------------------------------------------------------------------- /blis/frame/base/bli_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_getopt.h -------------------------------------------------------------------------------- /blis/frame/base/bli_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_info.c -------------------------------------------------------------------------------- /blis/frame/base/bli_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_info.h -------------------------------------------------------------------------------- /blis/frame/base/bli_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_init.c -------------------------------------------------------------------------------- /blis/frame/base/bli_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_init.h -------------------------------------------------------------------------------- /blis/frame/base/bli_machval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_machval.c -------------------------------------------------------------------------------- /blis/frame/base/bli_machval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_machval.h -------------------------------------------------------------------------------- /blis/frame/base/bli_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_malloc.c -------------------------------------------------------------------------------- /blis/frame/base/bli_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_malloc.h -------------------------------------------------------------------------------- /blis/frame/base/bli_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_mem.c -------------------------------------------------------------------------------- /blis/frame/base/bli_mem.c.prev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_mem.c.prev -------------------------------------------------------------------------------- /blis/frame/base/bli_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_mem.h -------------------------------------------------------------------------------- /blis/frame/base/bli_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_obj.c -------------------------------------------------------------------------------- /blis/frame/base/bli_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_obj.h -------------------------------------------------------------------------------- /blis/frame/base/bli_obj_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_obj_scalar.c -------------------------------------------------------------------------------- /blis/frame/base/bli_obj_scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_obj_scalar.h -------------------------------------------------------------------------------- /blis/frame/base/bli_opid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_opid.c -------------------------------------------------------------------------------- /blis/frame/base/bli_opid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_opid.h -------------------------------------------------------------------------------- /blis/frame/base/bli_param_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_param_map.c -------------------------------------------------------------------------------- /blis/frame/base/bli_param_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_param_map.h -------------------------------------------------------------------------------- /blis/frame/base/bli_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_part.c -------------------------------------------------------------------------------- /blis/frame/base/bli_part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_part.h -------------------------------------------------------------------------------- /blis/frame/base/bli_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_pool.c -------------------------------------------------------------------------------- /blis/frame/base/bli_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_pool.h -------------------------------------------------------------------------------- /blis/frame/base/bli_prune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_prune.c -------------------------------------------------------------------------------- /blis/frame/base/bli_prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_prune.h -------------------------------------------------------------------------------- /blis/frame/base/bli_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_query.c -------------------------------------------------------------------------------- /blis/frame/base/bli_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_query.h -------------------------------------------------------------------------------- /blis/frame/base/bli_threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_threading.c -------------------------------------------------------------------------------- /blis/frame/base/bli_threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/bli_threading.h -------------------------------------------------------------------------------- /blis/frame/base/noopt/bli_dlamch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/noopt/bli_dlamch.c -------------------------------------------------------------------------------- /blis/frame/base/noopt/bli_dlamch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/noopt/bli_dlamch.h -------------------------------------------------------------------------------- /blis/frame/base/noopt/bli_lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/noopt/bli_lsame.c -------------------------------------------------------------------------------- /blis/frame/base/noopt/bli_lsame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/noopt/bli_lsame.h -------------------------------------------------------------------------------- /blis/frame/base/noopt/bli_slamch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/noopt/bli_slamch.c -------------------------------------------------------------------------------- /blis/frame/base/noopt/bli_slamch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/base/noopt/bli_slamch.h -------------------------------------------------------------------------------- /blis/frame/cntl/bli_cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/cntl/bli_cntl.c -------------------------------------------------------------------------------- /blis/frame/cntl/bli_cntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/cntl/bli_cntl.h -------------------------------------------------------------------------------- /blis/frame/cntl/bli_cntl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/cntl/bli_cntl_init.c -------------------------------------------------------------------------------- /blis/frame/cntl/bli_cntl_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/cntl/bli_cntl_init.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_gbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_gbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_gbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_gbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hpmv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hpmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hpmv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hpr.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hpr.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hpr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hpr2.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_hpr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_hpr2.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_rot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_rot.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_rot.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_rotg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_rotg.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_rotg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_rotg.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_rotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_rotm.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_rotm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_rotm.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_sbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_sbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_sbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_sbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_spmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_spmv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_spmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_spmv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_spr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_spr.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_spr.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_spr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_spr2.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_spr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_spr2.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tbsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tbsv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tbsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tbsv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tpmv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tpmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tpmv.h -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tpsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tpsv.c -------------------------------------------------------------------------------- /blis/frame/compat/attic/bla_tpsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/attic/bla_tpsv.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_amax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_amax.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_amax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_amax.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_asum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_asum.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_asum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_asum.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_axpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_axpy.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_axpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_axpy.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_copy.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_copy.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_dot.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_dot.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_gemm.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_gemm.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_gemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_gemv.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_gemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_gemv.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_ger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_ger.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_ger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_ger.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_hemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_hemm.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_hemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_hemm.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_hemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_hemv.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_hemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_hemv.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_her.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_her.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_her.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_her.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_her2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_her2.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_her2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_her2.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_her2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_her2k.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_her2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_her2k.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_herk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_herk.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_herk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_herk.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_nrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_nrm2.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_nrm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_nrm2.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_scal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_scal.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_scal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_scal.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_swap.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_swap.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_symm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_symm.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_symm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_symm.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_symv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_symv.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_symv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_symv.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_syr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syr.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_syr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syr.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_syr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syr2.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_syr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syr2.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_syr2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syr2k.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_syr2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syr2k.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_syrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syrk.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_syrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_syrk.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_trmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trmm.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_trmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trmm.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_trmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trmv.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_trmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trmv.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_trsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trsm.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trsm.h -------------------------------------------------------------------------------- /blis/frame/compat/bla_trsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trsv.c -------------------------------------------------------------------------------- /blis/frame/compat/bla_trsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bla_trsv.h -------------------------------------------------------------------------------- /blis/frame/compat/bli_blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/bli_blas.h -------------------------------------------------------------------------------- /blis/frame/compat/cblas/cblas.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/cblas/cblas.tgz -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_gbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_gbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_gbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_gbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hpmv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hpmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hpmv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hpr.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hpr.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hpr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hpr2.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_hpr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_hpr2.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_lsame.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_lsame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_lsame.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rot.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rot.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rotg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rotg.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rotg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rotg.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rotm.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rotm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rotm.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rotmg.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_rotmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_rotmg.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_sbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_sbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_sbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_sbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_spmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_spmv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_spmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_spmv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_spr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_spr.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_spr.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_spr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_spr2.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_spr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_spr2.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tbmv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tbmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tbmv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tbsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tbsv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tbsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tbsv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tpmv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tpmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tpmv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tpsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tpsv.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_tpsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_tpsv.h -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_xerbla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_xerbla.c -------------------------------------------------------------------------------- /blis/frame/compat/f2c/bla_xerbla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/compat/f2c/bla_xerbla.h -------------------------------------------------------------------------------- /blis/frame/include/bli_f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/include/bli_f2c.h -------------------------------------------------------------------------------- /blis/frame/include/bli_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/include/bli_system.h -------------------------------------------------------------------------------- /blis/frame/include/bli_type_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/include/bli_type_defs.h -------------------------------------------------------------------------------- /blis/frame/include/blis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/include/blis.h -------------------------------------------------------------------------------- /blis/frame/include/level0/bli_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/include/level0/bli_eq.h -------------------------------------------------------------------------------- /blis/frame/ind/bli_ind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/bli_ind.h -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_3m1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_3m1.c -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_3m2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_3m2.c -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_3m3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_3m3.c -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_3mh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_3mh.c -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_4m1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_4m1.c -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_4mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_4mb.c -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_4mh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_4mh.c -------------------------------------------------------------------------------- /blis/frame/ind/oapi/bli_oapi_ind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/oapi/bli_oapi_ind.h -------------------------------------------------------------------------------- /blis/frame/ind/tapi/bli_tapi_ind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/tapi/bli_tapi_ind.c -------------------------------------------------------------------------------- /blis/frame/ind/tapi/bli_tapi_ind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/ind/tapi/bli_tapi_ind.h -------------------------------------------------------------------------------- /blis/frame/util/amaxv/bli_amaxv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/amaxv/bli_amaxv.c -------------------------------------------------------------------------------- /blis/frame/util/amaxv/bli_amaxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/amaxv/bli_amaxv.h -------------------------------------------------------------------------------- /blis/frame/util/asumv/bli_asumv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/asumv/bli_asumv.c -------------------------------------------------------------------------------- /blis/frame/util/asumv/bli_asumv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/asumv/bli_asumv.h -------------------------------------------------------------------------------- /blis/frame/util/randm/bli_randm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/randm/bli_randm.c -------------------------------------------------------------------------------- /blis/frame/util/randm/bli_randm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/randm/bli_randm.h -------------------------------------------------------------------------------- /blis/frame/util/randv/bli_randv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/randv/bli_randv.c -------------------------------------------------------------------------------- /blis/frame/util/randv/bli_randv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/frame/util/randv/bli_randv.h -------------------------------------------------------------------------------- /blis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/install.sh -------------------------------------------------------------------------------- /blis/kernels/bgq/3/bli_gemm_8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/kernels/bgq/3/bli_gemm_8x8.c -------------------------------------------------------------------------------- /blis/kernels/bgq/3/bli_gemm_8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/kernels/bgq/3/bli_gemm_8x8.h -------------------------------------------------------------------------------- /blis/kernels/power7/3/test/bli_gemm_opt_8x4.c: -------------------------------------------------------------------------------- 1 | ../bli_gemm_opt_8x4.c -------------------------------------------------------------------------------- /blis/kernels/power7/3/test/bli_gemm_opt_8x4.h: -------------------------------------------------------------------------------- 1 | ../bli_gemm_opt_8x4.h -------------------------------------------------------------------------------- /blis/kernels/power7/3/test/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/kernels/power7/3/test/exp.c -------------------------------------------------------------------------------- /blis/mpi_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/mpi_test/Makefile -------------------------------------------------------------------------------- /blis/mpi_test/test_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/mpi_test/test_gemm.c -------------------------------------------------------------------------------- /blis/mpi_test/test_hemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/mpi_test/test_hemm.c -------------------------------------------------------------------------------- /blis/mpi_test/test_her2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/mpi_test/test_her2k.c -------------------------------------------------------------------------------- /blis/mpi_test/test_herk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/mpi_test/test_herk.c -------------------------------------------------------------------------------- /blis/mpi_test/test_trmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/mpi_test/test_trmm.c -------------------------------------------------------------------------------- /blis/mpi_test/test_trsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/mpi_test/test_trsm.c -------------------------------------------------------------------------------- /blis/test/3m4m/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/3m4m/Makefile -------------------------------------------------------------------------------- /blis/test/3m4m/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/3m4m/runme.sh -------------------------------------------------------------------------------- /blis/test/3m4m/test_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/3m4m/test_gemm.c -------------------------------------------------------------------------------- /blis/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/Makefile -------------------------------------------------------------------------------- /blis/test/exec_sizes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/exec_sizes/Makefile -------------------------------------------------------------------------------- /blis/test/exec_sizes/makefile.prev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/exec_sizes/makefile.prev -------------------------------------------------------------------------------- /blis/test/exec_sizes/test_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/exec_sizes/test_size.c -------------------------------------------------------------------------------- /blis/test/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/runme.sh -------------------------------------------------------------------------------- /blis/test/test_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_gemm.c -------------------------------------------------------------------------------- /blis/test/test_gemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_gemv.c -------------------------------------------------------------------------------- /blis/test/test_ger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_ger.c -------------------------------------------------------------------------------- /blis/test/test_hemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_hemm.c -------------------------------------------------------------------------------- /blis/test/test_hemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_hemv.c -------------------------------------------------------------------------------- /blis/test/test_her.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_her.c -------------------------------------------------------------------------------- /blis/test/test_her2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_her2.c -------------------------------------------------------------------------------- /blis/test/test_her2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_her2k.c -------------------------------------------------------------------------------- /blis/test/test_herk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_herk.c -------------------------------------------------------------------------------- /blis/test/test_trmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_trmm.c -------------------------------------------------------------------------------- /blis/test/test_trmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_trmv.c -------------------------------------------------------------------------------- /blis/test/test_trsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_trsm.c -------------------------------------------------------------------------------- /blis/test/test_trsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/test_trsv.c -------------------------------------------------------------------------------- /blis/test/thread_ranges/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/test/thread_ranges/Makefile -------------------------------------------------------------------------------- /blis/testsuite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/Makefile -------------------------------------------------------------------------------- /blis/testsuite/input.general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/input.general -------------------------------------------------------------------------------- /blis/testsuite/input.operations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/input.operations -------------------------------------------------------------------------------- /blis/testsuite/obj/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blis/testsuite/src/test_addm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_addm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_addm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_addm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_addv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_addv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_addv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_addv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpy2v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpy2v.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpy2v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpy2v.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpyf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpyf.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpyf.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpym.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpym.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpyv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpyv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_axpyv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_axpyv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_copym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_copym.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_copym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_copym.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_copyv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_copyv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_copyv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_copyv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotaxpyv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotaxpyv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotaxpyv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotaxpyv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotxf.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotxf.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotxv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotxv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_dotxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_dotxv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_gemm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_gemm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_gemm_ukr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_gemm_ukr.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_gemm_ukr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_gemm_ukr.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_gemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_gemv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_gemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_gemv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_ger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_ger.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_ger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_ger.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_hemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_hemm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_hemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_hemm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_hemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_hemv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_hemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_hemv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_her.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_her.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_her.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_her.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_her2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_her2.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_her2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_her2.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_her2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_her2k.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_her2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_her2k.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_herk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_herk.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_herk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_herk.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_libblis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_libblis.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_libblis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_libblis.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_normfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_normfm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_normfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_normfm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_normfv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_normfv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_normfv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_normfv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_randm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_randm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_randm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_randm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_randv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_randv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_randv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_randv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_scal2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scal2m.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_scal2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scal2m.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_scal2v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scal2v.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_scal2v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scal2v.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_scalm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scalm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_scalm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scalm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_scalv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scalv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_scalv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_scalv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_setm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_setm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_setm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_setm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_setv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_setv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_setv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_setv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_subm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_subm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_subm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_subm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_subv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_subv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_subv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_subv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_symm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_symm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_symm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_symm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_symv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_symv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_symv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_symv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_syr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syr.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_syr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syr.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_syr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syr2.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_syr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syr2.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_syr2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syr2k.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_syr2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syr2k.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_syrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syrk.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_syrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_syrk.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_trmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trmm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_trmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trmm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_trmm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trmm3.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_trmm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trmm3.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_trmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trmv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_trmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trmv.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_trsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trsm.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trsm.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_trsm_ukr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trsm_ukr.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_trsm_ukr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trsm_ukr.h -------------------------------------------------------------------------------- /blis/testsuite/src/test_trsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trsv.c -------------------------------------------------------------------------------- /blis/testsuite/src/test_trsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/testsuite/src/test_trsv.h -------------------------------------------------------------------------------- /blis/version: -------------------------------------------------------------------------------- 1 | 0.1.8 2 | -------------------------------------------------------------------------------- /blis/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/Makefile -------------------------------------------------------------------------------- /blis/windows/build/bli_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/build/bli_config.h -------------------------------------------------------------------------------- /blis/windows/build/bli_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/build/bli_kernel.h -------------------------------------------------------------------------------- /blis/windows/build/config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/build/config.mk.in -------------------------------------------------------------------------------- /blis/windows/build/defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/build/defs.mk -------------------------------------------------------------------------------- /blis/windows/build/ignore_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/build/ignore_list -------------------------------------------------------------------------------- /blis/windows/build/ignore_list.windows: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /blis/windows/build/leaf_list: -------------------------------------------------------------------------------- 1 | c:h 2 | -------------------------------------------------------------------------------- /blis/windows/build/nmake-help.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/build/nmake-help.cmd -------------------------------------------------------------------------------- /blis/windows/configure.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/configure.cmd -------------------------------------------------------------------------------- /blis/windows/gendll.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/gendll.cmd -------------------------------------------------------------------------------- /blis/windows/linkargs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/linkargs.txt -------------------------------------------------------------------------------- /blis/windows/linkargs64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/linkargs64.txt -------------------------------------------------------------------------------- /blis/windows/revision: -------------------------------------------------------------------------------- 1 | unknown -------------------------------------------------------------------------------- /blis/windows/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/blis/windows/vc110.pdb -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/config -------------------------------------------------------------------------------- /heatmap_viewer_reqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/heatmap_viewer_reqs.txt -------------------------------------------------------------------------------- /install_blis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/install_blis -------------------------------------------------------------------------------- /src/correlator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/Makefile -------------------------------------------------------------------------------- /src/correlator/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/correlator/include/gemm_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/include/gemm_cpu.h -------------------------------------------------------------------------------- /src/correlator/include/gemm_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/include/gemm_gpu.h -------------------------------------------------------------------------------- /src/correlator/include/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/include/header.h -------------------------------------------------------------------------------- /src/correlator/include/pthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/include/pthreads.h -------------------------------------------------------------------------------- /src/correlator/include/read_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/include/read_file.h -------------------------------------------------------------------------------- /src/correlator/src/correlate_IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/correlate_IO.c -------------------------------------------------------------------------------- /src/correlator/src/correlate_MEM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/correlate_MEM.c -------------------------------------------------------------------------------- /src/correlator/src/fast_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/fast_print.c -------------------------------------------------------------------------------- /src/correlator/src/gemm_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/gemm_cpu.c -------------------------------------------------------------------------------- /src/correlator/src/gemm_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/gemm_gpu.c -------------------------------------------------------------------------------- /src/correlator/src/input_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/input_list.c -------------------------------------------------------------------------------- /src/correlator/src/load_balancer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/load_balancer.c -------------------------------------------------------------------------------- /src/correlator/src/pthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/pthreads.c -------------------------------------------------------------------------------- /src/correlator/src/read_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/correlator/src/read_file.c -------------------------------------------------------------------------------- /src/mdf_extension/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/Makefile -------------------------------------------------------------------------------- /src/mdf_extension/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mdf_extension/include/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/include/header.h -------------------------------------------------------------------------------- /src/mdf_extension/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/include/io.h -------------------------------------------------------------------------------- /src/mdf_extension/include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/include/mem.h -------------------------------------------------------------------------------- /src/mdf_extension/src/cl_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/src/cl_args.c -------------------------------------------------------------------------------- /src/mdf_extension/src/help_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/src/help_menu.c -------------------------------------------------------------------------------- /src/mdf_extension/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/src/io.c -------------------------------------------------------------------------------- /src/mdf_extension/src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/src/mem.c -------------------------------------------------------------------------------- /src/mdf_extension/src/read_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/mdf_extension/src/read_file.c -------------------------------------------------------------------------------- /src/parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/parser/Makefile -------------------------------------------------------------------------------- /src/parser/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/parser/src/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/parser/src/header.h -------------------------------------------------------------------------------- /src/parser/src/parse_vcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/parser/src/parse_vcf.c -------------------------------------------------------------------------------- /src/parser/src/parse_vcf_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/parser/src/parse_vcf_output.c -------------------------------------------------------------------------------- /src/parser/src/read_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/src/parser/src/read_file.c -------------------------------------------------------------------------------- /test_dataset/input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_dataset/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_dataset/vcf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_dataset/vcf/test_covid.vcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/test_dataset/vcf/test_covid.vcf.gz -------------------------------------------------------------------------------- /test_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/test_run -------------------------------------------------------------------------------- /utilities/find_blocksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/utilities/find_blocksize -------------------------------------------------------------------------------- /utilities/heatmap_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/utilities/heatmap_viewer.py -------------------------------------------------------------------------------- /utilities/merge_dataset_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/utilities/merge_dataset_output -------------------------------------------------------------------------------- /utilities/plink_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/utilities/plink_run -------------------------------------------------------------------------------- /utilities/split_region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/utilities/split_region -------------------------------------------------------------------------------- /utilities/split_region_dual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pephco/quickLD/HEAD/utilities/split_region_dual --------------------------------------------------------------------------------