├── .github └── workflows │ ├── build.sh │ ├── configure.sh │ ├── generate.sh │ ├── main.yml │ ├── setup.sh │ └── test.sh ├── .gitignore ├── BUGS.txt ├── CMakeLists.txt ├── COPYRIGHT ├── HIP-notes.txt ├── Makefile ├── Makefile.internal ├── Makefile.subdir ├── README ├── README-Windows ├── README-v2.txt ├── README_FP16_Iterative_Refinement.txt ├── ReleaseChecklist ├── ReleaseNotes ├── archive ├── magmablas │ └── zswapdblk_batched.cu └── sparse │ ├── blas │ └── zgeblockstruct.cu │ ├── src │ └── magma_zwrapper.cpp │ └── testing │ ├── testing_zdiagdom.cpp │ ├── testing_zgemv_cpu_gpu.cpp │ ├── testing_zjaccard.cpp │ ├── testing_zoperation.cpp │ ├── testing_zsolver_energy.cpp │ └── testing_zusemagma_example.cpp ├── control ├── Makefile ├── Makefile.src ├── abs.cpp ├── affinity.cpp ├── affinity.h ├── auxiliary.cpp ├── batched_kernel_param.h ├── connection_mgpu.cpp ├── constants.cpp ├── gbtrf_tuning │ ├── dgbtrf_batch_a100.h │ └── dgbtrf_batch_mi250x.h ├── geqrf_batched_panel_decision.h ├── geqrf_panel_decision_a100.h ├── geqrf_panel_decision_mi100.h ├── get_batched_crossover.cpp ├── get_batched_gbtrf_params.cpp ├── get_batched_gemm_decision.cpp ├── get_nb.cpp ├── get_ntcol.cpp ├── iprint.cpp ├── magma.F90 ├── magma_bulge.cpp ├── magma_cf77.cpp ├── magma_cfortran.F90 ├── magma_df77.cpp ├── magma_dfortran.F90 ├── magma_dsf77.cpp ├── magma_dsfortran.F90 ├── magma_f77.cpp ├── magma_internal.h ├── magma_param.F90 ├── magma_sf77.cpp ├── magma_sfortran.F90 ├── magma_threadsetting.cpp ├── magma_threadsetting.h ├── magma_timer.cpp ├── magma_timer.h ├── magma_winthread.cpp ├── magma_winthread.h ├── magma_yield.cpp ├── magma_zauxiliary.cpp ├── magma_zbulge.cpp ├── magma_zcf77.cpp ├── magma_zcfortran.F90 ├── magma_zf77.cpp ├── magma_zf77pgi.cpp ├── magma_zfortran.F90 ├── magma_znan_inf.cpp ├── magmablas_cf77.cpp ├── magmablas_cfortran.F90 ├── magmablas_df77.cpp ├── magmablas_dfortran.F90 ├── magmablas_dsf77.cpp ├── magmablas_dsfortran.F90 ├── magmablas_sf77.cpp ├── magmablas_sfortran.F90 ├── magmablas_zcf77.cpp ├── magmablas_zcfortran.F90 ├── magmablas_zf77.cpp ├── magmablas_zfortran.F90 ├── pthread_barrier.cpp ├── pthread_barrier.h ├── sizeptr.c ├── sqrt.cpp ├── strlcpy.cpp ├── thread_queue.cpp ├── thread_queue.hpp ├── trace.cpp ├── trace.h ├── xerbla.cpp ├── zpanel_to_q.cpp └── zprint.cpp ├── docs ├── Doxyfile ├── Doxyfile-fast ├── Doxyfile-test ├── DoxygenLayout.xml ├── Makefile ├── contributors-guide.txt ├── documentation-sparse.txt ├── documentation.txt ├── groups.dox ├── groups.sh ├── magma-filter.pl ├── magma-logo.png └── summarize_errors.pl ├── example ├── Makefile ├── README.txt ├── example_f.F90 ├── example_sparse.cpp ├── example_sparse_operator.cpp ├── example_v1.cpp └── example_v2.cpp ├── fortran ├── Makefile ├── magma2.F90 ├── magma2_common.F90 ├── magma2_zfortran.F90 ├── offset.c └── test.f90 ├── include ├── Makefile ├── Makefile.src ├── magma.h ├── magma_auxiliary.h ├── magma_batched.h ├── magma_bulge.h ├── magma_config.h.in ├── magma_copy.h ├── magma_hbatched.h ├── magma_htc.h ├── magma_lapack.h ├── magma_mangling.h ├── magma_mangling_cmake.h ├── magma_operators.h ├── magma_types.h ├── magma_v2.h ├── magma_vbatched.h ├── magma_z.h ├── magma_zbatched.h ├── magma_zbulge.h ├── magma_zbulgeinc.h ├── magma_zc.h ├── magma_zgehrd_m.h ├── magma_zlapack.h ├── magma_zvbatched.h ├── magmablas.h ├── magmablas_h.h ├── magmablas_z.h └── magmablas_zc.h ├── interface_cuda ├── Makefile ├── Makefile.src ├── alloc.cpp ├── blas_h_v2.cpp ├── blas_z_v2.cpp ├── connection_mgpu.cpp ├── copy_v2.cpp ├── error.cpp ├── error.h └── interface.cpp ├── lib └── pkgconfig │ └── magma.pc.in ├── magmablas ├── Makefile ├── Makefile.src ├── atomics.cuh ├── blas_zbatched.cpp ├── cgemm.cu ├── cgemm_batched_core.cu ├── cgemm_fermi_kernels.h ├── cgemm_vbatched_core.cu ├── cgemv_batched_core.cu ├── cgemv_vbatched_core.cu ├── cherk_batched_core.cu ├── cherk_vbatched_core.cu ├── clag2z.cu ├── clat2z.cu ├── commonblas_z.h ├── dgemm.cu ├── dgemm_batched_core.cu ├── dgemm_fermi_kernels.h ├── dgemm_vbatched_core.cu ├── dgemv_batched_core.cu ├── dgemv_vbatched_core.cu ├── dsyrk_batched_core.cu ├── dsyrk_vbatched_core.cu ├── dznrm2.cu ├── gemm_config │ ├── cgemm_param_nn.h │ ├── cgemm_param_nt.h │ ├── cgemm_param_tn.h │ ├── cgemm_param_tt.h │ ├── dgemm_param_nn.h │ ├── dgemm_param_nt.h │ ├── dgemm_param_tn.h │ ├── dgemm_param_tt.h │ ├── hgemm_param.h │ ├── sgemm_param_nn.h │ ├── sgemm_param_nt.h │ ├── sgemm_param_tn.h │ ├── sgemm_param_tt.h │ ├── zgemm_param_nn.h │ ├── zgemm_param_nt.h │ ├── zgemm_param_tn.h │ └── zgemm_param_tt.h ├── gemm_kernel.cuh ├── gemm_template_device.cuh ├── gemm_template_device_defs.cuh ├── gemm_template_kernel.cuh ├── gemm_template_kernel_batched.cuh ├── gemm_template_kernel_vbatched.cuh ├── gemv_config │ ├── gemvn_param.h │ └── gemvt_param.h ├── gemv_template_device.cuh ├── gemv_template_kernel_batched.cuh ├── gemv_template_kernel_vbatched.cuh ├── getrf_setup_pivinfo.cu ├── hemm_template_device.cuh ├── hemm_template_kernel.cuh ├── hemm_template_kernel_batched.cuh ├── hemm_template_kernel_vbatched.cuh ├── hemv_template_device.cuh ├── hemv_template_kernel_batched.cuh ├── hemv_template_kernel_vbatched.cuh ├── herk_kernel_batched.cuh ├── herk_template_kernel_batched.cuh ├── herk_template_kernel_vbatched.cuh ├── hgemm_batched_core.cu ├── hgemm_template_device.cuh ├── hgemm_template_kernel_batched.cuh ├── hlaconvert.cu ├── hlag2s.cu ├── hlaswp.cu ├── hset_pointer.cu ├── magma_templates.h ├── prefix_sum.cu ├── set_pointer.cu ├── sgemm.cu ├── sgemm_batched_core.cu ├── sgemm_fermi_kernels.h ├── sgemm_vbatched_core.cu ├── sgemv_batched_core.cu ├── sgemv_vbatched_core.cu ├── shuffle.cuh ├── slag2h.cu ├── sort.cu ├── sort.cuh ├── ssyrk_batched_core.cu ├── ssyrk_vbatched_core.cu ├── swap_scalar.cuh ├── sync.cuh ├── trmm_template_device.cuh ├── trmm_template_kernel.cuh ├── trmm_template_kernel_batched.cuh ├── trmm_template_kernel_vbatched.cuh ├── trmv_template_device.cuh ├── trmv_template_kernel.cuh ├── trsm_config │ ├── ctrsm_param.h │ ├── dtrsm_param.h │ ├── strsm_param.h │ └── ztrsm_param.h ├── trsm_template_device.cuh ├── trsm_template_kernel_batched.cuh ├── trsm_template_kernel_vbatched.cuh ├── trsv_template_device.cuh ├── trsv_template_kernel.cuh ├── trsv_template_kernel_batched.cuh ├── vbatched_aux.cu ├── vbatched_check.cu ├── zaxpycp.cu ├── zbcyclic.cpp ├── zcaxpycp.cu ├── zclaswp.cu ├── zdiinertia.cu ├── zgbsv_kernels.cu ├── zgbtf2_devicefunc.cuh ├── zgbtf2_kernels.cu ├── zgbtrf_batched_fused_sm.cu ├── zgbtrf_batched_sliding_window_sm.cu ├── zgbtrs_kernels.cu ├── zgeadd.cu ├── zgeadd2.cu ├── zgeadd_batched.cu ├── zgeam.cu ├── zgemm.cu ├── zgemm_batched.cpp ├── zgemm_batched_core.cu ├── zgemm_batched_smallsq.cu ├── zgemm_reduce.cu ├── zgemm_vbatched.cpp ├── zgemm_vbatched_core.cu ├── zgemv_batched.cpp ├── zgemv_batched_core.cu ├── zgemv_batched_smallsq.cu ├── zgemv_conj.cu ├── zgemv_fermi.cu ├── zgemv_vbatched.cpp ├── zgemv_vbatched_core.cu ├── zgeqr2.cpp ├── zgeqr2_batched.cu ├── zgeqr2_batched_fused.cuh ├── zgeqr2_batched_fused_reg.cu ├── zgeqr2_batched_fused_reg_medium.cu ├── zgeqr2_batched_fused_reg_tall.cu ├── zgeqr2_batched_fused_sm.cu ├── zgeqr2x_gpu-v4.cu ├── zgeqrf_batched_smallsq.cu ├── zgerbt.cu ├── zgerbt.h ├── zgerbt_func_batched.cu ├── zgerbt_kernels.cu ├── zgesv_batched_small.cu ├── zgetf2.cu ├── zgetf2_devicefunc.cuh ├── zgetf2_kernels.cu ├── zgetf2_kernels_var.cu ├── zgetf2_native_kernel.cu ├── zgetf2_nopiv_devicefunc.cuh ├── zgetf2_nopiv_kernels.cu ├── zgetf2_nopiv_kernels_var.cu ├── zgetmatrix_transpose.cpp ├── zgetmatrix_transpose_mgpu.cpp ├── zgetrf_batched_smallsq_noshfl.cu ├── zheinertia.cu ├── zhemm.cu ├── zhemm_batched_core.cu ├── zhemm_mgpu.cpp ├── zhemm_vbatched.cpp ├── zhemm_vbatched_core.cu ├── zhemv.cu ├── zhemv_batched_core.cu ├── zhemv_mgpu.cu ├── zhemv_mgpu_upper.cu ├── zhemv_upper.cu ├── zhemv_vbatched.cpp ├── zhemv_vbatched_core.cu ├── zher2k.cpp ├── zher2k_batched.cpp ├── zher2k_mgpu.cpp ├── zher2k_vbatched.cpp ├── zherk.cpp ├── zherk_batched.cpp ├── zherk_batched_core.cu ├── zherk_mgpu.cpp ├── zherk_small_reduce.cu ├── zherk_vbatched.cpp ├── zherk_vbatched_core.cu ├── zhetrs.cu ├── zlacpy.cu ├── zlacpy_conj.cu ├── zlacpy_sym_in.cu ├── zlacpy_sym_out.cu ├── zlag2c.cu ├── zlange.cu ├── zlanhe.cu ├── zlaqps2_gpu.cu ├── zlarf.cu ├── zlarf_batched_fused.cuh ├── zlarf_batched_fused_reg.cu ├── zlarf_batched_fused_reg_medium.cu ├── zlarf_batched_fused_reg_tall.cu ├── zlarf_batched_fused_sm.cu ├── zlarfbx.cu ├── zlarfg-v2.cu ├── zlarfg.cu ├── zlarfg_devicesfunc.cuh ├── zlarfgx-v2.cu ├── zlarft_kernels.cu ├── zlarfx.cu ├── zlascl.cu ├── zlascl2.cu ├── zlascl_2x2.cu ├── zlascl_diag.cu ├── zlaset.cu ├── zlaset_band.cu ├── zlaswp.cu ├── zlaswp_batched.cu ├── zlaswp_device.cuh ├── zlaswp_sym.cu ├── zlaswp_vbatched.cu ├── zlat2c.cu ├── zposv_irgmres_kernels.cu ├── zpotf2.cu ├── zpotf2_devicesfunc.cuh ├── zpotf2_kernels.cu ├── zpotf2_kernels_var.cu ├── zset_pointer.cu ├── zsetmatrix_transpose.cpp ├── zsetmatrix_transpose_mgpu.cpp ├── zswap.cu ├── zswapblk.cu ├── zswapdblk.cu ├── zsymm.cu ├── zsymmetrize.cu ├── zsymmetrize_tiles.cu ├── zsymv.cu ├── zsymv_upper.cu ├── zsyr2k_batched.cpp ├── zsyr2k_vbatched.cpp ├── zsyrk_vbatched.cpp ├── ztranspose.cu ├── ztranspose_conj.cu ├── ztranspose_conj_inplace.cu ├── ztranspose_inplace.cu ├── ztrmm.cu ├── ztrmm_batched_core.cu ├── ztrmm_vbatched.cpp ├── ztrmm_vbatched_core.cu ├── ztrmv.cu ├── ztrsm.cu ├── ztrsm_batched.cpp ├── ztrsm_batched_core.cpp ├── ztrsm_inv_vbatched.cpp ├── ztrsm_inv_vbatched_core.cu ├── ztrsm_small_batched.cu ├── ztrsm_small_vbatched.cu ├── ztrsm_vbatched.cpp ├── ztrsm_vbatched_core.cpp ├── ztrsv.cu ├── ztrsv_batched.cu ├── ztrtri.cuh ├── ztrtri_diag.cu ├── ztrtri_diag_batched.cu ├── ztrtri_diag_vbatched.cu ├── ztrtri_lower.cu ├── ztrtri_lower_batched.cu ├── ztrtri_lower_device.cuh ├── ztrtri_upper.cu ├── ztrtri_upper_batched.cu └── ztrtri_upper_device.cuh ├── make.check-aocl-blis ├── make.check-atlas ├── make.check-cuda ├── make.check-hip ├── make.check-mkl ├── make.check-openblas ├── make.gen.hipMAGMA ├── make.inc-examples ├── make.inc.aocl-blis ├── make.inc.hip-gcc-mkl ├── make.inc.hip-gcc-openblas ├── make.inc.mkl-gcc ├── make.inc.mkl-gcc-debug ├── make.inc.mkl-gcc-ilp64 ├── make.inc.mkl-gcc-ilp64-debug ├── make.inc.mkl-icx ├── make.inc.mkl-icx-debug ├── make.inc.mkl-icx-ilp64 ├── make.inc.mkl-icx-ilp64-debug ├── make.inc.openblas ├── make.inc.openblas-debug └── make.inc.power9-essl ├── results ├── parse.py ├── plots.py ├── readme.txt ├── run ├── run_all.csh ├── run_amigos.csh ├── run_geev.csh ├── run_setup.csh ├── run_svd.csh ├── run_syev.csh ├── run_syev_2stage.csh ├── run_symv.csh ├── util.py ├── v1.5.0 │ └── cuda7.0-k40c │ │ ├── cgeev.txt │ │ ├── cgeqrf.txt │ │ ├── cgetrf.txt │ │ ├── cheevd.txt │ │ ├── cheevd_2stage.txt │ │ ├── chemv.txt │ │ ├── cpotrf.txt │ │ ├── dgeev.txt │ │ ├── dgeqrf.txt │ │ ├── dgetrf.txt │ │ ├── dpotrf.txt │ │ ├── dsyevd.txt │ │ ├── dsyevd_2stage.txt │ │ ├── dsymv.txt │ │ ├── setup.txt │ │ ├── sgeev.txt │ │ ├── sgeqrf.txt │ │ ├── sgetrf.txt │ │ ├── spotrf.txt │ │ ├── ssyevd.txt │ │ ├── ssyevd_2stage.txt │ │ ├── ssymv.txt │ │ ├── zgeev.txt │ │ ├── zgeqrf.txt │ │ ├── zgetrf.txt │ │ ├── zheevd.txt │ │ ├── zheevd_2stage.txt │ │ ├── zhemv.txt │ │ └── zpotrf.txt ├── v1.6.0 │ └── cuda7.0-k40c │ │ ├── cgeev.txt │ │ ├── cgeqrf.txt │ │ ├── cgetrf.txt │ │ ├── cheevd.txt │ │ ├── cheevd_2stage.txt │ │ ├── chemv.txt │ │ ├── cpotrf.txt │ │ ├── dgeev.txt │ │ ├── dgeqrf.txt │ │ ├── dgetrf.txt │ │ ├── dpotrf.txt │ │ ├── dsyevd.txt │ │ ├── dsyevd_2stage.txt │ │ ├── dsymv.txt │ │ ├── setup.txt │ │ ├── sgeev.txt │ │ ├── sgeqrf.txt │ │ ├── sgetrf.txt │ │ ├── spotrf.txt │ │ ├── ssyevd.txt │ │ ├── ssyevd_2stage.txt │ │ ├── ssymv.txt │ │ ├── zgeev.txt │ │ ├── zgeqrf.txt │ │ ├── zgetrf.txt │ │ ├── zheevd.txt │ │ ├── zheevd_2stage.txt │ │ ├── zhemv.txt │ │ └── zpotrf.txt ├── v1.6.1 │ └── cuda7.0-k40c │ │ ├── cgeev.txt │ │ ├── cgeqrf.txt │ │ ├── cgesvd.txt │ │ ├── cgetrf.txt │ │ ├── cheevd.txt │ │ ├── cheevd_2stage.txt │ │ ├── chemv.txt │ │ ├── cpotrf.txt │ │ ├── dgeev.txt │ │ ├── dgeqrf.txt │ │ ├── dgesvd.txt │ │ ├── dgetrf.txt │ │ ├── dpotrf.txt │ │ ├── dsyevd.txt │ │ ├── dsyevd_2stage.txt │ │ ├── dsymv.txt │ │ ├── setup.txt │ │ ├── sgeev.txt │ │ ├── sgeqrf.txt │ │ ├── sgesvd.txt │ │ ├── sgetrf.txt │ │ ├── spotrf.txt │ │ ├── ssyevd.txt │ │ ├── ssyevd_2stage.txt │ │ ├── ssymv.txt │ │ ├── zgeev.txt │ │ ├── zgeqrf.txt │ │ ├── zgesvd.txt │ │ ├── zgetrf.txt │ │ ├── zheevd.txt │ │ ├── zheevd_2stage.txt │ │ ├── zhemv.txt │ │ └── zpotrf.txt ├── v1.6.2 │ └── cuda7.0-k40c │ │ ├── cheevd.txt │ │ ├── dsyevd.txt │ │ ├── ssyevd.txt │ │ └── zheevd.txt ├── v1.7.0 │ └── cuda7.0-k40c │ │ ├── cgeev.txt │ │ ├── cgeqrf.txt │ │ ├── cgesvd.txt │ │ ├── cgetrf.txt │ │ ├── cheevd.txt │ │ ├── cheevd_2stage.txt │ │ ├── chemv.txt │ │ ├── cpotrf.txt │ │ ├── dgeev.txt │ │ ├── dgeqrf.txt │ │ ├── dgesvd.txt │ │ ├── dgetrf.txt │ │ ├── dpotrf.txt │ │ ├── dsyevd.txt │ │ ├── dsyevd_2stage.txt │ │ ├── dsymv.txt │ │ ├── log.txt │ │ ├── setup.txt │ │ ├── sgeev.txt │ │ ├── sgeqrf.txt │ │ ├── sgesvd.txt │ │ ├── sgetrf.txt │ │ ├── spotrf.txt │ │ ├── ssyevd.txt │ │ ├── ssyevd_2stage.txt │ │ ├── ssymv.txt │ │ ├── zgeev.txt │ │ ├── zgeqrf.txt │ │ ├── zgesvd.txt │ │ ├── zgetrf.txt │ │ ├── zheevd.txt │ │ ├── zheevd_2stage.txt │ │ ├── zhemv.txt │ │ └── zpotrf.txt ├── v150_cuda70_k40c.py ├── v160_cuda70_k40c.py ├── v161_cuda70_k40c.py ├── v162_cuda70_k40c.py ├── v170_cuda70_k40c.py ├── v170_geev_rn.pdf ├── v170_geev_rv.pdf ├── v170_geqrf.pdf ├── v170_gesvd_jn.pdf ├── v170_gesvd_js.pdf ├── v170_getrf.pdf ├── v170_potrf.pdf ├── v170_syev_jn.pdf ├── v170_syev_jv.pdf ├── v170_symv.pdf ├── v2.0.0 │ └── cuda7.0-k40c │ │ ├── cgeqrf.txt │ │ ├── cgesvd.txt │ │ ├── cgetrf.txt │ │ ├── cheevd.txt │ │ ├── cheevd_2stage.txt │ │ ├── chemv.txt │ │ ├── cpotrf.txt │ │ ├── dgeqrf.txt │ │ ├── dgesvd.txt │ │ ├── dgetrf.txt │ │ ├── dpotrf.txt │ │ ├── dsyevd.txt │ │ ├── dsyevd_2stage.txt │ │ ├── dsymv.txt │ │ ├── log.txt │ │ ├── setup.txt │ │ ├── sgeqrf.txt │ │ ├── sgesvd.txt │ │ ├── sgetrf.txt │ │ ├── spotrf.txt │ │ ├── ssyevd.txt │ │ ├── ssyevd_2stage.txt │ │ ├── ssymv.txt │ │ ├── zgeqrf.txt │ │ ├── zgesvd.txt │ │ ├── zgetrf.txt │ │ ├── zheevd.txt │ │ ├── zheevd_2stage.txt │ │ ├── zhemv.txt │ │ └── zpotrf.txt └── v200_cuda70_k40c.py ├── scripts ├── check.pl ├── convert_v2_kernel.pl ├── convert_v2_readme.txt ├── convert_v2_src.pl ├── convert_v2_zgehrd.html ├── convert_v2_zgeqrf_gpu.html ├── convert_v2_zlahr2.html ├── convert_v2_zlahru.html ├── doxygenify.pl ├── doxygenify_sparse.pl └── struct_init.pl ├── sparse ├── Makefile ├── Makefile.src ├── blas │ ├── Makefile │ ├── Makefile.src │ ├── atomicopsdouble.h │ ├── atomicopsfloat.h │ ├── atomicopsmagmaDoubleComplex.h │ ├── atomicopsmagmaFloatComplex.h │ ├── magma_trisolve.cpp │ ├── magma_trisolve.h │ ├── magma_z_blaswrapper.cpp │ ├── magma_zcuspaxpy.cpp │ ├── magma_zcuspmm.cpp │ ├── magma_zdiagcheck.cu │ ├── magma_zmatrixtools_gpu.cu │ ├── magma_zmconjugate.cu │ ├── magma_zmcsrcompressor_gpu.cu │ ├── magma_ztrisolve.cpp │ ├── zcompact.cu │ ├── zge3pt.cu │ ├── zgecscsyncfreetrsm.cu │ ├── zgecsrmv.cu │ ├── zgeellmv.cu │ ├── zgeellrtmv.cu │ ├── zgeelltmv.cu │ ├── zgemvmdot.cu │ ├── zgesellcmmv.cu │ ├── zgesellcmv.cu │ ├── zilu.cpp │ ├── zjaccard_weights.cu │ ├── zjacobisetup.cu │ ├── zlobpcg_maxpy.cu │ ├── zlobpcg_residuals.cu │ ├── zlobpcg_shift.cu │ ├── zmdot_shfl.cu │ ├── zmdotc.cu │ ├── zmergebicgstab.cu │ ├── zmergecg.cu │ ├── zmergecgs.cu │ ├── zmergeidr.cu │ ├── zmergeqmr.cu │ ├── zmergetfqmr.cu │ ├── zmgecsrmv.cu │ ├── zmgeellmv.cu │ ├── zmgeelltmv.cu │ └── zmgesellcmmv.cu ├── control │ ├── Makefile │ ├── Makefile.src │ ├── error.cpp │ ├── magma_zcsrsplit.cpp │ ├── magma_zfree.cpp │ ├── magma_zfrobenius.cpp │ ├── magma_zmatrix_tools.cpp │ ├── magma_zmatrixchar.cpp │ ├── magma_zmconvert.cpp │ ├── magma_zmcsrcompressor.cpp │ ├── magma_zmcsrpass.cpp │ ├── magma_zmcsrpass_gpu.cpp │ ├── magma_zmdiagdom.cpp │ ├── magma_zmdiff.cpp │ ├── magma_zmfrobenius.cpp │ ├── magma_zmgenerator.cpp │ ├── magma_zmilustruct.cpp │ ├── magma_zmio.cpp │ ├── magma_zmlumerge.cpp │ ├── magma_zmscale.cpp │ ├── magma_zmshrink.cpp │ ├── magma_zmslice.cpp │ ├── magma_zmtransfer.cpp │ ├── magma_zmtranspose.cpp │ ├── magma_zmtranspose_cpu.cpp │ ├── magma_zsolverinfo.cpp │ ├── magma_zsort.cpp │ ├── magma_zutil_sparse.cpp │ ├── magma_zvinit.cpp │ ├── magma_zvio.cpp │ ├── magma_zvpass.cpp │ ├── magma_zvpass_gpu.cpp │ ├── magma_zvtranspose.cpp │ ├── magmasparse_internal.h │ └── mmio.cpp ├── include │ ├── Makefile │ ├── Makefile.src │ ├── magmasparse.h │ ├── magmasparse_mmio.h │ ├── magmasparse_types.h │ └── magmasparse_z.h ├── python │ ├── cg_example.py │ └── magma_interface.py ├── src │ ├── Makefile │ ├── Makefile.src │ ├── magma_z_precond_wrapper.cpp │ ├── magma_z_solver_wrapper.cpp │ ├── magma_zcustomprecond.cpp │ ├── magma_zcustomspmv.cpp │ ├── magma_zqr_wrapper.cpp │ ├── zbicg.cpp │ ├── zbicgstab.cpp │ ├── zbicgstab_merge.cpp │ ├── zbombard.cpp │ ├── zbombard_merge.cpp │ ├── zbpcg.cpp │ ├── zcg.cpp │ ├── zcg_merge.cpp │ ├── zcg_res.cpp │ ├── zcgs.cpp │ ├── zcgs_merge.cpp │ ├── zfgmres.cpp │ ├── zidr.cpp │ ├── zidr_merge.cpp │ ├── zidr_strms.cpp │ ├── zjacobi.cpp │ ├── zlobpcg.cpp │ ├── zlsqr.cpp │ ├── zpbicg.cpp │ ├── zpbicgstab.cpp │ ├── zpbicgstab_merge.cpp │ ├── zpcg.cpp │ ├── zpcg_merge.cpp │ ├── zpcgs.cpp │ ├── zpcgs_merge.cpp │ ├── zpidr.cpp │ ├── zpidr_merge.cpp │ ├── zpidr_strms.cpp │ ├── zpqmr.cpp │ ├── zpqmr_merge.cpp │ ├── zptfqmr.cpp │ ├── zptfqmr_merge.cpp │ ├── zqmr.cpp │ ├── zqmr_merge.cpp │ ├── zresidual.cpp │ ├── zresidualvec.cpp │ ├── ztfqmr.cpp │ └── ztfqmr_merge.cpp └── testing │ ├── Makefile │ ├── Makefile.src │ ├── plot_convergence.m │ ├── run_tests.py │ ├── test_matrices │ ├── Trefethen_20.mtx │ ├── Trefethen_2000.mtx │ ├── Trefethen_zerodiag.mtx │ ├── ani5_crop.mtx │ └── pores_1.mtx │ ├── testing_zblas.cpp │ ├── testing_zdot.cpp │ ├── testing_zio.cpp │ ├── testing_zmadd.cpp │ ├── testing_zmatrix.cpp │ ├── testing_zmatrixinfo.cpp │ ├── testing_zmcompressor.cpp │ ├── testing_zmconverter.cpp │ ├── testing_zmdotc.cpp │ ├── testing_zpreconditioner.cpp │ ├── testing_zsolver.cpp │ ├── testing_zsolver_rhs.cpp │ ├── testing_zsolver_rhs_scaling.cpp │ ├── testing_zsort.cpp │ ├── testing_zspmm.cpp │ ├── testing_zspmv.cpp │ ├── testing_zspmv_check.cpp │ └── testing_zsptrsv.cpp ├── src ├── Makefile ├── Makefile.src ├── cblas_z.cpp ├── core_zhbtype1cb.cpp ├── core_zhbtype2cb.cpp ├── core_zhbtype3cb.cpp ├── core_zlarfy.cpp ├── dbulge_aux.cpp ├── dfgmres_spd_gpu.cpp ├── dgeev.cpp ├── dgeev_m.cpp ├── dgesdd.cpp ├── dgesvd.cpp ├── dgmres_plu_gpu.cpp ├── dlaex0.cpp ├── dlaex0_m.cpp ├── dlaex1.cpp ├── dlaex1_m.cpp ├── dlaex3.cpp ├── dlaex3_m.cpp ├── dlaln2.cpp ├── dlaqtrsd.cpp ├── dmove_eig.cpp ├── dshposv_gmres_gpu.cpp ├── dsidi.cpp ├── dstedx.cpp ├── dstedx_m.cpp ├── dsyevd.cpp ├── dsyevd_gpu.cpp ├── dsyevd_m.cpp ├── dsyevdx.cpp ├── dsyevdx_gpu.cpp ├── dsyevdx_m.cpp ├── dsygvd.cpp ├── dsygvd_m.cpp ├── dsygvdx.cpp ├── dsygvdx_m.cpp ├── dtrevc3.cpp ├── dtrevc3_mt.cpp ├── dxgesv_gmres_gpu.cpp ├── shpotrf_gpu.cpp ├── xhsgetrf_gpu.cpp ├── xshgetrf_gpu.cpp ├── zbulge_applyQ_v2.cpp ├── zbulge_applyQ_v2_m.cpp ├── zbulge_aux.cpp ├── zbulge_back.cpp ├── zbulge_back_m.cpp ├── zbulge_kernel.cpp ├── zbulge_kernel_v2.cpp ├── zcgeqrsv_gpu.cpp ├── zcgesv_gpu.cpp ├── zcgetrs_gpu.cpp ├── zchesv_gpu.cpp ├── zcposv_gpu.cpp ├── zgbsv_batched.cpp ├── zgbsv_gpu.cpp ├── zgbtrf_batched.cpp ├── zgbtrf_gpu.cpp ├── zgbtrs_batched.cpp ├── zgebrd.cpp ├── zgeev.cpp ├── zgeev_m.cpp ├── zgegqr_gpu.cpp ├── zgehrd.cpp ├── zgehrd2.cpp ├── zgehrd_m.cpp ├── zgelqf.cpp ├── zgelqf_gpu.cpp ├── zgels.cpp ├── zgels3_gpu.cpp ├── zgels_gpu.cpp ├── zgeqlf.cpp ├── zgeqp3.cpp ├── zgeqp3_gpu.cpp ├── zgeqr2x_gpu-v2.cpp ├── zgeqr2x_gpu-v3.cpp ├── zgeqr2x_gpu.cpp ├── zgeqrf.cpp ├── zgeqrf2_gpu.cpp ├── zgeqrf3_gpu.cpp ├── zgeqrf_batched.cpp ├── zgeqrf_expert_batched.cpp ├── zgeqrf_gpu.cpp ├── zgeqrf_m.cpp ├── zgeqrf_mgpu.cpp ├── zgeqrf_ooc.cpp ├── zgeqrf_panel_batched.cpp ├── zgeqrs3_gpu.cpp ├── zgeqrs_gpu.cpp ├── zgerbt_batched.cpp ├── zgerbt_gpu.cpp ├── zgerfs_nopiv_gpu.cpp ├── zgesdd.cpp ├── zgesv.cpp ├── zgesv_batched.cpp ├── zgesv_gpu.cpp ├── zgesv_nopiv_batched.cpp ├── zgesv_nopiv_gpu.cpp ├── zgesv_rbt.cpp ├── zgesv_rbt_batched.cpp ├── zgesvd.cpp ├── zgetf2_batched.cpp ├── zgetf2_native.cpp ├── zgetf2_nopiv.cpp ├── zgetf2_nopiv_batched.cpp ├── zgetf2_nopiv_vbatched.cpp ├── zgetf2_vbatched.cpp ├── zgetrf.cpp ├── zgetrf2_mgpu.cpp ├── zgetrf_batched.cpp ├── zgetrf_gpu.cpp ├── zgetrf_m.cpp ├── zgetrf_mgpu.cpp ├── zgetrf_nopiv.cpp ├── zgetrf_nopiv_batched.cpp ├── zgetrf_nopiv_gpu.cpp ├── zgetrf_nopiv_panel_vbatched.cpp ├── zgetrf_nopiv_vbatched.cpp ├── zgetrf_panel_batched.cpp ├── zgetrf_panel_native.cpp ├── zgetrf_panel_nopiv_batched.cpp ├── zgetrf_panel_vbatched.cpp ├── zgetrf_vbatched.cpp ├── zgetri_gpu.cpp ├── zgetri_outofplace_batched.cpp ├── zgetrs_batched.cpp ├── zgetrs_gpu.cpp ├── zgetrs_nopiv_batched.cpp ├── zgetrs_nopiv_gpu.cpp ├── zgglse.cpp ├── zggrqf.cpp ├── zheevd.cpp ├── zheevd_gpu.cpp ├── zheevd_m.cpp ├── zheevdx.cpp ├── zheevdx_2stage.cpp ├── zheevdx_2stage_m.cpp ├── zheevdx_gpu.cpp ├── zheevdx_m.cpp ├── zheevr.cpp ├── zheevr_gpu.cpp ├── zheevx.cpp ├── zheevx_gpu.cpp ├── zhegst.cpp ├── zhegst_gpu.cpp ├── zhegst_m.cpp ├── zhegvd.cpp ├── zhegvd_m.cpp ├── zhegvdx.cpp ├── zhegvdx_2stage.cpp ├── zhegvdx_2stage_m.cpp ├── zhegvdx_m.cpp ├── zhegvr.cpp ├── zhegvx.cpp ├── zhesv.cpp ├── zhesv_nopiv_gpu.cpp ├── zhetrd.cpp ├── zhetrd2_gpu.cpp ├── zhetrd_gpu.cpp ├── zhetrd_hb2st.cpp ├── zhetrd_he2hb.cpp ├── zhetrd_he2hb_mgpu.cpp ├── zhetrd_mgpu.cpp ├── zhetrf.cpp ├── zhetrf_aasen.cpp ├── zhetrf_gpu.cpp ├── zhetrf_nopiv.cpp ├── zhetrf_nopiv_cpu.cpp ├── zhetrf_nopiv_gpu.cpp ├── zhetrs_nopiv_gpu.cpp ├── zlabrd_gpu.cpp ├── zlahef_gpu.cpp ├── zlahr2.cpp ├── zlahr2_m.cpp ├── zlahru.cpp ├── zlahru_m.cpp ├── zlaqps.cpp ├── zlarfb_gemm_batched.cpp ├── zlarfb_gpu.cpp ├── zlarfb_gpu_gemm.cpp ├── zlarft_batched.cpp ├── zlatrd.cpp ├── zlatrd2.cpp ├── zlatrd_mgpu.cpp ├── zlatrsd.cpp ├── zlauum.cpp ├── zlauum_gpu.cpp ├── zposv.cpp ├── zposv_batched.cpp ├── zposv_gpu.cpp ├── zpotf2_batched.cpp ├── zpotf2_vbatched.cpp ├── zpotrf.cpp ├── zpotrf3_mgpu.cpp ├── zpotrf_batched.cpp ├── zpotrf_gpu.cpp ├── zpotrf_m.cpp ├── zpotrf_mgpu.cpp ├── zpotrf_mgpu_right.cpp ├── zpotrf_panel_batched.cpp ├── zpotrf_panel_native.cpp ├── zpotrf_panel_vbatched.cpp ├── zpotrf_vbatched.cpp ├── zpotri.cpp ├── zpotri_gpu.cpp ├── zpotrs_batched.cpp ├── zpotrs_gpu.cpp ├── zstedx.cpp ├── zstedx_m.cpp ├── zsysv_nopiv_gpu.cpp ├── zsytrf_nopiv_cpu.cpp ├── zsytrf_nopiv_gpu.cpp ├── zsytrs_nopiv_gpu.cpp ├── ztrevc3.cpp ├── ztrevc3_mt.cpp ├── ztrsm_m.cpp ├── ztrtri.cpp ├── ztrtri_gpu.cpp ├── zungbr.cpp ├── zunghr.cpp ├── zunghr_m.cpp ├── zunglq.cpp ├── zungqr.cpp ├── zungqr2.cpp ├── zungqr_2stage_gpu.cpp ├── zungqr_gpu.cpp ├── zungqr_m.cpp ├── zungtr.cpp ├── zunmbr.cpp ├── zunmlq.cpp ├── zunmql.cpp ├── zunmql2_gpu.cpp ├── zunmqr.cpp ├── zunmqr2_gpu.cpp ├── zunmqr_2stage_gpu.cpp ├── zunmqr_gpu.cpp ├── zunmqr_m.cpp ├── zunmrq.cpp ├── zunmtr.cpp ├── zunmtr_gpu.cpp └── zunmtr_m.cpp ├── testing ├── Makefile ├── Makefile.src ├── flops.h ├── fortran2.cpp ├── lin │ ├── Makefile │ ├── Makefile.src │ ├── aladhd.f │ ├── alaerh.f │ ├── alaesm.f │ ├── alahd.f │ ├── alareq.f │ ├── alasum.f │ ├── alasvm.f │ ├── cbdt01.f │ ├── cchkaa.f │ ├── cchkeq.f │ ├── cchkgb.f │ ├── cchkge.f │ ├── cchkgt.f │ ├── cchkhe.f │ ├── cchkhp.f │ ├── cchklq.f │ ├── cchkpb.f │ ├── cchkpo.f │ ├── cchkpp.f │ ├── cchkps.f │ ├── cchkpt.f │ ├── cchkq3.f │ ├── cchkql.f │ ├── cchkqp.f │ ├── cchkqr.f │ ├── cchkrfp.f │ ├── cchkrq.f │ ├── cchksp.f │ ├── cchksy.f │ ├── cchktb.f │ ├── cchktp.f │ ├── cchktr.f │ ├── cchktz.f │ ├── cdrvgb.f │ ├── cdrvgbx.f │ ├── cdrvge.f │ ├── cdrvgex.f │ ├── cdrvgt.f │ ├── cdrvhe.f │ ├── cdrvhex.f │ ├── cdrvhp.f │ ├── cdrvls.f │ ├── cdrvpb.f │ ├── cdrvpo.f │ ├── cdrvpox.f │ ├── cdrvpp.f │ ├── cdrvpt.f │ ├── cdrvrf1.f │ ├── cdrvrf2.f │ ├── cdrvrf3.f │ ├── cdrvrf4.f │ ├── cdrvrfp.f │ ├── cdrvsp.f │ ├── cdrvsy.f │ ├── cdrvsyx.f │ ├── cebchvxx.f │ ├── cerlq.f │ ├── cerpo.f │ ├── cerql.f │ ├── cerqr.f │ ├── cerrge.f │ ├── cerrgex.f │ ├── cerrgt.f │ ├── cerrhe.f │ ├── cerrhex.f │ ├── cerrlq.f │ ├── cerrls.f │ ├── cerrpo.f │ ├── cerrpox.f │ ├── cerrps.f │ ├── cerrql.f │ ├── cerrqp.f │ ├── cerrqr.f │ ├── cerrrfp.f │ ├── cerrrq.f │ ├── cerrsy.f │ ├── cerrsyx.f │ ├── cerrtr.f │ ├── cerrtz.f │ ├── cerrvx.f │ ├── cerrvxx.f │ ├── cgbt01.f │ ├── cgbt02.f │ ├── cgbt05.f │ ├── cgelqs.f │ ├── cgennd.f │ ├── cgeqls.f │ ├── cgeqrs.f │ ├── cgerqs.f │ ├── cget01.f │ ├── cget02.f │ ├── cget03.f │ ├── cget04.f │ ├── cget07.f │ ├── cget22.f │ ├── cgtt01.f │ ├── cgtt02.f │ ├── cgtt05.f │ ├── chet01.f │ ├── chet21.f │ ├── chet22.f │ ├── chkxer.f │ ├── chpt01.f │ ├── chst01.f │ ├── clahilb.f │ ├── claipd.f │ ├── claptm.f │ ├── clarfy.f │ ├── clarhs.f │ ├── clatb4.f │ ├── clatb5.f │ ├── clatsp.f │ ├── clatsy.f │ ├── clattb.f │ ├── clattp.f │ ├── clattr.f │ ├── clavhe.f │ ├── clavhp.f │ ├── clavsp.f │ ├── clavsy.f │ ├── clqt01.f │ ├── clqt02.f │ ├── clqt03.f │ ├── cpbt01.f │ ├── cpbt02.f │ ├── cpbt05.f │ ├── cpot01.f │ ├── cpot02.f │ ├── cpot03.f │ ├── cpot05.f │ ├── cppt01.f │ ├── cppt02.f │ ├── cppt03.f │ ├── cppt05.f │ ├── cpst01.f │ ├── cptt01.f │ ├── cptt02.f │ ├── cptt05.f │ ├── cqlt01.f │ ├── cqlt02.f │ ├── cqlt03.f │ ├── cqpt01.f │ ├── cqrt01.f │ ├── cqrt02.f │ ├── cqrt03.f │ ├── cqrt11.f │ ├── cqrt12.f │ ├── cqrt13.f │ ├── cqrt14.f │ ├── cqrt15.f │ ├── cqrt16.f │ ├── cqrt17.f │ ├── crqt01.f │ ├── crqt02.f │ ├── crqt03.f │ ├── crzt01.f │ ├── crzt02.f │ ├── csbmv.f │ ├── cspt01.f │ ├── cspt02.f │ ├── cspt03.f │ ├── cstt21.f │ ├── csyt01.f │ ├── csyt02.f │ ├── csyt03.f │ ├── ctbt02.f │ ├── ctbt03.f │ ├── ctbt05.f │ ├── ctbt06.f │ ├── ctest.in │ ├── ctpt01.f │ ├── ctpt02.f │ ├── ctpt03.f │ ├── ctpt05.f │ ├── ctpt06.f │ ├── ctrt01.f │ ├── ctrt02.f │ ├── ctrt03.f │ ├── ctrt05.f │ ├── ctrt06.f │ ├── ctzt01.f │ ├── ctzt02.f │ ├── cunt01.f │ ├── dbdt01.f │ ├── dchkaa.f │ ├── dchkab.f │ ├── dchkeq.f │ ├── dchkgb.f │ ├── dchkge.f │ ├── dchkgt.f │ ├── dchklq.f │ ├── dchkpb.f │ ├── dchkpo.f │ ├── dchkpp.f │ ├── dchkps.f │ ├── dchkpt.f │ ├── dchkq3.f │ ├── dchkql.f │ ├── dchkqp.f │ ├── dchkqr.f │ ├── dchkrfp.f │ ├── dchkrq.f │ ├── dchksp.f │ ├── dchksy.f │ ├── dchktb.f │ ├── dchktp.f │ ├── dchktr.f │ ├── dchktz.f │ ├── ddrvab.f │ ├── ddrvac.f │ ├── ddrvgb.f │ ├── ddrvgbx.f │ ├── ddrvge.f │ ├── ddrvgex.f │ ├── ddrvgt.f │ ├── ddrvls.f │ ├── ddrvpb.f │ ├── ddrvpo.f │ ├── ddrvpox.f │ ├── ddrvpp.f │ ├── ddrvpt.f │ ├── ddrvrf1.f │ ├── ddrvrf2.f │ ├── ddrvrf3.f │ ├── ddrvrf4.f │ ├── ddrvrfp.f │ ├── ddrvsp.f │ ├── ddrvsy.f │ ├── ddrvsyx.f │ ├── debchvxx.f │ ├── derrab.f │ ├── derrac.f │ ├── derrge.f │ ├── derrgex.f │ ├── derrgt.f │ ├── derrlq.f │ ├── derrls.f │ ├── derrpo.f │ ├── derrpox.f │ ├── derrps.f │ ├── derrql.f │ ├── derrqp.f │ ├── derrqr.f │ ├── derrrfp.f │ ├── derrrq.f │ ├── derrsy.f │ ├── derrsyx.f │ ├── derrtr.f │ ├── derrtz.f │ ├── derrvx.f │ ├── derrvxx.f │ ├── dgbt01.f │ ├── dgbt02.f │ ├── dgbt05.f │ ├── dgelqs.f │ ├── dgennd.f │ ├── dgeqls.f │ ├── dgeqrs.f │ ├── dgerqs.f │ ├── dget01.f │ ├── dget02.f │ ├── dget03.f │ ├── dget04.f │ ├── dget06.f │ ├── dget07.f │ ├── dget08.f │ ├── dget22.f │ ├── dgtt01.f │ ├── dgtt02.f │ ├── dgtt05.f │ ├── dhst01.f │ ├── dlahilb.f │ ├── dlaord.f │ ├── dlaptm.f │ ├── dlarfy.f │ ├── dlarhs.f │ ├── dlatb4.f │ ├── dlatb5.f │ ├── dlattb.f │ ├── dlattp.f │ ├── dlattr.f │ ├── dlavsp.f │ ├── dlavsy.f │ ├── dlqt01.f │ ├── dlqt02.f │ ├── dlqt03.f │ ├── dort01.f │ ├── dpbt01.f │ ├── dpbt02.f │ ├── dpbt05.f │ ├── dpot01.f │ ├── dpot02.f │ ├── dpot03.f │ ├── dpot05.f │ ├── dpot06.f │ ├── dppt01.f │ ├── dppt02.f │ ├── dppt03.f │ ├── dppt05.f │ ├── dpst01.f │ ├── dptt01.f │ ├── dptt02.f │ ├── dptt05.f │ ├── dqlt01.f │ ├── dqlt02.f │ ├── dqlt03.f │ ├── dqpt01.f │ ├── dqrt01.f │ ├── dqrt02.f │ ├── dqrt03.f │ ├── dqrt11.f │ ├── dqrt12.f │ ├── dqrt13.f │ ├── dqrt14.f │ ├── dqrt15.f │ ├── dqrt16.f │ ├── dqrt17.f │ ├── drqt01.f │ ├── drqt02.f │ ├── drqt03.f │ ├── drzt01.f │ ├── drzt02.f │ ├── dspt01.f │ ├── dstt21.f │ ├── dsyt01.f │ ├── dsyt21.f │ ├── dsyt22.f │ ├── dtbt02.f │ ├── dtbt03.f │ ├── dtbt05.f │ ├── dtbt06.f │ ├── dtest.in │ ├── dtpt01.f │ ├── dtpt02.f │ ├── dtpt03.f │ ├── dtpt05.f │ ├── dtpt06.f │ ├── dtrt01.f │ ├── dtrt02.f │ ├── dtrt03.f │ ├── dtrt05.f │ ├── dtrt06.f │ ├── dtzt01.f │ ├── dtzt02.f │ ├── icopy.f │ ├── ilaenv.f │ ├── lapack_testing.py │ ├── magma_z_no_fortran.cpp │ ├── sbdt01.f │ ├── schkaa.f │ ├── schkeq.f │ ├── schkgb.f │ ├── schkge.f │ ├── schkgt.f │ ├── schklq.f │ ├── schkpb.f │ ├── schkpo.f │ ├── schkpp.f │ ├── schkps.f │ ├── schkpt.f │ ├── schkq3.f │ ├── schkql.f │ ├── schkqp.f │ ├── schkqr.f │ ├── schkrfp.f │ ├── schkrq.f │ ├── schksp.f │ ├── schksy.ff │ ├── schktb.f │ ├── schktp.f │ ├── schktr.f │ ├── schktz.f │ ├── sdrvgb.f │ ├── sdrvgbx.f │ ├── sdrvge.f │ ├── sdrvgex.f │ ├── sdrvgt.f │ ├── sdrvls.f │ ├── sdrvpb.f │ ├── sdrvpo.f │ ├── sdrvpox.f │ ├── sdrvpp.f │ ├── sdrvpt.f │ ├── sdrvrf1.f │ ├── sdrvrf2.f │ ├── sdrvrf3.f │ ├── sdrvrf4.f │ ├── sdrvrfp.f │ ├── sdrvsp.f │ ├── sdrvsy.f │ ├── sdrvsyx.f │ ├── sebchvxx.f │ ├── serrge.f │ ├── serrgex.f │ ├── serrgt.f │ ├── serrlq.f │ ├── serrls.f │ ├── serrpo.f │ ├── serrpox.f │ ├── serrps.f │ ├── serrql.f │ ├── serrqp.f │ ├── serrqr.f │ ├── serrrfp.f │ ├── serrrq.f │ ├── serrsy.f │ ├── serrsyx.f │ ├── serrtr.f │ ├── serrtz.f │ ├── serrvx.f │ ├── serrvxx.f │ ├── sgbt01.f │ ├── sgbt02.f │ ├── sgbt05.f │ ├── sgelqs.f │ ├── sgennd.f │ ├── sgeqls.f │ ├── sgeqrs.f │ ├── sgerqs.f │ ├── sget01.f │ ├── sget02.f │ ├── sget03.f │ ├── sget04.f │ ├── sget06.f │ ├── sget07.f │ ├── sget22.f │ ├── sgtt01.f │ ├── sgtt02.f │ ├── sgtt05.f │ ├── shst01.f │ ├── slahilb.f │ ├── slaord.f │ ├── slaptm.f │ ├── slarfy.f │ ├── slarhs.f │ ├── slatb4.f │ ├── slatb5.f │ ├── slattb.f │ ├── slattp.f │ ├── slattr.f │ ├── slavsp.f │ ├── slavsy.f │ ├── slqt01.f │ ├── slqt02.f │ ├── slqt03.f │ ├── sort01.f │ ├── spbt01.f │ ├── spbt02.f │ ├── spbt05.f │ ├── spot01.f │ ├── spot02.f │ ├── spot03.f │ ├── spot05.f │ ├── sppt01.f │ ├── sppt02.f │ ├── sppt03.f │ ├── sppt05.f │ ├── spst01.f │ ├── sptt01.f │ ├── sptt02.f │ ├── sptt05.f │ ├── sqlt01.f │ ├── sqlt02.f │ ├── sqlt03.f │ ├── sqpt01.f │ ├── sqrt01.f │ ├── sqrt02.f │ ├── sqrt03.f │ ├── sqrt11.f │ ├── sqrt12.f │ ├── sqrt13.f │ ├── sqrt14.f │ ├── sqrt15.f │ ├── sqrt16.f │ ├── sqrt17.f │ ├── srqt01.f │ ├── srqt02.f │ ├── srqt03.f │ ├── srzt01.f │ ├── srzt02.f │ ├── sspt01.f │ ├── sstt21.f │ ├── ssyt01.f │ ├── ssyt21.f │ ├── ssyt22.f │ ├── stbt02.f │ ├── stbt03.f │ ├── stbt05.f │ ├── stbt06.f │ ├── stest.in │ ├── stpt01.f │ ├── stpt02.f │ ├── stpt03.f │ ├── stpt05.f │ ├── stpt06.f │ ├── strt01.f │ ├── strt02.f │ ├── strt03.f │ ├── strt05.f │ ├── strt06.f │ ├── stzt01.f │ ├── stzt02.f │ ├── xerbla.f │ ├── xlaenv.f │ ├── zbdt01.f │ ├── zchkaa.f │ ├── zchkab.f │ ├── zchkeq.f │ ├── zchkgb.f │ ├── zchkge.f │ ├── zchkgt.f │ ├── zchkhe.f │ ├── zchkhp.f │ ├── zchklq.f │ ├── zchkpb.f │ ├── zchkpo.f │ ├── zchkpp.f │ ├── zchkps.f │ ├── zchkpt.f │ ├── zchkq3.f │ ├── zchkql.f │ ├── zchkqp.f │ ├── zchkqr.f │ ├── zchkrfp.f │ ├── zchkrq.f │ ├── zchksp.f │ ├── zchksy.f │ ├── zchktb.f │ ├── zchktp.f │ ├── zchktr.f │ ├── zchktz.f │ ├── zdrvab.f │ ├── zdrvac.f │ ├── zdrvgb.f │ ├── zdrvgbx.f │ ├── zdrvge.f │ ├── zdrvgex.f │ ├── zdrvgt.f │ ├── zdrvhe.f │ ├── zdrvhex.f │ ├── zdrvhp.f │ ├── zdrvls.f │ ├── zdrvpb.f │ ├── zdrvpo.f │ ├── zdrvpox.f │ ├── zdrvpp.f │ ├── zdrvpt.f │ ├── zdrvrf1.f │ ├── zdrvrf2.f │ ├── zdrvrf3.f │ ├── zdrvrf4.f │ ├── zdrvrfp.f │ ├── zdrvsp.f │ ├── zdrvsy.f │ ├── zdrvsyx.f │ ├── zebchvxx.f │ ├── zerrab.f │ ├── zerrac.f │ ├── zerrge.f │ ├── zerrgex.f │ ├── zerrgt.f │ ├── zerrhe.f │ ├── zerrhex.f │ ├── zerrlq.f │ ├── zerrls.f │ ├── zerrpo.f │ ├── zerrpox.f │ ├── zerrps.f │ ├── zerrql.f │ ├── zerrqp.f │ ├── zerrqr.f │ ├── zerrrfp.f │ ├── zerrrq.f │ ├── zerrsy.f │ ├── zerrsyx.f │ ├── zerrtr.f │ ├── zerrtz.f │ ├── zerrvx.f │ ├── zerrvxx.f │ ├── zgbt01.f │ ├── zgbt02.f │ ├── zgbt05.f │ ├── zgelqs.f │ ├── zgennd.f │ ├── zgeqls.f │ ├── zgeqrs.f │ ├── zgerqs.f │ ├── zget01.f │ ├── zget02.f │ ├── zget03.f │ ├── zget04.f │ ├── zget07.f │ ├── zget08.f │ ├── zget22.f │ ├── zgtt01.f │ ├── zgtt02.f │ ├── zgtt05.f │ ├── zhet01.f │ ├── zhet21.f │ ├── zhet22.f │ ├── zhpt01.f │ ├── zhst01.f │ ├── zlahilb.f │ ├── zlaipd.f │ ├── zlaptm.f │ ├── zlarfy.f │ ├── zlarhs.f │ ├── zlatb4.f │ ├── zlatb5.f │ ├── zlatsp.f │ ├── zlatsy.f │ ├── zlattb.f │ ├── zlattp.f │ ├── zlattr.f │ ├── zlavhe.f │ ├── zlavhp.f │ ├── zlavsp.f │ ├── zlavsy.f │ ├── zlqt01.f │ ├── zlqt02.f │ ├── zlqt03.f │ ├── zpbt01.f │ ├── zpbt02.f │ ├── zpbt05.f │ ├── zpot01.f │ ├── zpot02.f │ ├── zpot03.f │ ├── zpot05.f │ ├── zpot06.f │ ├── zppt01.f │ ├── zppt02.f │ ├── zppt03.f │ ├── zppt05.f │ ├── zpst01.f │ ├── zptt01.f │ ├── zptt02.f │ ├── zptt05.f │ ├── zqlt01.f │ ├── zqlt02.f │ ├── zqlt03.f │ ├── zqpt01.f │ ├── zqrt01.f │ ├── zqrt02.f │ ├── zqrt03.f │ ├── zqrt11.f │ ├── zqrt12.f │ ├── zqrt13.f │ ├── zqrt14.f │ ├── zqrt15.f │ ├── zqrt16.f │ ├── zqrt17.f │ ├── zrqt01.f │ ├── zrqt02.f │ ├── zrqt03.f │ ├── zrzt01.f │ ├── zrzt02.f │ ├── zsbmv.f │ ├── zspt01.f │ ├── zspt02.f │ ├── zspt03.f │ ├── zstt21.f │ ├── zsyt01.f │ ├── zsyt02.f │ ├── zsyt03.f │ ├── ztbt02.f │ ├── ztbt03.f │ ├── ztbt05.f │ ├── ztbt06.f │ ├── ztest.in │ ├── ztpt01.f │ ├── ztpt02.f │ ├── ztpt03.f │ ├── ztpt05.f │ ├── ztpt06.f │ ├── ztrt01.f │ ├── ztrt02.f │ ├── ztrt03.f │ ├── ztrt05.f │ ├── ztrt06.f │ ├── ztzt01.f │ ├── ztzt02.f │ └── zunt01.f ├── magma_generate.cpp ├── magma_lapack.hpp ├── magma_matrix.hpp ├── magma_util.cpp ├── magma_zgesvd_check.cpp ├── magma_zutil.cpp ├── matgen │ ├── Makefile │ ├── clagge.f │ ├── claghe.f │ ├── clagsy.f │ ├── clahilb.f │ ├── clakf2.f │ ├── clarge.f │ ├── clarnd.f │ ├── claror.f │ ├── clarot.f │ ├── clatm1.f │ ├── clatm2.f │ ├── clatm3.f │ ├── clatm5.f │ ├── clatm6.f │ ├── clatme.f │ ├── clatmr.f │ ├── clatms.f │ ├── clatmt.f │ ├── dlagge.f │ ├── dlagsy.f │ ├── dlahilb.f │ ├── dlakf2.f │ ├── dlaran.f │ ├── dlarge.f │ ├── dlarnd.f │ ├── dlaror.f │ ├── dlarot.f │ ├── dlatm1.f │ ├── dlatm2.f │ ├── dlatm3.f │ ├── dlatm5.f │ ├── dlatm6.f │ ├── dlatm7.f │ ├── dlatme.f │ ├── dlatmr.f │ ├── dlatms.f │ ├── dlatmt.f │ ├── slagge.f │ ├── slagsy.f │ ├── slahilb.f │ ├── slakf2.f │ ├── slaran.f │ ├── slarge.f │ ├── slarnd.f │ ├── slaror.f │ ├── slarot.f │ ├── slatm1.f │ ├── slatm2.f │ ├── slatm3.f │ ├── slatm5.f │ ├── slatm6.f │ ├── slatm7.f │ ├── slatme.f │ ├── slatmr.f │ ├── slatms.f │ ├── slatmt.f │ ├── zlagge.f │ ├── zlaghe.f │ ├── zlagsy.f │ ├── zlahilb.f │ ├── zlakf2.f │ ├── zlarge.f │ ├── zlarnd.f │ ├── zlaror.f │ ├── zlarot.f │ ├── zlatm1.f │ ├── zlatm2.f │ ├── zlatm3.f │ ├── zlatm5.f │ ├── zlatm6.f │ ├── zlatme.f │ ├── zlatmr.f │ ├── zlatms.f │ └── zlatmt.f ├── run_summarize.py ├── run_tests.py ├── testing_auxiliary.cpp ├── testing_blas_z.cpp ├── testing_cblas_z.cpp ├── testing_constants.cpp ├── testing_cprint.ref ├── testing_dgeev.cpp ├── testing_dprint.ref ├── testing_dshposv_gpu.cpp ├── testing_dsort_batched.cpp ├── testing_dxgesv_gpu.cpp ├── testing_hgemm.cpp ├── testing_hgemm_batched.cpp ├── testing_operators.cpp ├── testing_parse_opts.cpp ├── testing_sgemm_fp16.cpp ├── testing_sprint.ref ├── testing_z.h ├── testing_zaxpy.cpp ├── testing_zcgeqrsv_gpu.cpp ├── testing_zcgesv_gpu.cpp ├── testing_zcposv_gpu.cpp ├── testing_zgbsv_batched.cpp ├── testing_zgbsv_gpu.cpp ├── testing_zgbtrf_batched.cpp ├── testing_zgbtrf_gpu.cpp ├── testing_zgeadd.cpp ├── testing_zgeadd_batched.cpp ├── testing_zgeam.cpp ├── testing_zgebrd.cpp ├── testing_zgeev.cpp ├── testing_zgegqr_gpu.cpp ├── testing_zgehrd.cpp ├── testing_zgelqf.cpp ├── testing_zgelqf_gpu.cpp ├── testing_zgels.cpp ├── testing_zgels3_gpu.cpp ├── testing_zgels_gpu.cpp ├── testing_zgemm.cpp ├── testing_zgemm_batched.cpp ├── testing_zgemm_vbatched.cpp ├── testing_zgemv.cpp ├── testing_zgemv_batched.cpp ├── testing_zgemv_vbatched.cpp ├── testing_zgenerate.cpp ├── testing_zgeqlf.cpp ├── testing_zgeqp3.cpp ├── testing_zgeqp3_gpu.cpp ├── testing_zgeqr2_gpu.cpp ├── testing_zgeqr2x_gpu.cpp ├── testing_zgeqrf.cpp ├── testing_zgeqrf_batched.cpp ├── testing_zgeqrf_gpu.cpp ├── testing_zgeqrf_mgpu.cpp ├── testing_zgesdd.cpp ├── testing_zgesv.cpp ├── testing_zgesv_batched.cpp ├── testing_zgesv_gpu.cpp ├── testing_zgesv_nopiv_batched.cpp ├── testing_zgesv_rbt.cpp ├── testing_zgesvd.cpp ├── testing_zgetf2_gpu.cpp ├── testing_zgetrf.cpp ├── testing_zgetrf_batched.cpp ├── testing_zgetrf_f.f90 ├── testing_zgetrf_gpu.cpp ├── testing_zgetrf_gpu_f.F90 ├── testing_zgetrf_gpu_f.cuf ├── testing_zgetrf_mgpu.cpp ├── testing_zgetrf_nopiv_batched.cpp ├── testing_zgetrf_nopiv_vbatched.cpp ├── testing_zgetrf_vbatched.cpp ├── testing_zgetri_batched.cpp ├── testing_zgetri_gpu.cpp ├── testing_zgglse.cpp ├── testing_zheevd.cpp ├── testing_zheevd_gpu.cpp ├── testing_zheevdx_2stage.cpp ├── testing_zhegst.cpp ├── testing_zhegst_gpu.cpp ├── testing_zhegvd.cpp ├── testing_zhegvdx.cpp ├── testing_zhegvdx_2stage.cpp ├── testing_zhemm.cpp ├── testing_zhemm_batched.cpp ├── testing_zhemm_mgpu.cpp ├── testing_zhemm_vbatched.cpp ├── testing_zhemv.cpp ├── testing_zhemv_batched.cpp ├── testing_zhemv_mgpu.cpp ├── testing_zhemv_vbatched.cpp ├── testing_zher2k.cpp ├── testing_zher2k_batched.cpp ├── testing_zher2k_mgpu.cpp ├── testing_zher2k_vbatched.cpp ├── testing_zherk.cpp ├── testing_zherk_batched.cpp ├── testing_zherk_vbatched.cpp ├── testing_zhesv.cpp ├── testing_zhesv_nopiv_gpu.cpp ├── testing_zhetrd.cpp ├── testing_zhetrd_gpu.cpp ├── testing_zhetrd_mgpu.cpp ├── testing_zhetrf.cpp ├── testing_zlacpy.cpp ├── testing_zlacpy_batched.cpp ├── testing_zlag2c.cpp ├── testing_zlange.cpp ├── testing_zlanhe.cpp ├── testing_zlarfb_gpu.cpp ├── testing_zlarfg.cpp ├── testing_zlascl.cpp ├── testing_zlaset.cpp ├── testing_zlaset_band.cpp ├── testing_zlat2c.cpp ├── testing_znan_inf.cpp ├── testing_zposv.cpp ├── testing_zposv_batched.cpp ├── testing_zposv_gpu.cpp ├── testing_zpotf2_gpu.cpp ├── testing_zpotrf.cpp ├── testing_zpotrf_batched.cpp ├── testing_zpotrf_gpu.cpp ├── testing_zpotrf_mgpu.cpp ├── testing_zpotrf_mgpu_right.cpp ├── testing_zpotrf_vbatched.cpp ├── testing_zpotri.cpp ├── testing_zpotri_gpu.cpp ├── testing_zprint.cpp ├── testing_zprint.ref ├── testing_zswap.cpp ├── testing_zsymmetrize.cpp ├── testing_zsymmetrize_tiles.cpp ├── testing_zsymv.cpp ├── testing_zsyr2k_batched.cpp ├── testing_zsyr2k_vbatched.cpp ├── testing_zsyrk_vbatched.cpp ├── testing_zsysv_nopiv_gpu.cpp ├── testing_ztranspose.cpp ├── testing_ztrmm.cpp ├── testing_ztrmm_batched.cpp ├── testing_ztrmm_vbatched.cpp ├── testing_ztrmv.cpp ├── testing_ztrsm.cpp ├── testing_ztrsm_batched.cpp ├── testing_ztrsm_vbatched.cpp ├── testing_ztrsv.cpp ├── testing_ztrsv_batched.cpp ├── testing_ztrtri.cpp ├── testing_ztrtri_diag.cpp ├── testing_ztrtri_gpu.cpp ├── testing_zungbr.cpp ├── testing_zunglq.cpp ├── testing_zungqr.cpp ├── testing_zungqr_gpu.cpp ├── testing_zunmbr.cpp ├── testing_zunmlq.cpp ├── testing_zunmql.cpp ├── testing_zunmql_gpu.cpp ├── testing_zunmqr.cpp ├── testing_zunmqr_gpu.cpp ├── testings.h └── trace.css └── tools ├── MakeMagmaRelease.pl ├── build.sh ├── check-style.py ├── checklist.csh ├── checklist_ceildiv.pl ├── checklist_run_tests.py ├── codegen.py ├── compare_prototypes.pl ├── find_obj_files.sh ├── fortran_wrappers.pl ├── gen-hip-make ├── hipify-perl ├── magmasubs.py ├── package-routine-web ├── README.md ├── app.py ├── requirements.txt ├── tars │ ├── cuda │ │ └── .gitignore │ └── hip │ │ └── .gitignore └── templates │ ├── base.html │ └── index.html ├── package-routine.py ├── parse-magma.py ├── trim_spaces.pl └── wdiff.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/BUGS.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /HIP-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/HIP-notes.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/Makefile.internal -------------------------------------------------------------------------------- /Makefile.subdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/Makefile.subdir -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/README -------------------------------------------------------------------------------- /README-Windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/README-Windows -------------------------------------------------------------------------------- /README-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/README-v2.txt -------------------------------------------------------------------------------- /ReleaseChecklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/ReleaseChecklist -------------------------------------------------------------------------------- /ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/ReleaseNotes -------------------------------------------------------------------------------- /control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/Makefile -------------------------------------------------------------------------------- /control/Makefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/Makefile.src -------------------------------------------------------------------------------- /control/abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/abs.cpp -------------------------------------------------------------------------------- /control/affinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/affinity.cpp -------------------------------------------------------------------------------- /control/affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/affinity.h -------------------------------------------------------------------------------- /control/auxiliary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/auxiliary.cpp -------------------------------------------------------------------------------- /control/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/constants.cpp -------------------------------------------------------------------------------- /control/get_nb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/get_nb.cpp -------------------------------------------------------------------------------- /control/get_ntcol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/get_ntcol.cpp -------------------------------------------------------------------------------- /control/iprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/iprint.cpp -------------------------------------------------------------------------------- /control/magma.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/magma.F90 -------------------------------------------------------------------------------- /control/magma_cf77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/magma_cf77.cpp -------------------------------------------------------------------------------- /control/magma_df77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/magma_df77.cpp -------------------------------------------------------------------------------- /control/magma_f77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/magma_f77.cpp -------------------------------------------------------------------------------- /control/magma_sf77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/magma_sf77.cpp -------------------------------------------------------------------------------- /control/magma_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/magma_timer.h -------------------------------------------------------------------------------- /control/magma_zf77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/magma_zf77.cpp -------------------------------------------------------------------------------- /control/sizeptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/sizeptr.c -------------------------------------------------------------------------------- /control/sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/sqrt.cpp -------------------------------------------------------------------------------- /control/strlcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/strlcpy.cpp -------------------------------------------------------------------------------- /control/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/trace.cpp -------------------------------------------------------------------------------- /control/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/trace.h -------------------------------------------------------------------------------- /control/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/xerbla.cpp -------------------------------------------------------------------------------- /control/zprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/control/zprint.cpp -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Doxyfile-fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/Doxyfile-fast -------------------------------------------------------------------------------- /docs/Doxyfile-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/Doxyfile-test -------------------------------------------------------------------------------- /docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/documentation.txt -------------------------------------------------------------------------------- /docs/groups.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/groups.dox -------------------------------------------------------------------------------- /docs/groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/groups.sh -------------------------------------------------------------------------------- /docs/magma-filter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/magma-filter.pl -------------------------------------------------------------------------------- /docs/magma-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/docs/magma-logo.png -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/example/README.txt -------------------------------------------------------------------------------- /example/example_f.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/example/example_f.F90 -------------------------------------------------------------------------------- /example/example_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/example/example_v1.cpp -------------------------------------------------------------------------------- /example/example_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/example/example_v2.cpp -------------------------------------------------------------------------------- /fortran/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/fortran/Makefile -------------------------------------------------------------------------------- /fortran/magma2.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/fortran/magma2.F90 -------------------------------------------------------------------------------- /fortran/offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/fortran/offset.c -------------------------------------------------------------------------------- /fortran/test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/fortran/test.f90 -------------------------------------------------------------------------------- /include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/Makefile -------------------------------------------------------------------------------- /include/Makefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/Makefile.src -------------------------------------------------------------------------------- /include/magma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magma.h -------------------------------------------------------------------------------- /include/magma_bulge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magma_bulge.h -------------------------------------------------------------------------------- /include/magma_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magma_copy.h -------------------------------------------------------------------------------- /include/magma_htc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magma_htc.h -------------------------------------------------------------------------------- /include/magma_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magma_v2.h -------------------------------------------------------------------------------- /include/magma_z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magma_z.h -------------------------------------------------------------------------------- /include/magma_zc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magma_zc.h -------------------------------------------------------------------------------- /include/magmablas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/include/magmablas.h -------------------------------------------------------------------------------- /magmablas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/Makefile -------------------------------------------------------------------------------- /magmablas/cgemm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/cgemm.cu -------------------------------------------------------------------------------- /magmablas/clag2z.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/clag2z.cu -------------------------------------------------------------------------------- /magmablas/clat2z.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/clat2z.cu -------------------------------------------------------------------------------- /magmablas/dgemm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/dgemm.cu -------------------------------------------------------------------------------- /magmablas/dznrm2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/dznrm2.cu -------------------------------------------------------------------------------- /magmablas/hlag2s.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/hlag2s.cu -------------------------------------------------------------------------------- /magmablas/hlaswp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/hlaswp.cu -------------------------------------------------------------------------------- /magmablas/sgemm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/sgemm.cu -------------------------------------------------------------------------------- /magmablas/slag2h.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/slag2h.cu -------------------------------------------------------------------------------- /magmablas/sort.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/sort.cu -------------------------------------------------------------------------------- /magmablas/sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/sort.cuh -------------------------------------------------------------------------------- /magmablas/sync.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/sync.cuh -------------------------------------------------------------------------------- /magmablas/zaxpycp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zaxpycp.cu -------------------------------------------------------------------------------- /magmablas/zclaswp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zclaswp.cu -------------------------------------------------------------------------------- /magmablas/zgeadd.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgeadd.cu -------------------------------------------------------------------------------- /magmablas/zgeadd2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgeadd2.cu -------------------------------------------------------------------------------- /magmablas/zgeam.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgeam.cu -------------------------------------------------------------------------------- /magmablas/zgemm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgemm.cu -------------------------------------------------------------------------------- /magmablas/zgeqr2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgeqr2.cpp -------------------------------------------------------------------------------- /magmablas/zgerbt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgerbt.cu -------------------------------------------------------------------------------- /magmablas/zgerbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgerbt.h -------------------------------------------------------------------------------- /magmablas/zgetf2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zgetf2.cu -------------------------------------------------------------------------------- /magmablas/zhemm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zhemm.cu -------------------------------------------------------------------------------- /magmablas/zhemv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zhemv.cu -------------------------------------------------------------------------------- /magmablas/zher2k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zher2k.cpp -------------------------------------------------------------------------------- /magmablas/zherk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zherk.cpp -------------------------------------------------------------------------------- /magmablas/zhetrs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zhetrs.cu -------------------------------------------------------------------------------- /magmablas/zlacpy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlacpy.cu -------------------------------------------------------------------------------- /magmablas/zlag2c.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlag2c.cu -------------------------------------------------------------------------------- /magmablas/zlange.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlange.cu -------------------------------------------------------------------------------- /magmablas/zlanhe.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlanhe.cu -------------------------------------------------------------------------------- /magmablas/zlarf.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlarf.cu -------------------------------------------------------------------------------- /magmablas/zlarfbx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlarfbx.cu -------------------------------------------------------------------------------- /magmablas/zlarfg.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlarfg.cu -------------------------------------------------------------------------------- /magmablas/zlarfx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlarfx.cu -------------------------------------------------------------------------------- /magmablas/zlascl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlascl.cu -------------------------------------------------------------------------------- /magmablas/zlascl2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlascl2.cu -------------------------------------------------------------------------------- /magmablas/zlaset.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlaset.cu -------------------------------------------------------------------------------- /magmablas/zlaswp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlaswp.cu -------------------------------------------------------------------------------- /magmablas/zlat2c.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zlat2c.cu -------------------------------------------------------------------------------- /magmablas/zpotf2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zpotf2.cu -------------------------------------------------------------------------------- /magmablas/zswap.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zswap.cu -------------------------------------------------------------------------------- /magmablas/zsymm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zsymm.cu -------------------------------------------------------------------------------- /magmablas/zsymv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/zsymv.cu -------------------------------------------------------------------------------- /magmablas/ztrmm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/ztrmm.cu -------------------------------------------------------------------------------- /magmablas/ztrmv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/ztrmv.cu -------------------------------------------------------------------------------- /magmablas/ztrsm.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/ztrsm.cu -------------------------------------------------------------------------------- /magmablas/ztrsv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/ztrsv.cu -------------------------------------------------------------------------------- /magmablas/ztrtri.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/magmablas/ztrtri.cuh -------------------------------------------------------------------------------- /make.check-aocl-blis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/make.check-aocl-blis -------------------------------------------------------------------------------- /make.check-atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/make.check-atlas -------------------------------------------------------------------------------- /make.check-cuda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/make.check-cuda -------------------------------------------------------------------------------- /make.check-hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/make.check-hip -------------------------------------------------------------------------------- /make.check-mkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/make.check-mkl -------------------------------------------------------------------------------- /make.check-openblas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/make.check-openblas -------------------------------------------------------------------------------- /make.gen.hipMAGMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/make.gen.hipMAGMA -------------------------------------------------------------------------------- /results/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/parse.py -------------------------------------------------------------------------------- /results/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/plots.py -------------------------------------------------------------------------------- /results/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/readme.txt -------------------------------------------------------------------------------- /results/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/run -------------------------------------------------------------------------------- /results/run_all.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/run_all.csh -------------------------------------------------------------------------------- /results/run_geev.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/run_geev.csh -------------------------------------------------------------------------------- /results/run_svd.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/run_svd.csh -------------------------------------------------------------------------------- /results/run_syev.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/run_syev.csh -------------------------------------------------------------------------------- /results/run_symv.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/run_symv.csh -------------------------------------------------------------------------------- /results/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/results/util.py -------------------------------------------------------------------------------- /scripts/check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/scripts/check.pl -------------------------------------------------------------------------------- /sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/Makefile -------------------------------------------------------------------------------- /sparse/Makefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/Makefile.src -------------------------------------------------------------------------------- /sparse/blas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/blas/Makefile -------------------------------------------------------------------------------- /sparse/blas/zilu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/blas/zilu.cpp -------------------------------------------------------------------------------- /sparse/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/Makefile -------------------------------------------------------------------------------- /sparse/src/zbicg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zbicg.cpp -------------------------------------------------------------------------------- /sparse/src/zbpcg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zbpcg.cpp -------------------------------------------------------------------------------- /sparse/src/zcg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zcg.cpp -------------------------------------------------------------------------------- /sparse/src/zcgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zcgs.cpp -------------------------------------------------------------------------------- /sparse/src/zidr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zidr.cpp -------------------------------------------------------------------------------- /sparse/src/zlsqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zlsqr.cpp -------------------------------------------------------------------------------- /sparse/src/zpcg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zpcg.cpp -------------------------------------------------------------------------------- /sparse/src/zpcgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zpcgs.cpp -------------------------------------------------------------------------------- /sparse/src/zpidr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zpidr.cpp -------------------------------------------------------------------------------- /sparse/src/zpqmr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zpqmr.cpp -------------------------------------------------------------------------------- /sparse/src/zqmr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/sparse/src/zqmr.cpp -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/Makefile.src -------------------------------------------------------------------------------- /src/cblas_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/cblas_z.cpp -------------------------------------------------------------------------------- /src/core_zlarfy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/core_zlarfy.cpp -------------------------------------------------------------------------------- /src/dbulge_aux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dbulge_aux.cpp -------------------------------------------------------------------------------- /src/dgeev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dgeev.cpp -------------------------------------------------------------------------------- /src/dgeev_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dgeev_m.cpp -------------------------------------------------------------------------------- /src/dgesdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dgesdd.cpp -------------------------------------------------------------------------------- /src/dgesvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dgesvd.cpp -------------------------------------------------------------------------------- /src/dlaex0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaex0.cpp -------------------------------------------------------------------------------- /src/dlaex0_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaex0_m.cpp -------------------------------------------------------------------------------- /src/dlaex1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaex1.cpp -------------------------------------------------------------------------------- /src/dlaex1_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaex1_m.cpp -------------------------------------------------------------------------------- /src/dlaex3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaex3.cpp -------------------------------------------------------------------------------- /src/dlaex3_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaex3_m.cpp -------------------------------------------------------------------------------- /src/dlaln2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaln2.cpp -------------------------------------------------------------------------------- /src/dlaqtrsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dlaqtrsd.cpp -------------------------------------------------------------------------------- /src/dmove_eig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dmove_eig.cpp -------------------------------------------------------------------------------- /src/dsidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsidi.cpp -------------------------------------------------------------------------------- /src/dstedx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dstedx.cpp -------------------------------------------------------------------------------- /src/dstedx_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dstedx_m.cpp -------------------------------------------------------------------------------- /src/dsyevd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsyevd.cpp -------------------------------------------------------------------------------- /src/dsyevd_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsyevd_gpu.cpp -------------------------------------------------------------------------------- /src/dsyevd_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsyevd_m.cpp -------------------------------------------------------------------------------- /src/dsyevdx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsyevdx.cpp -------------------------------------------------------------------------------- /src/dsyevdx_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsyevdx_gpu.cpp -------------------------------------------------------------------------------- /src/dsyevdx_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsyevdx_m.cpp -------------------------------------------------------------------------------- /src/dsygvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsygvd.cpp -------------------------------------------------------------------------------- /src/dsygvd_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsygvd_m.cpp -------------------------------------------------------------------------------- /src/dsygvdx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsygvdx.cpp -------------------------------------------------------------------------------- /src/dsygvdx_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dsygvdx_m.cpp -------------------------------------------------------------------------------- /src/dtrevc3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dtrevc3.cpp -------------------------------------------------------------------------------- /src/dtrevc3_mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/dtrevc3_mt.cpp -------------------------------------------------------------------------------- /src/shpotrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/shpotrf_gpu.cpp -------------------------------------------------------------------------------- /src/xhsgetrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/xhsgetrf_gpu.cpp -------------------------------------------------------------------------------- /src/xshgetrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/xshgetrf_gpu.cpp -------------------------------------------------------------------------------- /src/zbulge_aux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zbulge_aux.cpp -------------------------------------------------------------------------------- /src/zbulge_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zbulge_back.cpp -------------------------------------------------------------------------------- /src/zcgeqrsv_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zcgeqrsv_gpu.cpp -------------------------------------------------------------------------------- /src/zcgesv_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zcgesv_gpu.cpp -------------------------------------------------------------------------------- /src/zcgetrs_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zcgetrs_gpu.cpp -------------------------------------------------------------------------------- /src/zchesv_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zchesv_gpu.cpp -------------------------------------------------------------------------------- /src/zcposv_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zcposv_gpu.cpp -------------------------------------------------------------------------------- /src/zgbsv_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgbsv_gpu.cpp -------------------------------------------------------------------------------- /src/zgbtrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgbtrf_gpu.cpp -------------------------------------------------------------------------------- /src/zgebrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgebrd.cpp -------------------------------------------------------------------------------- /src/zgeev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeev.cpp -------------------------------------------------------------------------------- /src/zgeev_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeev_m.cpp -------------------------------------------------------------------------------- /src/zgegqr_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgegqr_gpu.cpp -------------------------------------------------------------------------------- /src/zgehrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgehrd.cpp -------------------------------------------------------------------------------- /src/zgehrd2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgehrd2.cpp -------------------------------------------------------------------------------- /src/zgehrd_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgehrd_m.cpp -------------------------------------------------------------------------------- /src/zgelqf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgelqf.cpp -------------------------------------------------------------------------------- /src/zgelqf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgelqf_gpu.cpp -------------------------------------------------------------------------------- /src/zgels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgels.cpp -------------------------------------------------------------------------------- /src/zgels3_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgels3_gpu.cpp -------------------------------------------------------------------------------- /src/zgels_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgels_gpu.cpp -------------------------------------------------------------------------------- /src/zgeqlf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqlf.cpp -------------------------------------------------------------------------------- /src/zgeqp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqp3.cpp -------------------------------------------------------------------------------- /src/zgeqp3_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqp3_gpu.cpp -------------------------------------------------------------------------------- /src/zgeqr2x_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqr2x_gpu.cpp -------------------------------------------------------------------------------- /src/zgeqrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrf.cpp -------------------------------------------------------------------------------- /src/zgeqrf2_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrf2_gpu.cpp -------------------------------------------------------------------------------- /src/zgeqrf3_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrf3_gpu.cpp -------------------------------------------------------------------------------- /src/zgeqrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrf_gpu.cpp -------------------------------------------------------------------------------- /src/zgeqrf_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrf_m.cpp -------------------------------------------------------------------------------- /src/zgeqrf_mgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrf_mgpu.cpp -------------------------------------------------------------------------------- /src/zgeqrf_ooc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrf_ooc.cpp -------------------------------------------------------------------------------- /src/zgeqrs3_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrs3_gpu.cpp -------------------------------------------------------------------------------- /src/zgeqrs_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgeqrs_gpu.cpp -------------------------------------------------------------------------------- /src/zgerbt_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgerbt_gpu.cpp -------------------------------------------------------------------------------- /src/zgesdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgesdd.cpp -------------------------------------------------------------------------------- /src/zgesv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgesv.cpp -------------------------------------------------------------------------------- /src/zgesv_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgesv_gpu.cpp -------------------------------------------------------------------------------- /src/zgesv_rbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgesv_rbt.cpp -------------------------------------------------------------------------------- /src/zgesvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgesvd.cpp -------------------------------------------------------------------------------- /src/zgetf2_nopiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetf2_nopiv.cpp -------------------------------------------------------------------------------- /src/zgetrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetrf.cpp -------------------------------------------------------------------------------- /src/zgetrf2_mgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetrf2_mgpu.cpp -------------------------------------------------------------------------------- /src/zgetrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetrf_gpu.cpp -------------------------------------------------------------------------------- /src/zgetrf_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetrf_m.cpp -------------------------------------------------------------------------------- /src/zgetrf_mgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetrf_mgpu.cpp -------------------------------------------------------------------------------- /src/zgetrf_nopiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetrf_nopiv.cpp -------------------------------------------------------------------------------- /src/zgetri_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetri_gpu.cpp -------------------------------------------------------------------------------- /src/zgetrs_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgetrs_gpu.cpp -------------------------------------------------------------------------------- /src/zgglse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zgglse.cpp -------------------------------------------------------------------------------- /src/zggrqf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zggrqf.cpp -------------------------------------------------------------------------------- /src/zheevd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevd.cpp -------------------------------------------------------------------------------- /src/zheevd_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevd_gpu.cpp -------------------------------------------------------------------------------- /src/zheevd_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevd_m.cpp -------------------------------------------------------------------------------- /src/zheevdx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevdx.cpp -------------------------------------------------------------------------------- /src/zheevdx_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevdx_gpu.cpp -------------------------------------------------------------------------------- /src/zheevdx_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevdx_m.cpp -------------------------------------------------------------------------------- /src/zheevr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevr.cpp -------------------------------------------------------------------------------- /src/zheevr_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevr_gpu.cpp -------------------------------------------------------------------------------- /src/zheevx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevx.cpp -------------------------------------------------------------------------------- /src/zheevx_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zheevx_gpu.cpp -------------------------------------------------------------------------------- /src/zhegst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegst.cpp -------------------------------------------------------------------------------- /src/zhegst_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegst_gpu.cpp -------------------------------------------------------------------------------- /src/zhegst_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegst_m.cpp -------------------------------------------------------------------------------- /src/zhegvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegvd.cpp -------------------------------------------------------------------------------- /src/zhegvd_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegvd_m.cpp -------------------------------------------------------------------------------- /src/zhegvdx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegvdx.cpp -------------------------------------------------------------------------------- /src/zhegvdx_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegvdx_m.cpp -------------------------------------------------------------------------------- /src/zhegvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegvr.cpp -------------------------------------------------------------------------------- /src/zhegvx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhegvx.cpp -------------------------------------------------------------------------------- /src/zhesv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhesv.cpp -------------------------------------------------------------------------------- /src/zhetrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrd.cpp -------------------------------------------------------------------------------- /src/zhetrd2_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrd2_gpu.cpp -------------------------------------------------------------------------------- /src/zhetrd_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrd_gpu.cpp -------------------------------------------------------------------------------- /src/zhetrd_hb2st.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrd_hb2st.cpp -------------------------------------------------------------------------------- /src/zhetrd_he2hb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrd_he2hb.cpp -------------------------------------------------------------------------------- /src/zhetrd_mgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrd_mgpu.cpp -------------------------------------------------------------------------------- /src/zhetrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrf.cpp -------------------------------------------------------------------------------- /src/zhetrf_aasen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrf_aasen.cpp -------------------------------------------------------------------------------- /src/zhetrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrf_gpu.cpp -------------------------------------------------------------------------------- /src/zhetrf_nopiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zhetrf_nopiv.cpp -------------------------------------------------------------------------------- /src/zlabrd_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlabrd_gpu.cpp -------------------------------------------------------------------------------- /src/zlahef_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlahef_gpu.cpp -------------------------------------------------------------------------------- /src/zlahr2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlahr2.cpp -------------------------------------------------------------------------------- /src/zlahr2_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlahr2_m.cpp -------------------------------------------------------------------------------- /src/zlahru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlahru.cpp -------------------------------------------------------------------------------- /src/zlahru_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlahru_m.cpp -------------------------------------------------------------------------------- /src/zlaqps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlaqps.cpp -------------------------------------------------------------------------------- /src/zlarfb_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlarfb_gpu.cpp -------------------------------------------------------------------------------- /src/zlatrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlatrd.cpp -------------------------------------------------------------------------------- /src/zlatrd2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlatrd2.cpp -------------------------------------------------------------------------------- /src/zlatrd_mgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlatrd_mgpu.cpp -------------------------------------------------------------------------------- /src/zlatrsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlatrsd.cpp -------------------------------------------------------------------------------- /src/zlauum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlauum.cpp -------------------------------------------------------------------------------- /src/zlauum_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zlauum_gpu.cpp -------------------------------------------------------------------------------- /src/zposv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zposv.cpp -------------------------------------------------------------------------------- /src/zposv_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zposv_gpu.cpp -------------------------------------------------------------------------------- /src/zpotrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotrf.cpp -------------------------------------------------------------------------------- /src/zpotrf3_mgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotrf3_mgpu.cpp -------------------------------------------------------------------------------- /src/zpotrf_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotrf_gpu.cpp -------------------------------------------------------------------------------- /src/zpotrf_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotrf_m.cpp -------------------------------------------------------------------------------- /src/zpotrf_mgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotrf_mgpu.cpp -------------------------------------------------------------------------------- /src/zpotri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotri.cpp -------------------------------------------------------------------------------- /src/zpotri_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotri_gpu.cpp -------------------------------------------------------------------------------- /src/zpotrs_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zpotrs_gpu.cpp -------------------------------------------------------------------------------- /src/zstedx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zstedx.cpp -------------------------------------------------------------------------------- /src/zstedx_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zstedx_m.cpp -------------------------------------------------------------------------------- /src/ztrevc3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/ztrevc3.cpp -------------------------------------------------------------------------------- /src/ztrevc3_mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/ztrevc3_mt.cpp -------------------------------------------------------------------------------- /src/ztrsm_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/ztrsm_m.cpp -------------------------------------------------------------------------------- /src/ztrtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/ztrtri.cpp -------------------------------------------------------------------------------- /src/ztrtri_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/ztrtri_gpu.cpp -------------------------------------------------------------------------------- /src/zungbr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zungbr.cpp -------------------------------------------------------------------------------- /src/zunghr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunghr.cpp -------------------------------------------------------------------------------- /src/zunghr_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunghr_m.cpp -------------------------------------------------------------------------------- /src/zunglq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunglq.cpp -------------------------------------------------------------------------------- /src/zungqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zungqr.cpp -------------------------------------------------------------------------------- /src/zungqr2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zungqr2.cpp -------------------------------------------------------------------------------- /src/zungqr_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zungqr_gpu.cpp -------------------------------------------------------------------------------- /src/zungqr_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zungqr_m.cpp -------------------------------------------------------------------------------- /src/zungtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zungtr.cpp -------------------------------------------------------------------------------- /src/zunmbr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmbr.cpp -------------------------------------------------------------------------------- /src/zunmlq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmlq.cpp -------------------------------------------------------------------------------- /src/zunmql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmql.cpp -------------------------------------------------------------------------------- /src/zunmql2_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmql2_gpu.cpp -------------------------------------------------------------------------------- /src/zunmqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmqr.cpp -------------------------------------------------------------------------------- /src/zunmqr2_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmqr2_gpu.cpp -------------------------------------------------------------------------------- /src/zunmqr_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmqr_gpu.cpp -------------------------------------------------------------------------------- /src/zunmqr_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmqr_m.cpp -------------------------------------------------------------------------------- /src/zunmrq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmrq.cpp -------------------------------------------------------------------------------- /src/zunmtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmtr.cpp -------------------------------------------------------------------------------- /src/zunmtr_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmtr_gpu.cpp -------------------------------------------------------------------------------- /src/zunmtr_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/src/zunmtr_m.cpp -------------------------------------------------------------------------------- /testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/Makefile -------------------------------------------------------------------------------- /testing/Makefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/Makefile.src -------------------------------------------------------------------------------- /testing/flops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/flops.h -------------------------------------------------------------------------------- /testing/fortran2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/fortran2.cpp -------------------------------------------------------------------------------- /testing/lin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/Makefile -------------------------------------------------------------------------------- /testing/lin/aladhd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/aladhd.f -------------------------------------------------------------------------------- /testing/lin/alaerh.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/alaerh.f -------------------------------------------------------------------------------- /testing/lin/alaesm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/alaesm.f -------------------------------------------------------------------------------- /testing/lin/alahd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/alahd.f -------------------------------------------------------------------------------- /testing/lin/alareq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/alareq.f -------------------------------------------------------------------------------- /testing/lin/alasum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/alasum.f -------------------------------------------------------------------------------- /testing/lin/alasvm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/alasvm.f -------------------------------------------------------------------------------- /testing/lin/cbdt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cbdt01.f -------------------------------------------------------------------------------- /testing/lin/cchkaa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkaa.f -------------------------------------------------------------------------------- /testing/lin/cchkeq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkeq.f -------------------------------------------------------------------------------- /testing/lin/cchkgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkgb.f -------------------------------------------------------------------------------- /testing/lin/cchkge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkge.f -------------------------------------------------------------------------------- /testing/lin/cchkgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkgt.f -------------------------------------------------------------------------------- /testing/lin/cchkhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkhe.f -------------------------------------------------------------------------------- /testing/lin/cchkhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkhp.f -------------------------------------------------------------------------------- /testing/lin/cchklq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchklq.f -------------------------------------------------------------------------------- /testing/lin/cchkpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkpb.f -------------------------------------------------------------------------------- /testing/lin/cchkpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkpo.f -------------------------------------------------------------------------------- /testing/lin/cchkpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkpp.f -------------------------------------------------------------------------------- /testing/lin/cchkps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkps.f -------------------------------------------------------------------------------- /testing/lin/cchkpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkpt.f -------------------------------------------------------------------------------- /testing/lin/cchkq3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkq3.f -------------------------------------------------------------------------------- /testing/lin/cchkql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkql.f -------------------------------------------------------------------------------- /testing/lin/cchkqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkqp.f -------------------------------------------------------------------------------- /testing/lin/cchkqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkqr.f -------------------------------------------------------------------------------- /testing/lin/cchkrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchkrq.f -------------------------------------------------------------------------------- /testing/lin/cchksp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchksp.f -------------------------------------------------------------------------------- /testing/lin/cchksy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchksy.f -------------------------------------------------------------------------------- /testing/lin/cchktb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchktb.f -------------------------------------------------------------------------------- /testing/lin/cchktp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchktp.f -------------------------------------------------------------------------------- /testing/lin/cchktr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchktr.f -------------------------------------------------------------------------------- /testing/lin/cchktz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cchktz.f -------------------------------------------------------------------------------- /testing/lin/cdrvgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvgb.f -------------------------------------------------------------------------------- /testing/lin/cdrvge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvge.f -------------------------------------------------------------------------------- /testing/lin/cdrvgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvgt.f -------------------------------------------------------------------------------- /testing/lin/cdrvhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvhe.f -------------------------------------------------------------------------------- /testing/lin/cdrvhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvhp.f -------------------------------------------------------------------------------- /testing/lin/cdrvls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvls.f -------------------------------------------------------------------------------- /testing/lin/cdrvpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvpb.f -------------------------------------------------------------------------------- /testing/lin/cdrvpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvpo.f -------------------------------------------------------------------------------- /testing/lin/cdrvpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvpp.f -------------------------------------------------------------------------------- /testing/lin/cdrvpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvpt.f -------------------------------------------------------------------------------- /testing/lin/cdrvsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvsp.f -------------------------------------------------------------------------------- /testing/lin/cdrvsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cdrvsy.f -------------------------------------------------------------------------------- /testing/lin/cerlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerlq.f -------------------------------------------------------------------------------- /testing/lin/cerpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerpo.f -------------------------------------------------------------------------------- /testing/lin/cerql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerql.f -------------------------------------------------------------------------------- /testing/lin/cerqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerqr.f -------------------------------------------------------------------------------- /testing/lin/cerrge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrge.f -------------------------------------------------------------------------------- /testing/lin/cerrgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrgt.f -------------------------------------------------------------------------------- /testing/lin/cerrhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrhe.f -------------------------------------------------------------------------------- /testing/lin/cerrlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrlq.f -------------------------------------------------------------------------------- /testing/lin/cerrls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrls.f -------------------------------------------------------------------------------- /testing/lin/cerrpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrpo.f -------------------------------------------------------------------------------- /testing/lin/cerrps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrps.f -------------------------------------------------------------------------------- /testing/lin/cerrql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrql.f -------------------------------------------------------------------------------- /testing/lin/cerrqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrqp.f -------------------------------------------------------------------------------- /testing/lin/cerrqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrqr.f -------------------------------------------------------------------------------- /testing/lin/cerrrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrrq.f -------------------------------------------------------------------------------- /testing/lin/cerrsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrsy.f -------------------------------------------------------------------------------- /testing/lin/cerrtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrtr.f -------------------------------------------------------------------------------- /testing/lin/cerrtz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrtz.f -------------------------------------------------------------------------------- /testing/lin/cerrvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cerrvx.f -------------------------------------------------------------------------------- /testing/lin/cgbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgbt01.f -------------------------------------------------------------------------------- /testing/lin/cgbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgbt02.f -------------------------------------------------------------------------------- /testing/lin/cgbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgbt05.f -------------------------------------------------------------------------------- /testing/lin/cgelqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgelqs.f -------------------------------------------------------------------------------- /testing/lin/cgennd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgennd.f -------------------------------------------------------------------------------- /testing/lin/cgeqls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgeqls.f -------------------------------------------------------------------------------- /testing/lin/cgeqrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgeqrs.f -------------------------------------------------------------------------------- /testing/lin/cgerqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgerqs.f -------------------------------------------------------------------------------- /testing/lin/cget01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cget01.f -------------------------------------------------------------------------------- /testing/lin/cget02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cget02.f -------------------------------------------------------------------------------- /testing/lin/cget03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cget03.f -------------------------------------------------------------------------------- /testing/lin/cget04.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cget04.f -------------------------------------------------------------------------------- /testing/lin/cget07.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cget07.f -------------------------------------------------------------------------------- /testing/lin/cget22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cget22.f -------------------------------------------------------------------------------- /testing/lin/cgtt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgtt01.f -------------------------------------------------------------------------------- /testing/lin/cgtt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgtt02.f -------------------------------------------------------------------------------- /testing/lin/cgtt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cgtt05.f -------------------------------------------------------------------------------- /testing/lin/chet01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/chet01.f -------------------------------------------------------------------------------- /testing/lin/chet21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/chet21.f -------------------------------------------------------------------------------- /testing/lin/chet22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/chet22.f -------------------------------------------------------------------------------- /testing/lin/chkxer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/chkxer.f -------------------------------------------------------------------------------- /testing/lin/chpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/chpt01.f -------------------------------------------------------------------------------- /testing/lin/chst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/chst01.f -------------------------------------------------------------------------------- /testing/lin/claipd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/claipd.f -------------------------------------------------------------------------------- /testing/lin/claptm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/claptm.f -------------------------------------------------------------------------------- /testing/lin/clarfy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clarfy.f -------------------------------------------------------------------------------- /testing/lin/clarhs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clarhs.f -------------------------------------------------------------------------------- /testing/lin/clatb4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clatb4.f -------------------------------------------------------------------------------- /testing/lin/clatb5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clatb5.f -------------------------------------------------------------------------------- /testing/lin/clatsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clatsp.f -------------------------------------------------------------------------------- /testing/lin/clatsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clatsy.f -------------------------------------------------------------------------------- /testing/lin/clattb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clattb.f -------------------------------------------------------------------------------- /testing/lin/clattp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clattp.f -------------------------------------------------------------------------------- /testing/lin/clattr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clattr.f -------------------------------------------------------------------------------- /testing/lin/clavhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clavhe.f -------------------------------------------------------------------------------- /testing/lin/clavhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clavhp.f -------------------------------------------------------------------------------- /testing/lin/clavsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clavsp.f -------------------------------------------------------------------------------- /testing/lin/clavsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clavsy.f -------------------------------------------------------------------------------- /testing/lin/clqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clqt01.f -------------------------------------------------------------------------------- /testing/lin/clqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clqt02.f -------------------------------------------------------------------------------- /testing/lin/clqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/clqt03.f -------------------------------------------------------------------------------- /testing/lin/cpbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpbt01.f -------------------------------------------------------------------------------- /testing/lin/cpbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpbt02.f -------------------------------------------------------------------------------- /testing/lin/cpbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpbt05.f -------------------------------------------------------------------------------- /testing/lin/cpot01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpot01.f -------------------------------------------------------------------------------- /testing/lin/cpot02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpot02.f -------------------------------------------------------------------------------- /testing/lin/cpot03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpot03.f -------------------------------------------------------------------------------- /testing/lin/cpot05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpot05.f -------------------------------------------------------------------------------- /testing/lin/cppt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cppt01.f -------------------------------------------------------------------------------- /testing/lin/cppt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cppt02.f -------------------------------------------------------------------------------- /testing/lin/cppt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cppt03.f -------------------------------------------------------------------------------- /testing/lin/cppt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cppt05.f -------------------------------------------------------------------------------- /testing/lin/cpst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cpst01.f -------------------------------------------------------------------------------- /testing/lin/cptt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cptt01.f -------------------------------------------------------------------------------- /testing/lin/cptt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cptt02.f -------------------------------------------------------------------------------- /testing/lin/cptt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cptt05.f -------------------------------------------------------------------------------- /testing/lin/cqlt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqlt01.f -------------------------------------------------------------------------------- /testing/lin/cqlt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqlt02.f -------------------------------------------------------------------------------- /testing/lin/cqlt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqlt03.f -------------------------------------------------------------------------------- /testing/lin/cqpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqpt01.f -------------------------------------------------------------------------------- /testing/lin/cqrt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt01.f -------------------------------------------------------------------------------- /testing/lin/cqrt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt02.f -------------------------------------------------------------------------------- /testing/lin/cqrt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt03.f -------------------------------------------------------------------------------- /testing/lin/cqrt11.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt11.f -------------------------------------------------------------------------------- /testing/lin/cqrt12.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt12.f -------------------------------------------------------------------------------- /testing/lin/cqrt13.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt13.f -------------------------------------------------------------------------------- /testing/lin/cqrt14.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt14.f -------------------------------------------------------------------------------- /testing/lin/cqrt15.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt15.f -------------------------------------------------------------------------------- /testing/lin/cqrt16.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt16.f -------------------------------------------------------------------------------- /testing/lin/cqrt17.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cqrt17.f -------------------------------------------------------------------------------- /testing/lin/crqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/crqt01.f -------------------------------------------------------------------------------- /testing/lin/crqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/crqt02.f -------------------------------------------------------------------------------- /testing/lin/crqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/crqt03.f -------------------------------------------------------------------------------- /testing/lin/crzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/crzt01.f -------------------------------------------------------------------------------- /testing/lin/crzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/crzt02.f -------------------------------------------------------------------------------- /testing/lin/csbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/csbmv.f -------------------------------------------------------------------------------- /testing/lin/cspt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cspt01.f -------------------------------------------------------------------------------- /testing/lin/cspt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cspt02.f -------------------------------------------------------------------------------- /testing/lin/cspt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cspt03.f -------------------------------------------------------------------------------- /testing/lin/cstt21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cstt21.f -------------------------------------------------------------------------------- /testing/lin/csyt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/csyt01.f -------------------------------------------------------------------------------- /testing/lin/csyt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/csyt02.f -------------------------------------------------------------------------------- /testing/lin/csyt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/csyt03.f -------------------------------------------------------------------------------- /testing/lin/ctbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctbt02.f -------------------------------------------------------------------------------- /testing/lin/ctbt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctbt03.f -------------------------------------------------------------------------------- /testing/lin/ctbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctbt05.f -------------------------------------------------------------------------------- /testing/lin/ctbt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctbt06.f -------------------------------------------------------------------------------- /testing/lin/ctest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctest.in -------------------------------------------------------------------------------- /testing/lin/ctpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctpt01.f -------------------------------------------------------------------------------- /testing/lin/ctpt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctpt02.f -------------------------------------------------------------------------------- /testing/lin/ctpt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctpt03.f -------------------------------------------------------------------------------- /testing/lin/ctpt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctpt05.f -------------------------------------------------------------------------------- /testing/lin/ctpt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctpt06.f -------------------------------------------------------------------------------- /testing/lin/ctrt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctrt01.f -------------------------------------------------------------------------------- /testing/lin/ctrt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctrt02.f -------------------------------------------------------------------------------- /testing/lin/ctrt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctrt03.f -------------------------------------------------------------------------------- /testing/lin/ctrt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctrt05.f -------------------------------------------------------------------------------- /testing/lin/ctrt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctrt06.f -------------------------------------------------------------------------------- /testing/lin/ctzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctzt01.f -------------------------------------------------------------------------------- /testing/lin/ctzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ctzt02.f -------------------------------------------------------------------------------- /testing/lin/cunt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/cunt01.f -------------------------------------------------------------------------------- /testing/lin/dbdt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dbdt01.f -------------------------------------------------------------------------------- /testing/lin/dchkaa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkaa.f -------------------------------------------------------------------------------- /testing/lin/dchkab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkab.f -------------------------------------------------------------------------------- /testing/lin/dchkeq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkeq.f -------------------------------------------------------------------------------- /testing/lin/dchkgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkgb.f -------------------------------------------------------------------------------- /testing/lin/dchkge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkge.f -------------------------------------------------------------------------------- /testing/lin/dchkgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkgt.f -------------------------------------------------------------------------------- /testing/lin/dchklq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchklq.f -------------------------------------------------------------------------------- /testing/lin/dchkpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkpb.f -------------------------------------------------------------------------------- /testing/lin/dchkpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkpo.f -------------------------------------------------------------------------------- /testing/lin/dchkpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkpp.f -------------------------------------------------------------------------------- /testing/lin/dchkps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkps.f -------------------------------------------------------------------------------- /testing/lin/dchkpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkpt.f -------------------------------------------------------------------------------- /testing/lin/dchkq3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkq3.f -------------------------------------------------------------------------------- /testing/lin/dchkql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkql.f -------------------------------------------------------------------------------- /testing/lin/dchkqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkqp.f -------------------------------------------------------------------------------- /testing/lin/dchkqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkqr.f -------------------------------------------------------------------------------- /testing/lin/dchkrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchkrq.f -------------------------------------------------------------------------------- /testing/lin/dchksp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchksp.f -------------------------------------------------------------------------------- /testing/lin/dchksy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchksy.f -------------------------------------------------------------------------------- /testing/lin/dchktb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchktb.f -------------------------------------------------------------------------------- /testing/lin/dchktp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchktp.f -------------------------------------------------------------------------------- /testing/lin/dchktr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchktr.f -------------------------------------------------------------------------------- /testing/lin/dchktz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dchktz.f -------------------------------------------------------------------------------- /testing/lin/ddrvab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvab.f -------------------------------------------------------------------------------- /testing/lin/ddrvac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvac.f -------------------------------------------------------------------------------- /testing/lin/ddrvgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvgb.f -------------------------------------------------------------------------------- /testing/lin/ddrvge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvge.f -------------------------------------------------------------------------------- /testing/lin/ddrvgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvgt.f -------------------------------------------------------------------------------- /testing/lin/ddrvls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvls.f -------------------------------------------------------------------------------- /testing/lin/ddrvpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvpb.f -------------------------------------------------------------------------------- /testing/lin/ddrvpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvpo.f -------------------------------------------------------------------------------- /testing/lin/ddrvpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvpp.f -------------------------------------------------------------------------------- /testing/lin/ddrvpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvpt.f -------------------------------------------------------------------------------- /testing/lin/ddrvsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvsp.f -------------------------------------------------------------------------------- /testing/lin/ddrvsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ddrvsy.f -------------------------------------------------------------------------------- /testing/lin/derrab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrab.f -------------------------------------------------------------------------------- /testing/lin/derrac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrac.f -------------------------------------------------------------------------------- /testing/lin/derrge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrge.f -------------------------------------------------------------------------------- /testing/lin/derrgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrgt.f -------------------------------------------------------------------------------- /testing/lin/derrlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrlq.f -------------------------------------------------------------------------------- /testing/lin/derrls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrls.f -------------------------------------------------------------------------------- /testing/lin/derrpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrpo.f -------------------------------------------------------------------------------- /testing/lin/derrps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrps.f -------------------------------------------------------------------------------- /testing/lin/derrql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrql.f -------------------------------------------------------------------------------- /testing/lin/derrqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrqp.f -------------------------------------------------------------------------------- /testing/lin/derrqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrqr.f -------------------------------------------------------------------------------- /testing/lin/derrrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrrq.f -------------------------------------------------------------------------------- /testing/lin/derrsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrsy.f -------------------------------------------------------------------------------- /testing/lin/derrtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrtr.f -------------------------------------------------------------------------------- /testing/lin/derrtz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrtz.f -------------------------------------------------------------------------------- /testing/lin/derrvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/derrvx.f -------------------------------------------------------------------------------- /testing/lin/dgbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgbt01.f -------------------------------------------------------------------------------- /testing/lin/dgbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgbt02.f -------------------------------------------------------------------------------- /testing/lin/dgbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgbt05.f -------------------------------------------------------------------------------- /testing/lin/dgelqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgelqs.f -------------------------------------------------------------------------------- /testing/lin/dgennd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgennd.f -------------------------------------------------------------------------------- /testing/lin/dgeqls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgeqls.f -------------------------------------------------------------------------------- /testing/lin/dgeqrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgeqrs.f -------------------------------------------------------------------------------- /testing/lin/dgerqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgerqs.f -------------------------------------------------------------------------------- /testing/lin/dget01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget01.f -------------------------------------------------------------------------------- /testing/lin/dget02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget02.f -------------------------------------------------------------------------------- /testing/lin/dget03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget03.f -------------------------------------------------------------------------------- /testing/lin/dget04.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget04.f -------------------------------------------------------------------------------- /testing/lin/dget06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget06.f -------------------------------------------------------------------------------- /testing/lin/dget07.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget07.f -------------------------------------------------------------------------------- /testing/lin/dget08.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget08.f -------------------------------------------------------------------------------- /testing/lin/dget22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dget22.f -------------------------------------------------------------------------------- /testing/lin/dgtt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgtt01.f -------------------------------------------------------------------------------- /testing/lin/dgtt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgtt02.f -------------------------------------------------------------------------------- /testing/lin/dgtt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dgtt05.f -------------------------------------------------------------------------------- /testing/lin/dhst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dhst01.f -------------------------------------------------------------------------------- /testing/lin/dlaord.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlaord.f -------------------------------------------------------------------------------- /testing/lin/dlaptm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlaptm.f -------------------------------------------------------------------------------- /testing/lin/dlarfy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlarfy.f -------------------------------------------------------------------------------- /testing/lin/dlarhs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlarhs.f -------------------------------------------------------------------------------- /testing/lin/dlatb4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlatb4.f -------------------------------------------------------------------------------- /testing/lin/dlatb5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlatb5.f -------------------------------------------------------------------------------- /testing/lin/dlattb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlattb.f -------------------------------------------------------------------------------- /testing/lin/dlattp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlattp.f -------------------------------------------------------------------------------- /testing/lin/dlattr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlattr.f -------------------------------------------------------------------------------- /testing/lin/dlavsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlavsp.f -------------------------------------------------------------------------------- /testing/lin/dlavsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlavsy.f -------------------------------------------------------------------------------- /testing/lin/dlqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlqt01.f -------------------------------------------------------------------------------- /testing/lin/dlqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlqt02.f -------------------------------------------------------------------------------- /testing/lin/dlqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dlqt03.f -------------------------------------------------------------------------------- /testing/lin/dort01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dort01.f -------------------------------------------------------------------------------- /testing/lin/dpbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpbt01.f -------------------------------------------------------------------------------- /testing/lin/dpbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpbt02.f -------------------------------------------------------------------------------- /testing/lin/dpbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpbt05.f -------------------------------------------------------------------------------- /testing/lin/dpot01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpot01.f -------------------------------------------------------------------------------- /testing/lin/dpot02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpot02.f -------------------------------------------------------------------------------- /testing/lin/dpot03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpot03.f -------------------------------------------------------------------------------- /testing/lin/dpot05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpot05.f -------------------------------------------------------------------------------- /testing/lin/dpot06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpot06.f -------------------------------------------------------------------------------- /testing/lin/dppt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dppt01.f -------------------------------------------------------------------------------- /testing/lin/dppt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dppt02.f -------------------------------------------------------------------------------- /testing/lin/dppt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dppt03.f -------------------------------------------------------------------------------- /testing/lin/dppt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dppt05.f -------------------------------------------------------------------------------- /testing/lin/dpst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dpst01.f -------------------------------------------------------------------------------- /testing/lin/dptt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dptt01.f -------------------------------------------------------------------------------- /testing/lin/dptt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dptt02.f -------------------------------------------------------------------------------- /testing/lin/dptt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dptt05.f -------------------------------------------------------------------------------- /testing/lin/dqlt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqlt01.f -------------------------------------------------------------------------------- /testing/lin/dqlt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqlt02.f -------------------------------------------------------------------------------- /testing/lin/dqlt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqlt03.f -------------------------------------------------------------------------------- /testing/lin/dqpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqpt01.f -------------------------------------------------------------------------------- /testing/lin/dqrt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt01.f -------------------------------------------------------------------------------- /testing/lin/dqrt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt02.f -------------------------------------------------------------------------------- /testing/lin/dqrt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt03.f -------------------------------------------------------------------------------- /testing/lin/dqrt11.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt11.f -------------------------------------------------------------------------------- /testing/lin/dqrt12.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt12.f -------------------------------------------------------------------------------- /testing/lin/dqrt13.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt13.f -------------------------------------------------------------------------------- /testing/lin/dqrt14.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt14.f -------------------------------------------------------------------------------- /testing/lin/dqrt15.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt15.f -------------------------------------------------------------------------------- /testing/lin/dqrt16.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt16.f -------------------------------------------------------------------------------- /testing/lin/dqrt17.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dqrt17.f -------------------------------------------------------------------------------- /testing/lin/drqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/drqt01.f -------------------------------------------------------------------------------- /testing/lin/drqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/drqt02.f -------------------------------------------------------------------------------- /testing/lin/drqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/drqt03.f -------------------------------------------------------------------------------- /testing/lin/drzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/drzt01.f -------------------------------------------------------------------------------- /testing/lin/drzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/drzt02.f -------------------------------------------------------------------------------- /testing/lin/dspt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dspt01.f -------------------------------------------------------------------------------- /testing/lin/dstt21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dstt21.f -------------------------------------------------------------------------------- /testing/lin/dsyt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dsyt01.f -------------------------------------------------------------------------------- /testing/lin/dsyt21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dsyt21.f -------------------------------------------------------------------------------- /testing/lin/dsyt22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dsyt22.f -------------------------------------------------------------------------------- /testing/lin/dtbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtbt02.f -------------------------------------------------------------------------------- /testing/lin/dtbt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtbt03.f -------------------------------------------------------------------------------- /testing/lin/dtbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtbt05.f -------------------------------------------------------------------------------- /testing/lin/dtbt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtbt06.f -------------------------------------------------------------------------------- /testing/lin/dtest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtest.in -------------------------------------------------------------------------------- /testing/lin/dtpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtpt01.f -------------------------------------------------------------------------------- /testing/lin/dtpt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtpt02.f -------------------------------------------------------------------------------- /testing/lin/dtpt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtpt03.f -------------------------------------------------------------------------------- /testing/lin/dtpt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtpt05.f -------------------------------------------------------------------------------- /testing/lin/dtpt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtpt06.f -------------------------------------------------------------------------------- /testing/lin/dtrt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtrt01.f -------------------------------------------------------------------------------- /testing/lin/dtrt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtrt02.f -------------------------------------------------------------------------------- /testing/lin/dtrt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtrt03.f -------------------------------------------------------------------------------- /testing/lin/dtrt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtrt05.f -------------------------------------------------------------------------------- /testing/lin/dtrt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtrt06.f -------------------------------------------------------------------------------- /testing/lin/dtzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtzt01.f -------------------------------------------------------------------------------- /testing/lin/dtzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/dtzt02.f -------------------------------------------------------------------------------- /testing/lin/icopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/icopy.f -------------------------------------------------------------------------------- /testing/lin/ilaenv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ilaenv.f -------------------------------------------------------------------------------- /testing/lin/sbdt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sbdt01.f -------------------------------------------------------------------------------- /testing/lin/schkaa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkaa.f -------------------------------------------------------------------------------- /testing/lin/schkeq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkeq.f -------------------------------------------------------------------------------- /testing/lin/schkgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkgb.f -------------------------------------------------------------------------------- /testing/lin/schkge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkge.f -------------------------------------------------------------------------------- /testing/lin/schkgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkgt.f -------------------------------------------------------------------------------- /testing/lin/schklq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schklq.f -------------------------------------------------------------------------------- /testing/lin/schkpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkpb.f -------------------------------------------------------------------------------- /testing/lin/schkpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkpo.f -------------------------------------------------------------------------------- /testing/lin/schkpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkpp.f -------------------------------------------------------------------------------- /testing/lin/schkps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkps.f -------------------------------------------------------------------------------- /testing/lin/schkpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkpt.f -------------------------------------------------------------------------------- /testing/lin/schkq3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkq3.f -------------------------------------------------------------------------------- /testing/lin/schkql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkql.f -------------------------------------------------------------------------------- /testing/lin/schkqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkqp.f -------------------------------------------------------------------------------- /testing/lin/schkqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkqr.f -------------------------------------------------------------------------------- /testing/lin/schkrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schkrq.f -------------------------------------------------------------------------------- /testing/lin/schksp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schksp.f -------------------------------------------------------------------------------- /testing/lin/schktb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schktb.f -------------------------------------------------------------------------------- /testing/lin/schktp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schktp.f -------------------------------------------------------------------------------- /testing/lin/schktr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schktr.f -------------------------------------------------------------------------------- /testing/lin/schktz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/schktz.f -------------------------------------------------------------------------------- /testing/lin/sdrvgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvgb.f -------------------------------------------------------------------------------- /testing/lin/sdrvge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvge.f -------------------------------------------------------------------------------- /testing/lin/sdrvgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvgt.f -------------------------------------------------------------------------------- /testing/lin/sdrvls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvls.f -------------------------------------------------------------------------------- /testing/lin/sdrvpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvpb.f -------------------------------------------------------------------------------- /testing/lin/sdrvpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvpo.f -------------------------------------------------------------------------------- /testing/lin/sdrvpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvpp.f -------------------------------------------------------------------------------- /testing/lin/sdrvpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvpt.f -------------------------------------------------------------------------------- /testing/lin/sdrvsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvsp.f -------------------------------------------------------------------------------- /testing/lin/sdrvsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sdrvsy.f -------------------------------------------------------------------------------- /testing/lin/serrge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrge.f -------------------------------------------------------------------------------- /testing/lin/serrgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrgt.f -------------------------------------------------------------------------------- /testing/lin/serrlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrlq.f -------------------------------------------------------------------------------- /testing/lin/serrls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrls.f -------------------------------------------------------------------------------- /testing/lin/serrpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrpo.f -------------------------------------------------------------------------------- /testing/lin/serrps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrps.f -------------------------------------------------------------------------------- /testing/lin/serrql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrql.f -------------------------------------------------------------------------------- /testing/lin/serrqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrqp.f -------------------------------------------------------------------------------- /testing/lin/serrqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrqr.f -------------------------------------------------------------------------------- /testing/lin/serrrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrrq.f -------------------------------------------------------------------------------- /testing/lin/serrsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrsy.f -------------------------------------------------------------------------------- /testing/lin/serrtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrtr.f -------------------------------------------------------------------------------- /testing/lin/serrtz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrtz.f -------------------------------------------------------------------------------- /testing/lin/serrvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/serrvx.f -------------------------------------------------------------------------------- /testing/lin/sgbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgbt01.f -------------------------------------------------------------------------------- /testing/lin/sgbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgbt02.f -------------------------------------------------------------------------------- /testing/lin/sgbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgbt05.f -------------------------------------------------------------------------------- /testing/lin/sgelqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgelqs.f -------------------------------------------------------------------------------- /testing/lin/sgennd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgennd.f -------------------------------------------------------------------------------- /testing/lin/sgeqls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgeqls.f -------------------------------------------------------------------------------- /testing/lin/sgeqrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgeqrs.f -------------------------------------------------------------------------------- /testing/lin/sgerqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgerqs.f -------------------------------------------------------------------------------- /testing/lin/sget01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sget01.f -------------------------------------------------------------------------------- /testing/lin/sget02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sget02.f -------------------------------------------------------------------------------- /testing/lin/sget03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sget03.f -------------------------------------------------------------------------------- /testing/lin/sget04.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sget04.f -------------------------------------------------------------------------------- /testing/lin/sget06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sget06.f -------------------------------------------------------------------------------- /testing/lin/sget07.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sget07.f -------------------------------------------------------------------------------- /testing/lin/sget22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sget22.f -------------------------------------------------------------------------------- /testing/lin/sgtt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgtt01.f -------------------------------------------------------------------------------- /testing/lin/sgtt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgtt02.f -------------------------------------------------------------------------------- /testing/lin/sgtt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sgtt05.f -------------------------------------------------------------------------------- /testing/lin/shst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/shst01.f -------------------------------------------------------------------------------- /testing/lin/slaord.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slaord.f -------------------------------------------------------------------------------- /testing/lin/slaptm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slaptm.f -------------------------------------------------------------------------------- /testing/lin/slarfy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slarfy.f -------------------------------------------------------------------------------- /testing/lin/slarhs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slarhs.f -------------------------------------------------------------------------------- /testing/lin/slatb4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slatb4.f -------------------------------------------------------------------------------- /testing/lin/slatb5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slatb5.f -------------------------------------------------------------------------------- /testing/lin/slattb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slattb.f -------------------------------------------------------------------------------- /testing/lin/slattp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slattp.f -------------------------------------------------------------------------------- /testing/lin/slattr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slattr.f -------------------------------------------------------------------------------- /testing/lin/slavsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slavsp.f -------------------------------------------------------------------------------- /testing/lin/slavsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slavsy.f -------------------------------------------------------------------------------- /testing/lin/slqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slqt01.f -------------------------------------------------------------------------------- /testing/lin/slqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slqt02.f -------------------------------------------------------------------------------- /testing/lin/slqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/slqt03.f -------------------------------------------------------------------------------- /testing/lin/sort01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sort01.f -------------------------------------------------------------------------------- /testing/lin/spbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spbt01.f -------------------------------------------------------------------------------- /testing/lin/spbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spbt02.f -------------------------------------------------------------------------------- /testing/lin/spbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spbt05.f -------------------------------------------------------------------------------- /testing/lin/spot01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spot01.f -------------------------------------------------------------------------------- /testing/lin/spot02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spot02.f -------------------------------------------------------------------------------- /testing/lin/spot03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spot03.f -------------------------------------------------------------------------------- /testing/lin/spot05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spot05.f -------------------------------------------------------------------------------- /testing/lin/sppt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sppt01.f -------------------------------------------------------------------------------- /testing/lin/sppt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sppt02.f -------------------------------------------------------------------------------- /testing/lin/sppt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sppt03.f -------------------------------------------------------------------------------- /testing/lin/sppt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sppt05.f -------------------------------------------------------------------------------- /testing/lin/spst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/spst01.f -------------------------------------------------------------------------------- /testing/lin/sptt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sptt01.f -------------------------------------------------------------------------------- /testing/lin/sptt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sptt02.f -------------------------------------------------------------------------------- /testing/lin/sptt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sptt05.f -------------------------------------------------------------------------------- /testing/lin/sqlt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqlt01.f -------------------------------------------------------------------------------- /testing/lin/sqlt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqlt02.f -------------------------------------------------------------------------------- /testing/lin/sqlt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqlt03.f -------------------------------------------------------------------------------- /testing/lin/sqpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqpt01.f -------------------------------------------------------------------------------- /testing/lin/sqrt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt01.f -------------------------------------------------------------------------------- /testing/lin/sqrt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt02.f -------------------------------------------------------------------------------- /testing/lin/sqrt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt03.f -------------------------------------------------------------------------------- /testing/lin/sqrt11.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt11.f -------------------------------------------------------------------------------- /testing/lin/sqrt12.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt12.f -------------------------------------------------------------------------------- /testing/lin/sqrt13.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt13.f -------------------------------------------------------------------------------- /testing/lin/sqrt14.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt14.f -------------------------------------------------------------------------------- /testing/lin/sqrt15.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt15.f -------------------------------------------------------------------------------- /testing/lin/sqrt16.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt16.f -------------------------------------------------------------------------------- /testing/lin/sqrt17.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sqrt17.f -------------------------------------------------------------------------------- /testing/lin/srqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/srqt01.f -------------------------------------------------------------------------------- /testing/lin/srqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/srqt02.f -------------------------------------------------------------------------------- /testing/lin/srqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/srqt03.f -------------------------------------------------------------------------------- /testing/lin/srzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/srzt01.f -------------------------------------------------------------------------------- /testing/lin/srzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/srzt02.f -------------------------------------------------------------------------------- /testing/lin/sspt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sspt01.f -------------------------------------------------------------------------------- /testing/lin/sstt21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/sstt21.f -------------------------------------------------------------------------------- /testing/lin/ssyt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ssyt01.f -------------------------------------------------------------------------------- /testing/lin/ssyt21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ssyt21.f -------------------------------------------------------------------------------- /testing/lin/ssyt22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ssyt22.f -------------------------------------------------------------------------------- /testing/lin/stbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stbt02.f -------------------------------------------------------------------------------- /testing/lin/stbt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stbt03.f -------------------------------------------------------------------------------- /testing/lin/stbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stbt05.f -------------------------------------------------------------------------------- /testing/lin/stbt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stbt06.f -------------------------------------------------------------------------------- /testing/lin/stest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stest.in -------------------------------------------------------------------------------- /testing/lin/stpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stpt01.f -------------------------------------------------------------------------------- /testing/lin/stpt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stpt02.f -------------------------------------------------------------------------------- /testing/lin/stpt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stpt03.f -------------------------------------------------------------------------------- /testing/lin/stpt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stpt05.f -------------------------------------------------------------------------------- /testing/lin/stpt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stpt06.f -------------------------------------------------------------------------------- /testing/lin/strt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/strt01.f -------------------------------------------------------------------------------- /testing/lin/strt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/strt02.f -------------------------------------------------------------------------------- /testing/lin/strt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/strt03.f -------------------------------------------------------------------------------- /testing/lin/strt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/strt05.f -------------------------------------------------------------------------------- /testing/lin/strt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/strt06.f -------------------------------------------------------------------------------- /testing/lin/stzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stzt01.f -------------------------------------------------------------------------------- /testing/lin/stzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/stzt02.f -------------------------------------------------------------------------------- /testing/lin/xerbla.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/xerbla.f -------------------------------------------------------------------------------- /testing/lin/xlaenv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/xlaenv.f -------------------------------------------------------------------------------- /testing/lin/zbdt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zbdt01.f -------------------------------------------------------------------------------- /testing/lin/zchkaa.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkaa.f -------------------------------------------------------------------------------- /testing/lin/zchkab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkab.f -------------------------------------------------------------------------------- /testing/lin/zchkeq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkeq.f -------------------------------------------------------------------------------- /testing/lin/zchkgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkgb.f -------------------------------------------------------------------------------- /testing/lin/zchkge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkge.f -------------------------------------------------------------------------------- /testing/lin/zchkgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkgt.f -------------------------------------------------------------------------------- /testing/lin/zchkhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkhe.f -------------------------------------------------------------------------------- /testing/lin/zchkhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkhp.f -------------------------------------------------------------------------------- /testing/lin/zchklq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchklq.f -------------------------------------------------------------------------------- /testing/lin/zchkpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkpb.f -------------------------------------------------------------------------------- /testing/lin/zchkpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkpo.f -------------------------------------------------------------------------------- /testing/lin/zchkpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkpp.f -------------------------------------------------------------------------------- /testing/lin/zchkps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkps.f -------------------------------------------------------------------------------- /testing/lin/zchkpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkpt.f -------------------------------------------------------------------------------- /testing/lin/zchkq3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkq3.f -------------------------------------------------------------------------------- /testing/lin/zchkql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkql.f -------------------------------------------------------------------------------- /testing/lin/zchkqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkqp.f -------------------------------------------------------------------------------- /testing/lin/zchkqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkqr.f -------------------------------------------------------------------------------- /testing/lin/zchkrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchkrq.f -------------------------------------------------------------------------------- /testing/lin/zchksp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchksp.f -------------------------------------------------------------------------------- /testing/lin/zchksy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchksy.f -------------------------------------------------------------------------------- /testing/lin/zchktb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchktb.f -------------------------------------------------------------------------------- /testing/lin/zchktp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchktp.f -------------------------------------------------------------------------------- /testing/lin/zchktr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchktr.f -------------------------------------------------------------------------------- /testing/lin/zchktz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zchktz.f -------------------------------------------------------------------------------- /testing/lin/zdrvab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvab.f -------------------------------------------------------------------------------- /testing/lin/zdrvac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvac.f -------------------------------------------------------------------------------- /testing/lin/zdrvgb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvgb.f -------------------------------------------------------------------------------- /testing/lin/zdrvge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvge.f -------------------------------------------------------------------------------- /testing/lin/zdrvgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvgt.f -------------------------------------------------------------------------------- /testing/lin/zdrvhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvhe.f -------------------------------------------------------------------------------- /testing/lin/zdrvhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvhp.f -------------------------------------------------------------------------------- /testing/lin/zdrvls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvls.f -------------------------------------------------------------------------------- /testing/lin/zdrvpb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvpb.f -------------------------------------------------------------------------------- /testing/lin/zdrvpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvpo.f -------------------------------------------------------------------------------- /testing/lin/zdrvpp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvpp.f -------------------------------------------------------------------------------- /testing/lin/zdrvpt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvpt.f -------------------------------------------------------------------------------- /testing/lin/zdrvsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvsp.f -------------------------------------------------------------------------------- /testing/lin/zdrvsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zdrvsy.f -------------------------------------------------------------------------------- /testing/lin/zerrab.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrab.f -------------------------------------------------------------------------------- /testing/lin/zerrac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrac.f -------------------------------------------------------------------------------- /testing/lin/zerrge.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrge.f -------------------------------------------------------------------------------- /testing/lin/zerrgt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrgt.f -------------------------------------------------------------------------------- /testing/lin/zerrhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrhe.f -------------------------------------------------------------------------------- /testing/lin/zerrlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrlq.f -------------------------------------------------------------------------------- /testing/lin/zerrls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrls.f -------------------------------------------------------------------------------- /testing/lin/zerrpo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrpo.f -------------------------------------------------------------------------------- /testing/lin/zerrps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrps.f -------------------------------------------------------------------------------- /testing/lin/zerrql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrql.f -------------------------------------------------------------------------------- /testing/lin/zerrqp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrqp.f -------------------------------------------------------------------------------- /testing/lin/zerrqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrqr.f -------------------------------------------------------------------------------- /testing/lin/zerrrq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrrq.f -------------------------------------------------------------------------------- /testing/lin/zerrsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrsy.f -------------------------------------------------------------------------------- /testing/lin/zerrtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrtr.f -------------------------------------------------------------------------------- /testing/lin/zerrtz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrtz.f -------------------------------------------------------------------------------- /testing/lin/zerrvx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zerrvx.f -------------------------------------------------------------------------------- /testing/lin/zgbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgbt01.f -------------------------------------------------------------------------------- /testing/lin/zgbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgbt02.f -------------------------------------------------------------------------------- /testing/lin/zgbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgbt05.f -------------------------------------------------------------------------------- /testing/lin/zgelqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgelqs.f -------------------------------------------------------------------------------- /testing/lin/zgennd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgennd.f -------------------------------------------------------------------------------- /testing/lin/zgeqls.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgeqls.f -------------------------------------------------------------------------------- /testing/lin/zgeqrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgeqrs.f -------------------------------------------------------------------------------- /testing/lin/zgerqs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgerqs.f -------------------------------------------------------------------------------- /testing/lin/zget01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zget01.f -------------------------------------------------------------------------------- /testing/lin/zget02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zget02.f -------------------------------------------------------------------------------- /testing/lin/zget03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zget03.f -------------------------------------------------------------------------------- /testing/lin/zget04.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zget04.f -------------------------------------------------------------------------------- /testing/lin/zget07.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zget07.f -------------------------------------------------------------------------------- /testing/lin/zget08.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zget08.f -------------------------------------------------------------------------------- /testing/lin/zget22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zget22.f -------------------------------------------------------------------------------- /testing/lin/zgtt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgtt01.f -------------------------------------------------------------------------------- /testing/lin/zgtt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgtt02.f -------------------------------------------------------------------------------- /testing/lin/zgtt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zgtt05.f -------------------------------------------------------------------------------- /testing/lin/zhet01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zhet01.f -------------------------------------------------------------------------------- /testing/lin/zhet21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zhet21.f -------------------------------------------------------------------------------- /testing/lin/zhet22.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zhet22.f -------------------------------------------------------------------------------- /testing/lin/zhpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zhpt01.f -------------------------------------------------------------------------------- /testing/lin/zhst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zhst01.f -------------------------------------------------------------------------------- /testing/lin/zlaipd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlaipd.f -------------------------------------------------------------------------------- /testing/lin/zlaptm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlaptm.f -------------------------------------------------------------------------------- /testing/lin/zlarfy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlarfy.f -------------------------------------------------------------------------------- /testing/lin/zlarhs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlarhs.f -------------------------------------------------------------------------------- /testing/lin/zlatb4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlatb4.f -------------------------------------------------------------------------------- /testing/lin/zlatb5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlatb5.f -------------------------------------------------------------------------------- /testing/lin/zlatsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlatsp.f -------------------------------------------------------------------------------- /testing/lin/zlatsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlatsy.f -------------------------------------------------------------------------------- /testing/lin/zlattb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlattb.f -------------------------------------------------------------------------------- /testing/lin/zlattp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlattp.f -------------------------------------------------------------------------------- /testing/lin/zlattr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlattr.f -------------------------------------------------------------------------------- /testing/lin/zlavhe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlavhe.f -------------------------------------------------------------------------------- /testing/lin/zlavhp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlavhp.f -------------------------------------------------------------------------------- /testing/lin/zlavsp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlavsp.f -------------------------------------------------------------------------------- /testing/lin/zlavsy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlavsy.f -------------------------------------------------------------------------------- /testing/lin/zlqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlqt01.f -------------------------------------------------------------------------------- /testing/lin/zlqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlqt02.f -------------------------------------------------------------------------------- /testing/lin/zlqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zlqt03.f -------------------------------------------------------------------------------- /testing/lin/zpbt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpbt01.f -------------------------------------------------------------------------------- /testing/lin/zpbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpbt02.f -------------------------------------------------------------------------------- /testing/lin/zpbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpbt05.f -------------------------------------------------------------------------------- /testing/lin/zpot01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpot01.f -------------------------------------------------------------------------------- /testing/lin/zpot02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpot02.f -------------------------------------------------------------------------------- /testing/lin/zpot03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpot03.f -------------------------------------------------------------------------------- /testing/lin/zpot05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpot05.f -------------------------------------------------------------------------------- /testing/lin/zpot06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpot06.f -------------------------------------------------------------------------------- /testing/lin/zppt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zppt01.f -------------------------------------------------------------------------------- /testing/lin/zppt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zppt02.f -------------------------------------------------------------------------------- /testing/lin/zppt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zppt03.f -------------------------------------------------------------------------------- /testing/lin/zppt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zppt05.f -------------------------------------------------------------------------------- /testing/lin/zpst01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zpst01.f -------------------------------------------------------------------------------- /testing/lin/zptt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zptt01.f -------------------------------------------------------------------------------- /testing/lin/zptt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zptt02.f -------------------------------------------------------------------------------- /testing/lin/zptt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zptt05.f -------------------------------------------------------------------------------- /testing/lin/zqlt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqlt01.f -------------------------------------------------------------------------------- /testing/lin/zqlt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqlt02.f -------------------------------------------------------------------------------- /testing/lin/zqlt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqlt03.f -------------------------------------------------------------------------------- /testing/lin/zqpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqpt01.f -------------------------------------------------------------------------------- /testing/lin/zqrt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt01.f -------------------------------------------------------------------------------- /testing/lin/zqrt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt02.f -------------------------------------------------------------------------------- /testing/lin/zqrt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt03.f -------------------------------------------------------------------------------- /testing/lin/zqrt11.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt11.f -------------------------------------------------------------------------------- /testing/lin/zqrt12.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt12.f -------------------------------------------------------------------------------- /testing/lin/zqrt13.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt13.f -------------------------------------------------------------------------------- /testing/lin/zqrt14.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt14.f -------------------------------------------------------------------------------- /testing/lin/zqrt15.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt15.f -------------------------------------------------------------------------------- /testing/lin/zqrt16.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt16.f -------------------------------------------------------------------------------- /testing/lin/zqrt17.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zqrt17.f -------------------------------------------------------------------------------- /testing/lin/zrqt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zrqt01.f -------------------------------------------------------------------------------- /testing/lin/zrqt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zrqt02.f -------------------------------------------------------------------------------- /testing/lin/zrqt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zrqt03.f -------------------------------------------------------------------------------- /testing/lin/zrzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zrzt01.f -------------------------------------------------------------------------------- /testing/lin/zrzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zrzt02.f -------------------------------------------------------------------------------- /testing/lin/zsbmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zsbmv.f -------------------------------------------------------------------------------- /testing/lin/zspt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zspt01.f -------------------------------------------------------------------------------- /testing/lin/zspt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zspt02.f -------------------------------------------------------------------------------- /testing/lin/zspt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zspt03.f -------------------------------------------------------------------------------- /testing/lin/zstt21.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zstt21.f -------------------------------------------------------------------------------- /testing/lin/zsyt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zsyt01.f -------------------------------------------------------------------------------- /testing/lin/zsyt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zsyt02.f -------------------------------------------------------------------------------- /testing/lin/zsyt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zsyt03.f -------------------------------------------------------------------------------- /testing/lin/ztbt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztbt02.f -------------------------------------------------------------------------------- /testing/lin/ztbt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztbt03.f -------------------------------------------------------------------------------- /testing/lin/ztbt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztbt05.f -------------------------------------------------------------------------------- /testing/lin/ztbt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztbt06.f -------------------------------------------------------------------------------- /testing/lin/ztest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztest.in -------------------------------------------------------------------------------- /testing/lin/ztpt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztpt01.f -------------------------------------------------------------------------------- /testing/lin/ztpt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztpt02.f -------------------------------------------------------------------------------- /testing/lin/ztpt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztpt03.f -------------------------------------------------------------------------------- /testing/lin/ztpt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztpt05.f -------------------------------------------------------------------------------- /testing/lin/ztpt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztpt06.f -------------------------------------------------------------------------------- /testing/lin/ztrt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztrt01.f -------------------------------------------------------------------------------- /testing/lin/ztrt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztrt02.f -------------------------------------------------------------------------------- /testing/lin/ztrt03.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztrt03.f -------------------------------------------------------------------------------- /testing/lin/ztrt05.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztrt05.f -------------------------------------------------------------------------------- /testing/lin/ztrt06.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztrt06.f -------------------------------------------------------------------------------- /testing/lin/ztzt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztzt01.f -------------------------------------------------------------------------------- /testing/lin/ztzt02.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/ztzt02.f -------------------------------------------------------------------------------- /testing/lin/zunt01.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/lin/zunt01.f -------------------------------------------------------------------------------- /testing/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/run_tests.py -------------------------------------------------------------------------------- /testing/testing_z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/testing_z.h -------------------------------------------------------------------------------- /testing/testings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/testings.h -------------------------------------------------------------------------------- /testing/trace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/testing/trace.css -------------------------------------------------------------------------------- /tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/build.sh -------------------------------------------------------------------------------- /tools/check-style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/check-style.py -------------------------------------------------------------------------------- /tools/checklist.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/checklist.csh -------------------------------------------------------------------------------- /tools/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/codegen.py -------------------------------------------------------------------------------- /tools/gen-hip-make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/gen-hip-make -------------------------------------------------------------------------------- /tools/hipify-perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/hipify-perl -------------------------------------------------------------------------------- /tools/magmasubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/magmasubs.py -------------------------------------------------------------------------------- /tools/package-routine-web/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /tools/package-routine-web/tars/cuda/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | # store tarfiles in here -------------------------------------------------------------------------------- /tools/package-routine-web/tars/hip/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | # store tarfiles in here -------------------------------------------------------------------------------- /tools/parse-magma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/parse-magma.py -------------------------------------------------------------------------------- /tools/trim_spaces.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/trim_spaces.pl -------------------------------------------------------------------------------- /tools/wdiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icl-utk-edu/magma/HEAD/tools/wdiff.pl --------------------------------------------------------------------------------