├── .azuredevops └── rocm-ci.yml ├── .clang-format ├── .githooks ├── install └── pre-commit ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md └── dependabot.yml ├── .gitignore ├── .jenkins ├── codecov.groovy ├── common.groovy ├── extended.groovy ├── precheckin-cuda.groovy ├── precheckin.groovy ├── static.groovy └── staticanalysis.groovy ├── .readthedocs.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── clients ├── CMakeLists.txt ├── benchmarks │ ├── CMakeLists.txt │ ├── client.cpp │ ├── hipsparse_arguments_config.cpp │ ├── hipsparse_arguments_config.hpp │ ├── hipsparse_bench.cpp │ ├── hipsparse_bench.hpp │ ├── hipsparse_bench_app.cpp │ ├── hipsparse_bench_app.hpp │ ├── hipsparse_bench_cmdlines.cpp │ ├── hipsparse_bench_cmdlines.hpp │ ├── hipsparse_routine.cpp │ ├── hipsparse_routine.hpp │ └── program_options.hpp ├── common │ ├── arg_check.cpp │ ├── hipsparse_template_specialization.cpp │ ├── unit.cpp │ └── utility.cpp ├── include │ ├── arg_check.hpp │ ├── display.hpp │ ├── flops.hpp │ ├── gbyte.hpp │ ├── hipsparse.hpp │ ├── hipsparse_arguments.hpp │ ├── hipsparse_arguments_support.hpp │ ├── hipsparse_datatype2string.hpp │ ├── hipsparse_test_unique_ptr.hpp │ ├── testing_axpby.hpp │ ├── testing_axpyi.hpp │ ├── testing_bsr2csr.hpp │ ├── testing_bsric02.hpp │ ├── testing_bsrilu02.hpp │ ├── testing_bsrmm.hpp │ ├── testing_bsrmv.hpp │ ├── testing_bsrsm2.hpp │ ├── testing_bsrsv2.hpp │ ├── testing_bsrxmv.hpp │ ├── testing_const_dnmat_descr.hpp │ ├── testing_const_dnvec_descr.hpp │ ├── testing_const_spmat_descr.hpp │ ├── testing_const_spvec_descr.hpp │ ├── testing_coo2csr.hpp │ ├── testing_coosort.hpp │ ├── testing_csc2dense.hpp │ ├── testing_cscsort.hpp │ ├── testing_csr2bsr.hpp │ ├── testing_csr2coo.hpp │ ├── testing_csr2csc.hpp │ ├── testing_csr2csc_ex2.hpp │ ├── testing_csr2csr_compress.hpp │ ├── testing_csr2dense.hpp │ ├── testing_csr2gebsr.hpp │ ├── testing_csr2hyb.hpp │ ├── testing_csrcolor.hpp │ ├── testing_csrgeam.hpp │ ├── testing_csrgeam2.hpp │ ├── testing_csrgemm.hpp │ ├── testing_csrgemm2_a.hpp │ ├── testing_csrgemm2_b.hpp │ ├── testing_csric02.hpp │ ├── testing_csrilu02.hpp │ ├── testing_csrilusv.hpp │ ├── testing_csrmm.hpp │ ├── testing_csrmv.hpp │ ├── testing_csrsm2.hpp │ ├── testing_csrsort.hpp │ ├── testing_csrsv2.hpp │ ├── testing_csru2csr.hpp │ ├── testing_csx2dense.hpp │ ├── testing_dense2csc.hpp │ ├── testing_dense2csr.hpp │ ├── testing_dense2csx.hpp │ ├── testing_dense_to_sparse_coo.hpp │ ├── testing_dense_to_sparse_csc.hpp │ ├── testing_dense_to_sparse_csr.hpp │ ├── testing_dnmat_descr.hpp │ ├── testing_dnvec_descr.hpp │ ├── testing_dotci.hpp │ ├── testing_doti.hpp │ ├── testing_gather.hpp │ ├── testing_gebsr2csr.hpp │ ├── testing_gebsr2gebsc.hpp │ ├── testing_gebsr2gebsr.hpp │ ├── testing_gemmi.hpp │ ├── testing_gemvi.hpp │ ├── testing_gpsv_interleaved_batch.hpp │ ├── testing_gthr.hpp │ ├── testing_gthrz.hpp │ ├── testing_gtsv.hpp │ ├── testing_gtsv2_nopivot.hpp │ ├── testing_gtsv2_strided_batch.hpp │ ├── testing_gtsv_interleaved_batch.hpp │ ├── testing_hyb2csr.hpp │ ├── testing_hybmv.hpp │ ├── testing_identity.hpp │ ├── testing_nnz.hpp │ ├── testing_prune_csr2csr.hpp │ ├── testing_prune_csr2csr_by_percentage.hpp │ ├── testing_prune_dense2csr.hpp │ ├── testing_prune_dense2csr_by_percentage.hpp │ ├── testing_rot.hpp │ ├── testing_roti.hpp │ ├── testing_scatter.hpp │ ├── testing_sctr.hpp │ ├── testing_sddmm_coo.hpp │ ├── testing_sddmm_coo_aos.hpp │ ├── testing_sddmm_csc.hpp │ ├── testing_sddmm_csr.hpp │ ├── testing_sparse_to_dense_coo.hpp │ ├── testing_sparse_to_dense_csc.hpp │ ├── testing_sparse_to_dense_csr.hpp │ ├── testing_spgemm_csr.hpp │ ├── testing_spgemmreuse_csr.hpp │ ├── testing_spmat_descr.hpp │ ├── testing_spmm_batched_coo.hpp │ ├── testing_spmm_batched_csc.hpp │ ├── testing_spmm_batched_csr.hpp │ ├── testing_spmm_bell.hpp │ ├── testing_spmm_coo.hpp │ ├── testing_spmm_csc.hpp │ ├── testing_spmm_csr.hpp │ ├── testing_spmv_coo.hpp │ ├── testing_spmv_coo_aos.hpp │ ├── testing_spmv_csr.hpp │ ├── testing_spsm_coo.hpp │ ├── testing_spsm_csr.hpp │ ├── testing_spsv_coo.hpp │ ├── testing_spsv_csr.hpp │ ├── testing_spvec_descr.hpp │ ├── testing_spvv.hpp │ ├── unit.hpp │ └── utility.hpp ├── samples │ ├── CMakeLists.txt │ ├── example_axpyi.c │ ├── example_c_headers.c │ ├── example_csrmv.cpp │ ├── example_fortran_auxiliary.f90 │ ├── example_fortran_bsric02.f90 │ ├── example_fortran_bsrilu02.f90 │ ├── example_fortran_bsrmm.f90 │ ├── example_fortran_csric02.f90 │ ├── example_fortran_csrilu02.f90 │ ├── example_fortran_csrsm2.f90 │ ├── example_fortran_csrsv2.f90 │ ├── example_fortran_dotci.f90 │ ├── example_fortran_roti.f90 │ ├── example_fortran_spmv.f90 │ ├── example_handle.cpp │ └── example_hybmv.cpp └── tests │ ├── CMakeLists.txt │ ├── hipsparse_gtest_main.cpp │ ├── test_axpby.cpp │ ├── test_axpyi.cpp │ ├── test_bsr2csr.cpp │ ├── test_bsric02.cpp │ ├── test_bsrilu02.cpp │ ├── test_bsrmm.cpp │ ├── test_bsrmv.cpp │ ├── test_bsrsm2.cpp │ ├── test_bsrsv2.cpp │ ├── test_bsrxmv.cpp │ ├── test_const_dnmat_descr.cpp │ ├── test_const_dnvec_descr.cpp │ ├── test_const_spmat_descr.cpp │ ├── test_const_spvec_descr.cpp │ ├── test_coo2csr.cpp │ ├── test_coosort.cpp │ ├── test_csc2dense.cpp │ ├── test_cscsort.cpp │ ├── test_csr2bsr.cpp │ ├── test_csr2coo.cpp │ ├── test_csr2csc.cpp │ ├── test_csr2csc_ex2.cpp │ ├── test_csr2csr_compress.cpp │ ├── test_csr2dense.cpp │ ├── test_csr2gebsr.cpp │ ├── test_csr2hyb.cpp │ ├── test_csrcolor.cpp │ ├── test_csrgeam.cpp │ ├── test_csrgeam2.cpp │ ├── test_csrgemm.cpp │ ├── test_csrgemm2_a.cpp │ ├── test_csrgemm2_b.cpp │ ├── test_csric02.cpp │ ├── test_csrilu02.cpp │ ├── test_csrilusv.cpp │ ├── test_csrmm.cpp │ ├── test_csrmv.cpp │ ├── test_csrsm2.cpp │ ├── test_csrsort.cpp │ ├── test_csrsv2.cpp │ ├── test_csru2csr.cpp │ ├── test_dense2csc.cpp │ ├── test_dense2csr.cpp │ ├── test_dense_to_sparse_coo.cpp │ ├── test_dense_to_sparse_csc.cpp │ ├── test_dense_to_sparse_csr.cpp │ ├── test_dnmat_descr.cpp │ ├── test_dnvec_descr.cpp │ ├── test_dotci.cpp │ ├── test_doti.cpp │ ├── test_gather.cpp │ ├── test_gebsr2csr.cpp │ ├── test_gebsr2gebsc.cpp │ ├── test_gebsr2gebsr.cpp │ ├── test_gemmi.cpp │ ├── test_gemvi.cpp │ ├── test_gpsv_interleaved_batch.cpp │ ├── test_gthr.cpp │ ├── test_gthrz.cpp │ ├── test_gtsv.cpp │ ├── test_gtsv2_nopivot.cpp │ ├── test_gtsv2_strided_batch.cpp │ ├── test_gtsv_interleaved_batch.cpp │ ├── test_hyb2csr.cpp │ ├── test_hybmv.cpp │ ├── test_identity.cpp │ ├── test_nnz.cpp │ ├── test_prune_csr2csr.cpp │ ├── test_prune_csr2csr_by_percentage.cpp │ ├── test_prune_dense2csr.cpp │ ├── test_prune_dense2csr_by_percentage.cpp │ ├── test_rot.cpp │ ├── test_roti.cpp │ ├── test_scatter.cpp │ ├── test_sctr.cpp │ ├── test_sddmm_coo.cpp │ ├── test_sddmm_coo_aos.cpp │ ├── test_sddmm_csc.cpp │ ├── test_sddmm_csr.cpp │ ├── test_sparse_to_dense_coo.cpp │ ├── test_sparse_to_dense_csc.cpp │ ├── test_sparse_to_dense_csr.cpp │ ├── test_spgemm_csr.cpp │ ├── test_spgemmreuse_csr.cpp │ ├── test_spmat_descr.cpp │ ├── test_spmm_batched_coo.cpp │ ├── test_spmm_batched_csc.cpp │ ├── test_spmm_batched_csr.cpp │ ├── test_spmm_bell.cpp │ ├── test_spmm_coo.cpp │ ├── test_spmm_csc.cpp │ ├── test_spmm_csr.cpp │ ├── test_spmv_coo.cpp │ ├── test_spmv_coo_aos.cpp │ ├── test_spmv_csr.cpp │ ├── test_spsm_coo.cpp │ ├── test_spsm_csr.cpp │ ├── test_spsv_coo.cpp │ ├── test_spsv_csr.cpp │ ├── test_spvec_descr.cpp │ └── test_spvv.cpp ├── cmake ├── ClientMatrices.cmake ├── Dependencies.cmake ├── Verbose.cmake ├── get-cli-arguments.cmake └── hipsparse_clientmatrices.cmake ├── deps ├── CMakeLists.txt ├── convert.cpp ├── external-gtest.cmake └── to_hipSPARSE.sh ├── docs ├── .gitignore ├── CMakeLists.txt ├── conf.py ├── doxygen │ ├── Doxyfile │ └── modules.dox ├── howto │ └── using-hipsparse.rst ├── index.rst ├── install │ └── install.rst ├── license.rst ├── reference │ ├── api.rst │ ├── auxiliary.rst │ ├── conversion.rst │ ├── extra.rst │ ├── generic.rst │ ├── level1.rst │ ├── level2.rst │ ├── level3.rst │ ├── precision.rst │ ├── precond.rst │ ├── reference.rst │ ├── reorder.rst │ └── types.rst ├── sphinx │ ├── _toc.yml.in │ ├── requirements.in │ └── requirements.txt └── what-is-hipsparse.rst ├── install.sh ├── library ├── CMakeLists.txt ├── include │ ├── hipsparse-auxiliary.h │ ├── hipsparse-generic-auxiliary.h │ ├── hipsparse-generic-types.h │ ├── hipsparse-types.h │ ├── hipsparse-version.h.in │ ├── hipsparse.h │ └── internal │ │ ├── conversion │ │ ├── hipsparse_bsr2csr.h │ │ ├── hipsparse_coo2csr.h │ │ ├── hipsparse_coosort.h │ │ ├── hipsparse_create_identity_permutation.h │ │ ├── hipsparse_csc2dense.h │ │ ├── hipsparse_cscsort.h │ │ ├── hipsparse_csr2bsr.h │ │ ├── hipsparse_csr2coo.h │ │ ├── hipsparse_csr2csc.h │ │ ├── hipsparse_csr2csr_compress.h │ │ ├── hipsparse_csr2csru.h │ │ ├── hipsparse_csr2dense.h │ │ ├── hipsparse_csr2gebsr.h │ │ ├── hipsparse_csr2hyb.h │ │ ├── hipsparse_csrsort.h │ │ ├── hipsparse_csru2csr.h │ │ ├── hipsparse_dense2csc.h │ │ ├── hipsparse_dense2csr.h │ │ ├── hipsparse_gebsr2csr.h │ │ ├── hipsparse_gebsr2gebsc.h │ │ ├── hipsparse_gebsr2gebsr.h │ │ ├── hipsparse_hyb2csr.h │ │ ├── hipsparse_nnz.h │ │ ├── hipsparse_nnz_compress.h │ │ ├── hipsparse_prune_csr2csr.h │ │ ├── hipsparse_prune_csr2csr_by_percentage.h │ │ ├── hipsparse_prune_dense2csr.h │ │ └── hipsparse_prune_dense2csr_by_percentage.h │ │ ├── extra │ │ ├── hipsparse_csrgeam.h │ │ └── hipsparse_csrgemm.h │ │ ├── generic │ │ ├── hipsparse_axpby.h │ │ ├── hipsparse_dense2sparse.h │ │ ├── hipsparse_gather.h │ │ ├── hipsparse_rot.h │ │ ├── hipsparse_scatter.h │ │ ├── hipsparse_sddmm.h │ │ ├── hipsparse_sparse2dense.h │ │ ├── hipsparse_spgemm.h │ │ ├── hipsparse_spgemm_reuse.h │ │ ├── hipsparse_spmm.h │ │ ├── hipsparse_spmv.h │ │ ├── hipsparse_spsm.h │ │ ├── hipsparse_spsv.h │ │ └── hipsparse_spvv.h │ │ ├── level1 │ │ ├── hipsparse_axpyi.h │ │ ├── hipsparse_dotci.h │ │ ├── hipsparse_doti.h │ │ ├── hipsparse_gthr.h │ │ ├── hipsparse_gthrz.h │ │ ├── hipsparse_roti.h │ │ └── hipsparse_sctr.h │ │ ├── level2 │ │ ├── hipsparse_bsrmv.h │ │ ├── hipsparse_bsrsv.h │ │ ├── hipsparse_bsrxmv.h │ │ ├── hipsparse_csrmv.h │ │ ├── hipsparse_csrsv.h │ │ ├── hipsparse_gemvi.h │ │ └── hipsparse_hybmv.h │ │ ├── level3 │ │ ├── hipsparse_bsrmm.h │ │ ├── hipsparse_bsrsm.h │ │ ├── hipsparse_csrmm.h │ │ ├── hipsparse_csrsm.h │ │ └── hipsparse_gemmi.h │ │ ├── precond │ │ ├── hipsparse_bsric0.h │ │ ├── hipsparse_bsrilu0.h │ │ ├── hipsparse_csric0.h │ │ ├── hipsparse_csrilu0.h │ │ ├── hipsparse_gpsv_interleaved_batch.h │ │ ├── hipsparse_gtsv.h │ │ ├── hipsparse_gtsv_interleaved_batch.h │ │ ├── hipsparse_gtsv_nopivot.h │ │ └── hipsparse_gtsv_strided_batch.h │ │ └── reorder │ │ └── hipsparse_csrcolor.h └── src │ ├── CMakeLists.txt │ ├── amd_detail │ ├── conversion │ │ ├── hipsparse_bsr2csr.cpp │ │ ├── hipsparse_coo2csr.cpp │ │ ├── hipsparse_coosort.cpp │ │ ├── hipsparse_create_identity_permutation.cpp │ │ ├── hipsparse_csc2dense.cpp │ │ ├── hipsparse_cscsort.cpp │ │ ├── hipsparse_csr2bsr.cpp │ │ ├── hipsparse_csr2coo.cpp │ │ ├── hipsparse_csr2csc.cpp │ │ ├── hipsparse_csr2csr_compress.cpp │ │ ├── hipsparse_csr2csru.cpp │ │ ├── hipsparse_csr2dense.cpp │ │ ├── hipsparse_csr2gebsr.cpp │ │ ├── hipsparse_csr2hyb.cpp │ │ ├── hipsparse_csrsort.cpp │ │ ├── hipsparse_csru2csr.cpp │ │ ├── hipsparse_dense2csc.cpp │ │ ├── hipsparse_dense2csr.cpp │ │ ├── hipsparse_gebsr2csr.cpp │ │ ├── hipsparse_gebsr2gebsc.cpp │ │ ├── hipsparse_gebsr2gebsr.cpp │ │ ├── hipsparse_hyb2csr.cpp │ │ ├── hipsparse_nnz.cpp │ │ ├── hipsparse_nnz_compress.cpp │ │ ├── hipsparse_prune_csr2csr.cpp │ │ ├── hipsparse_prune_csr2csr_by_percentage.cpp │ │ ├── hipsparse_prune_dense2csr.cpp │ │ └── hipsparse_prune_dense2csr_by_percentage.cpp │ ├── extra │ │ ├── hipsparse_csrgeam.cpp │ │ └── hipsparse_csrgemm.cpp │ ├── generic │ │ ├── hipsparse_axpby.cpp │ │ ├── hipsparse_dense2sparse.cpp │ │ ├── hipsparse_gather.cpp │ │ ├── hipsparse_rot.cpp │ │ ├── hipsparse_scatter.cpp │ │ ├── hipsparse_sddmm.cpp │ │ ├── hipsparse_sparse2dense.cpp │ │ ├── hipsparse_spgemm.cpp │ │ ├── hipsparse_spgemm_reuse.cpp │ │ ├── hipsparse_spmm.cpp │ │ ├── hipsparse_spmv.cpp │ │ ├── hipsparse_spsm.cpp │ │ ├── hipsparse_spsv.cpp │ │ └── hipsparse_spvv.cpp │ ├── hipsparse_auxiliary.cpp │ ├── hipsparse_generic_auxiliary.cpp │ ├── level1 │ │ ├── hipsparse_axpyi.cpp │ │ ├── hipsparse_dotci.cpp │ │ ├── hipsparse_doti.cpp │ │ ├── hipsparse_gthr.cpp │ │ ├── hipsparse_gthrz.cpp │ │ ├── hipsparse_roti.cpp │ │ └── hipsparse_sctr.cpp │ ├── level2 │ │ ├── hipsparse_bsrmv.cpp │ │ ├── hipsparse_bsrsv.cpp │ │ ├── hipsparse_bsrxmv.cpp │ │ ├── hipsparse_csrmv.cpp │ │ ├── hipsparse_csrsv.cpp │ │ ├── hipsparse_gemvi.cpp │ │ └── hipsparse_hybmv.cpp │ ├── level3 │ │ ├── hipsparse_bsrmm.cpp │ │ ├── hipsparse_bsrsm.cpp │ │ ├── hipsparse_csrmm.cpp │ │ ├── hipsparse_csrsm.cpp │ │ └── hipsparse_gemmi.cpp │ ├── precond │ │ ├── hipsparse_bsric0.cpp │ │ ├── hipsparse_bsrilu0.cpp │ │ ├── hipsparse_csric0.cpp │ │ ├── hipsparse_csrilu0.cpp │ │ ├── hipsparse_gpsv_interleaved_batch.cpp │ │ ├── hipsparse_gtsv.cpp │ │ ├── hipsparse_gtsv_interleaved_batch.cpp │ │ ├── hipsparse_gtsv_nopivot.cpp │ │ └── hipsparse_gtsv_strided_batch.cpp │ ├── reorder │ │ └── hipsparse_csrcolor.cpp │ └── utility.h │ ├── hipsparse-config.cmake.in │ ├── hipsparse.f90 │ ├── hipsparse_enums.f90 │ └── nvidia_detail │ ├── conversion │ ├── hipsparse_bsr2csr.cpp │ ├── hipsparse_coo2csr.cpp │ ├── hipsparse_coosort.cpp │ ├── hipsparse_create_identity_permutation.cpp │ ├── hipsparse_csc2dense.cpp │ ├── hipsparse_cscsort.cpp │ ├── hipsparse_csr2bsr.cpp │ ├── hipsparse_csr2coo.cpp │ ├── hipsparse_csr2csc.cpp │ ├── hipsparse_csr2csr_compress.cpp │ ├── hipsparse_csr2csru.cpp │ ├── hipsparse_csr2dense.cpp │ ├── hipsparse_csr2gebsr.cpp │ ├── hipsparse_csr2hyb.cpp │ ├── hipsparse_csrsort.cpp │ ├── hipsparse_csru2csr.cpp │ ├── hipsparse_dense2csc.cpp │ ├── hipsparse_dense2csr.cpp │ ├── hipsparse_gebsr2csr.cpp │ ├── hipsparse_gebsr2gebsc.cpp │ ├── hipsparse_gebsr2gebsr.cpp │ ├── hipsparse_hyb2csr.cpp │ ├── hipsparse_nnz.cpp │ ├── hipsparse_nnz_compress.cpp │ ├── hipsparse_prune_csr2csr.cpp │ ├── hipsparse_prune_csr2csr_by_percentage.cpp │ ├── hipsparse_prune_dense2csr.cpp │ └── hipsparse_prune_dense2csr_by_percentage.cpp │ ├── extra │ ├── hipsparse_csrgeam.cpp │ └── hipsparse_csrgemm.cpp │ ├── generic │ ├── hipsparse_axpby.cpp │ ├── hipsparse_dense2sparse.cpp │ ├── hipsparse_gather.cpp │ ├── hipsparse_rot.cpp │ ├── hipsparse_scatter.cpp │ ├── hipsparse_sddmm.cpp │ ├── hipsparse_sparse2dense.cpp │ ├── hipsparse_spgemm.cpp │ ├── hipsparse_spgemm_reuse.cpp │ ├── hipsparse_spmm.cpp │ ├── hipsparse_spmv.cpp │ ├── hipsparse_spsm.cpp │ ├── hipsparse_spsv.cpp │ └── hipsparse_spvv.cpp │ ├── hipsparse_auxiliary.cpp │ ├── hipsparse_generic_auxiliary.cpp │ ├── level1 │ ├── hipsparse_axpyi.cpp │ ├── hipsparse_dotci.cpp │ ├── hipsparse_doti.cpp │ ├── hipsparse_gthr.cpp │ ├── hipsparse_gthrz.cpp │ ├── hipsparse_roti.cpp │ └── hipsparse_sctr.cpp │ ├── level2 │ ├── hipsparse_bsrmv.cpp │ ├── hipsparse_bsrsv.cpp │ ├── hipsparse_bsrxmv.cpp │ ├── hipsparse_csrmv.cpp │ ├── hipsparse_csrsv.cpp │ ├── hipsparse_gemvi.cpp │ └── hipsparse_hybmv.cpp │ ├── level3 │ ├── hipsparse_bsrmm.cpp │ ├── hipsparse_bsrsm.cpp │ ├── hipsparse_csrmm.cpp │ ├── hipsparse_csrsm.cpp │ └── hipsparse_gemmi.cpp │ ├── precond │ ├── hipsparse_bsric0.cpp │ ├── hipsparse_bsrilu0.cpp │ ├── hipsparse_csric0.cpp │ ├── hipsparse_csrilu0.cpp │ ├── hipsparse_gpsv_interleaved_batch.cpp │ ├── hipsparse_gtsv.cpp │ ├── hipsparse_gtsv_interleaved_batch.cpp │ ├── hipsparse_gtsv_nopivot.cpp │ └── hipsparse_gtsv_strided_batch.cpp │ ├── reorder │ └── hipsparse_csrcolor.cpp │ └── utility.h ├── rmake.py ├── rtest.py ├── rtest.xml ├── scripts └── hipsparse-cppcheck.py ├── toolchain-linux.cmake └── toolchain-windows.cmake /.azuredevops/rocm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.azuredevops/rocm-ci.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.clang-format -------------------------------------------------------------------------------- /.githooks/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.githooks/install -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.gitignore -------------------------------------------------------------------------------- /.jenkins/codecov.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.jenkins/codecov.groovy -------------------------------------------------------------------------------- /.jenkins/common.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.jenkins/common.groovy -------------------------------------------------------------------------------- /.jenkins/extended.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.jenkins/extended.groovy -------------------------------------------------------------------------------- /.jenkins/precheckin-cuda.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.jenkins/precheckin-cuda.groovy -------------------------------------------------------------------------------- /.jenkins/precheckin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.jenkins/precheckin.groovy -------------------------------------------------------------------------------- /.jenkins/static.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.jenkins/static.groovy -------------------------------------------------------------------------------- /.jenkins/staticanalysis.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.jenkins/staticanalysis.groovy -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/README.md -------------------------------------------------------------------------------- /clients/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/CMakeLists.txt -------------------------------------------------------------------------------- /clients/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /clients/benchmarks/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/client.cpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_arguments_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_arguments_config.cpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_arguments_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_arguments_config.hpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_bench.cpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_bench.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_bench.hpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_bench_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_bench_app.cpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_bench_app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_bench_app.hpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_bench_cmdlines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_bench_cmdlines.cpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_bench_cmdlines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_bench_cmdlines.hpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_routine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_routine.cpp -------------------------------------------------------------------------------- /clients/benchmarks/hipsparse_routine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/hipsparse_routine.hpp -------------------------------------------------------------------------------- /clients/benchmarks/program_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/benchmarks/program_options.hpp -------------------------------------------------------------------------------- /clients/common/arg_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/common/arg_check.cpp -------------------------------------------------------------------------------- /clients/common/hipsparse_template_specialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/common/hipsparse_template_specialization.cpp -------------------------------------------------------------------------------- /clients/common/unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/common/unit.cpp -------------------------------------------------------------------------------- /clients/common/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/common/utility.cpp -------------------------------------------------------------------------------- /clients/include/arg_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/arg_check.hpp -------------------------------------------------------------------------------- /clients/include/display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/display.hpp -------------------------------------------------------------------------------- /clients/include/flops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/flops.hpp -------------------------------------------------------------------------------- /clients/include/gbyte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/gbyte.hpp -------------------------------------------------------------------------------- /clients/include/hipsparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/hipsparse.hpp -------------------------------------------------------------------------------- /clients/include/hipsparse_arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/hipsparse_arguments.hpp -------------------------------------------------------------------------------- /clients/include/hipsparse_arguments_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/hipsparse_arguments_support.hpp -------------------------------------------------------------------------------- /clients/include/hipsparse_datatype2string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/hipsparse_datatype2string.hpp -------------------------------------------------------------------------------- /clients/include/hipsparse_test_unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/hipsparse_test_unique_ptr.hpp -------------------------------------------------------------------------------- /clients/include/testing_axpby.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_axpby.hpp -------------------------------------------------------------------------------- /clients/include/testing_axpyi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_axpyi.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsr2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsr2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsric02.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsric02.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsrilu02.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsrilu02.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsrmm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsrmm.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsrmv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsrmv.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsrsm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsrsm2.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsrsv2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsrsv2.hpp -------------------------------------------------------------------------------- /clients/include/testing_bsrxmv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_bsrxmv.hpp -------------------------------------------------------------------------------- /clients/include/testing_const_dnmat_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_const_dnmat_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_const_dnvec_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_const_dnvec_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_const_spmat_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_const_spmat_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_const_spvec_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_const_spvec_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_coo2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_coo2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_coosort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_coosort.hpp -------------------------------------------------------------------------------- /clients/include/testing_csc2dense.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csc2dense.hpp -------------------------------------------------------------------------------- /clients/include/testing_cscsort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_cscsort.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2bsr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2bsr.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2csc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2csc.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2csc_ex2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2csc_ex2.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2csr_compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2csr_compress.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2dense.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2dense.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2gebsr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2gebsr.hpp -------------------------------------------------------------------------------- /clients/include/testing_csr2hyb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csr2hyb.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrcolor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrcolor.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrgeam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrgeam.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrgeam2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrgeam2.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrgemm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrgemm.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrgemm2_a.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrgemm2_a.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrgemm2_b.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrgemm2_b.hpp -------------------------------------------------------------------------------- /clients/include/testing_csric02.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csric02.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrilu02.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrilu02.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrilusv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrilusv.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrmm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrmm.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrmv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrmv.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrsm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrsm2.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrsort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrsort.hpp -------------------------------------------------------------------------------- /clients/include/testing_csrsv2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csrsv2.hpp -------------------------------------------------------------------------------- /clients/include/testing_csru2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csru2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_csx2dense.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_csx2dense.hpp -------------------------------------------------------------------------------- /clients/include/testing_dense2csc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dense2csc.hpp -------------------------------------------------------------------------------- /clients/include/testing_dense2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dense2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_dense2csx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dense2csx.hpp -------------------------------------------------------------------------------- /clients/include/testing_dense_to_sparse_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dense_to_sparse_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_dense_to_sparse_csc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dense_to_sparse_csc.hpp -------------------------------------------------------------------------------- /clients/include/testing_dense_to_sparse_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dense_to_sparse_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_dnmat_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dnmat_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_dnvec_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dnvec_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_dotci.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_dotci.hpp -------------------------------------------------------------------------------- /clients/include/testing_doti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_doti.hpp -------------------------------------------------------------------------------- /clients/include/testing_gather.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gather.hpp -------------------------------------------------------------------------------- /clients/include/testing_gebsr2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gebsr2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_gebsr2gebsc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gebsr2gebsc.hpp -------------------------------------------------------------------------------- /clients/include/testing_gebsr2gebsr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gebsr2gebsr.hpp -------------------------------------------------------------------------------- /clients/include/testing_gemmi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gemmi.hpp -------------------------------------------------------------------------------- /clients/include/testing_gemvi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gemvi.hpp -------------------------------------------------------------------------------- /clients/include/testing_gpsv_interleaved_batch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gpsv_interleaved_batch.hpp -------------------------------------------------------------------------------- /clients/include/testing_gthr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gthr.hpp -------------------------------------------------------------------------------- /clients/include/testing_gthrz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gthrz.hpp -------------------------------------------------------------------------------- /clients/include/testing_gtsv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gtsv.hpp -------------------------------------------------------------------------------- /clients/include/testing_gtsv2_nopivot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gtsv2_nopivot.hpp -------------------------------------------------------------------------------- /clients/include/testing_gtsv2_strided_batch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gtsv2_strided_batch.hpp -------------------------------------------------------------------------------- /clients/include/testing_gtsv_interleaved_batch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_gtsv_interleaved_batch.hpp -------------------------------------------------------------------------------- /clients/include/testing_hyb2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_hyb2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_hybmv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_hybmv.hpp -------------------------------------------------------------------------------- /clients/include/testing_identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_identity.hpp -------------------------------------------------------------------------------- /clients/include/testing_nnz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_nnz.hpp -------------------------------------------------------------------------------- /clients/include/testing_prune_csr2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_prune_csr2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_prune_csr2csr_by_percentage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_prune_csr2csr_by_percentage.hpp -------------------------------------------------------------------------------- /clients/include/testing_prune_dense2csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_prune_dense2csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_prune_dense2csr_by_percentage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_prune_dense2csr_by_percentage.hpp -------------------------------------------------------------------------------- /clients/include/testing_rot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_rot.hpp -------------------------------------------------------------------------------- /clients/include/testing_roti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_roti.hpp -------------------------------------------------------------------------------- /clients/include/testing_scatter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_scatter.hpp -------------------------------------------------------------------------------- /clients/include/testing_sctr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sctr.hpp -------------------------------------------------------------------------------- /clients/include/testing_sddmm_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sddmm_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_sddmm_coo_aos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sddmm_coo_aos.hpp -------------------------------------------------------------------------------- /clients/include/testing_sddmm_csc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sddmm_csc.hpp -------------------------------------------------------------------------------- /clients/include/testing_sddmm_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sddmm_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_sparse_to_dense_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sparse_to_dense_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_sparse_to_dense_csc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sparse_to_dense_csc.hpp -------------------------------------------------------------------------------- /clients/include/testing_sparse_to_dense_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_sparse_to_dense_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spgemm_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spgemm_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spgemmreuse_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spgemmreuse_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmat_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmat_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmm_batched_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmm_batched_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmm_batched_csc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmm_batched_csc.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmm_batched_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmm_batched_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmm_bell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmm_bell.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmm_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmm_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmm_csc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmm_csc.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmm_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmm_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmv_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmv_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmv_coo_aos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmv_coo_aos.hpp -------------------------------------------------------------------------------- /clients/include/testing_spmv_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spmv_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spsm_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spsm_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_spsm_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spsm_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spsv_coo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spsv_coo.hpp -------------------------------------------------------------------------------- /clients/include/testing_spsv_csr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spsv_csr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spvec_descr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spvec_descr.hpp -------------------------------------------------------------------------------- /clients/include/testing_spvv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/testing_spvv.hpp -------------------------------------------------------------------------------- /clients/include/unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/unit.hpp -------------------------------------------------------------------------------- /clients/include/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/include/utility.hpp -------------------------------------------------------------------------------- /clients/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/CMakeLists.txt -------------------------------------------------------------------------------- /clients/samples/example_axpyi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_axpyi.c -------------------------------------------------------------------------------- /clients/samples/example_c_headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_c_headers.c -------------------------------------------------------------------------------- /clients/samples/example_csrmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_csrmv.cpp -------------------------------------------------------------------------------- /clients/samples/example_fortran_auxiliary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_auxiliary.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_bsric02.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_bsric02.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_bsrilu02.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_bsrilu02.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_bsrmm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_bsrmm.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_csric02.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_csric02.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_csrilu02.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_csrilu02.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_csrsm2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_csrsm2.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_csrsv2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_csrsv2.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_dotci.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_dotci.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_roti.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_roti.f90 -------------------------------------------------------------------------------- /clients/samples/example_fortran_spmv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_fortran_spmv.f90 -------------------------------------------------------------------------------- /clients/samples/example_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_handle.cpp -------------------------------------------------------------------------------- /clients/samples/example_hybmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/samples/example_hybmv.cpp -------------------------------------------------------------------------------- /clients/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/CMakeLists.txt -------------------------------------------------------------------------------- /clients/tests/hipsparse_gtest_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/hipsparse_gtest_main.cpp -------------------------------------------------------------------------------- /clients/tests/test_axpby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_axpby.cpp -------------------------------------------------------------------------------- /clients/tests/test_axpyi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_axpyi.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsr2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsric02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsric02.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsrilu02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsrilu02.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsrmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsrmm.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsrmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsrmv.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsrsm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsrsm2.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsrsv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsrsv2.cpp -------------------------------------------------------------------------------- /clients/tests/test_bsrxmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_bsrxmv.cpp -------------------------------------------------------------------------------- /clients/tests/test_const_dnmat_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_const_dnmat_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_const_dnvec_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_const_dnvec_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_const_spmat_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_const_spmat_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_const_spvec_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_const_spvec_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_coo2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_coo2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_coosort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_coosort.cpp -------------------------------------------------------------------------------- /clients/tests/test_csc2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csc2dense.cpp -------------------------------------------------------------------------------- /clients/tests/test_cscsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_cscsort.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2bsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2bsr.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2csc.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2csc_ex2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2csc_ex2.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2csr_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2csr_compress.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2dense.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2gebsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2gebsr.cpp -------------------------------------------------------------------------------- /clients/tests/test_csr2hyb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csr2hyb.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrcolor.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrgeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrgeam.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrgeam2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrgeam2.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrgemm.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrgemm2_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrgemm2_a.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrgemm2_b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrgemm2_b.cpp -------------------------------------------------------------------------------- /clients/tests/test_csric02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csric02.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrilu02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrilu02.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrilusv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrilusv.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrmm.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrmv.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrsm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrsm2.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrsort.cpp -------------------------------------------------------------------------------- /clients/tests/test_csrsv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csrsv2.cpp -------------------------------------------------------------------------------- /clients/tests/test_csru2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_csru2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_dense2csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dense2csc.cpp -------------------------------------------------------------------------------- /clients/tests/test_dense2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dense2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_dense_to_sparse_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dense_to_sparse_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_dense_to_sparse_csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dense_to_sparse_csc.cpp -------------------------------------------------------------------------------- /clients/tests/test_dense_to_sparse_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dense_to_sparse_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_dnmat_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dnmat_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_dnvec_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dnvec_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_dotci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_dotci.cpp -------------------------------------------------------------------------------- /clients/tests/test_doti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_doti.cpp -------------------------------------------------------------------------------- /clients/tests/test_gather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gather.cpp -------------------------------------------------------------------------------- /clients/tests/test_gebsr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gebsr2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_gebsr2gebsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gebsr2gebsc.cpp -------------------------------------------------------------------------------- /clients/tests/test_gebsr2gebsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gebsr2gebsr.cpp -------------------------------------------------------------------------------- /clients/tests/test_gemmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gemmi.cpp -------------------------------------------------------------------------------- /clients/tests/test_gemvi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gemvi.cpp -------------------------------------------------------------------------------- /clients/tests/test_gpsv_interleaved_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gpsv_interleaved_batch.cpp -------------------------------------------------------------------------------- /clients/tests/test_gthr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gthr.cpp -------------------------------------------------------------------------------- /clients/tests/test_gthrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gthrz.cpp -------------------------------------------------------------------------------- /clients/tests/test_gtsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gtsv.cpp -------------------------------------------------------------------------------- /clients/tests/test_gtsv2_nopivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gtsv2_nopivot.cpp -------------------------------------------------------------------------------- /clients/tests/test_gtsv2_strided_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gtsv2_strided_batch.cpp -------------------------------------------------------------------------------- /clients/tests/test_gtsv_interleaved_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_gtsv_interleaved_batch.cpp -------------------------------------------------------------------------------- /clients/tests/test_hyb2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_hyb2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_hybmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_hybmv.cpp -------------------------------------------------------------------------------- /clients/tests/test_identity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_identity.cpp -------------------------------------------------------------------------------- /clients/tests/test_nnz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_nnz.cpp -------------------------------------------------------------------------------- /clients/tests/test_prune_csr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_prune_csr2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_prune_csr2csr_by_percentage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_prune_csr2csr_by_percentage.cpp -------------------------------------------------------------------------------- /clients/tests/test_prune_dense2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_prune_dense2csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_prune_dense2csr_by_percentage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_prune_dense2csr_by_percentage.cpp -------------------------------------------------------------------------------- /clients/tests/test_rot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_rot.cpp -------------------------------------------------------------------------------- /clients/tests/test_roti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_roti.cpp -------------------------------------------------------------------------------- /clients/tests/test_scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_scatter.cpp -------------------------------------------------------------------------------- /clients/tests/test_sctr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sctr.cpp -------------------------------------------------------------------------------- /clients/tests/test_sddmm_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sddmm_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_sddmm_coo_aos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sddmm_coo_aos.cpp -------------------------------------------------------------------------------- /clients/tests/test_sddmm_csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sddmm_csc.cpp -------------------------------------------------------------------------------- /clients/tests/test_sddmm_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sddmm_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_sparse_to_dense_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sparse_to_dense_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_sparse_to_dense_csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sparse_to_dense_csc.cpp -------------------------------------------------------------------------------- /clients/tests/test_sparse_to_dense_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_sparse_to_dense_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spgemm_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spgemm_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spgemmreuse_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spgemmreuse_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmat_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmat_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmm_batched_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmm_batched_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmm_batched_csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmm_batched_csc.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmm_batched_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmm_batched_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmm_bell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmm_bell.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmm_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmm_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmm_csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmm_csc.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmm_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmm_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmv_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmv_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmv_coo_aos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmv_coo_aos.cpp -------------------------------------------------------------------------------- /clients/tests/test_spmv_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spmv_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spsm_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spsm_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_spsm_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spsm_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spsv_coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spsv_coo.cpp -------------------------------------------------------------------------------- /clients/tests/test_spsv_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spsv_csr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spvec_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spvec_descr.cpp -------------------------------------------------------------------------------- /clients/tests/test_spvv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/clients/tests/test_spvv.cpp -------------------------------------------------------------------------------- /cmake/ClientMatrices.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/cmake/ClientMatrices.cmake -------------------------------------------------------------------------------- /cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /cmake/Verbose.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/cmake/Verbose.cmake -------------------------------------------------------------------------------- /cmake/get-cli-arguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/cmake/get-cli-arguments.cmake -------------------------------------------------------------------------------- /cmake/hipsparse_clientmatrices.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/cmake/hipsparse_clientmatrices.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/deps/convert.cpp -------------------------------------------------------------------------------- /deps/external-gtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/deps/external-gtest.cmake -------------------------------------------------------------------------------- /deps/to_hipSPARSE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/deps/to_hipSPARSE.sh -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /docs/doxygen/modules.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/doxygen/modules.dox -------------------------------------------------------------------------------- /docs/howto/using-hipsparse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/howto/using-hipsparse.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/install/install.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/reference/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/api.rst -------------------------------------------------------------------------------- /docs/reference/auxiliary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/auxiliary.rst -------------------------------------------------------------------------------- /docs/reference/conversion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/conversion.rst -------------------------------------------------------------------------------- /docs/reference/extra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/extra.rst -------------------------------------------------------------------------------- /docs/reference/generic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/generic.rst -------------------------------------------------------------------------------- /docs/reference/level1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/level1.rst -------------------------------------------------------------------------------- /docs/reference/level2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/level2.rst -------------------------------------------------------------------------------- /docs/reference/level3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/level3.rst -------------------------------------------------------------------------------- /docs/reference/precision.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/precision.rst -------------------------------------------------------------------------------- /docs/reference/precond.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/precond.rst -------------------------------------------------------------------------------- /docs/reference/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/reference.rst -------------------------------------------------------------------------------- /docs/reference/reorder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/reorder.rst -------------------------------------------------------------------------------- /docs/reference/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/reference/types.rst -------------------------------------------------------------------------------- /docs/sphinx/_toc.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/sphinx/_toc.yml.in -------------------------------------------------------------------------------- /docs/sphinx/requirements.in: -------------------------------------------------------------------------------- 1 | rocm-docs-core==1.21.1 2 | -------------------------------------------------------------------------------- /docs/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/sphinx/requirements.txt -------------------------------------------------------------------------------- /docs/what-is-hipsparse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/docs/what-is-hipsparse.rst -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/install.sh -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/include/hipsparse-auxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/hipsparse-auxiliary.h -------------------------------------------------------------------------------- /library/include/hipsparse-generic-auxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/hipsparse-generic-auxiliary.h -------------------------------------------------------------------------------- /library/include/hipsparse-generic-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/hipsparse-generic-types.h -------------------------------------------------------------------------------- /library/include/hipsparse-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/hipsparse-types.h -------------------------------------------------------------------------------- /library/include/hipsparse-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/hipsparse-version.h.in -------------------------------------------------------------------------------- /library/include/hipsparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/hipsparse.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_bsr2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_bsr2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_coo2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_coo2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_coosort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_coosort.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_create_identity_permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_create_identity_permutation.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csc2dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csc2dense.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_cscsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_cscsort.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2bsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2bsr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2coo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2coo.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2csc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2csc.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2csr_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2csr_compress.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2csru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2csru.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2dense.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2gebsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2gebsr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csr2hyb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csr2hyb.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csrsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csrsort.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_csru2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_csru2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_dense2csc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_dense2csc.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_dense2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_dense2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_gebsr2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_gebsr2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_gebsr2gebsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_gebsr2gebsc.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_gebsr2gebsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_gebsr2gebsr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_hyb2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_hyb2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_nnz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_nnz.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_nnz_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_nnz_compress.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_prune_csr2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_prune_csr2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_prune_csr2csr_by_percentage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_prune_csr2csr_by_percentage.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_prune_dense2csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_prune_dense2csr.h -------------------------------------------------------------------------------- /library/include/internal/conversion/hipsparse_prune_dense2csr_by_percentage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/conversion/hipsparse_prune_dense2csr_by_percentage.h -------------------------------------------------------------------------------- /library/include/internal/extra/hipsparse_csrgeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/extra/hipsparse_csrgeam.h -------------------------------------------------------------------------------- /library/include/internal/extra/hipsparse_csrgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/extra/hipsparse_csrgemm.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_axpby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_axpby.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_dense2sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_dense2sparse.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_gather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_gather.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_rot.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_scatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_scatter.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_sddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_sddmm.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_sparse2dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_sparse2dense.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_spgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_spgemm.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_spgemm_reuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_spgemm_reuse.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_spmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_spmm.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_spmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_spmv.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_spsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_spsm.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_spsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_spsv.h -------------------------------------------------------------------------------- /library/include/internal/generic/hipsparse_spvv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/generic/hipsparse_spvv.h -------------------------------------------------------------------------------- /library/include/internal/level1/hipsparse_axpyi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level1/hipsparse_axpyi.h -------------------------------------------------------------------------------- /library/include/internal/level1/hipsparse_dotci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level1/hipsparse_dotci.h -------------------------------------------------------------------------------- /library/include/internal/level1/hipsparse_doti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level1/hipsparse_doti.h -------------------------------------------------------------------------------- /library/include/internal/level1/hipsparse_gthr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level1/hipsparse_gthr.h -------------------------------------------------------------------------------- /library/include/internal/level1/hipsparse_gthrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level1/hipsparse_gthrz.h -------------------------------------------------------------------------------- /library/include/internal/level1/hipsparse_roti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level1/hipsparse_roti.h -------------------------------------------------------------------------------- /library/include/internal/level1/hipsparse_sctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level1/hipsparse_sctr.h -------------------------------------------------------------------------------- /library/include/internal/level2/hipsparse_bsrmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level2/hipsparse_bsrmv.h -------------------------------------------------------------------------------- /library/include/internal/level2/hipsparse_bsrsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level2/hipsparse_bsrsv.h -------------------------------------------------------------------------------- /library/include/internal/level2/hipsparse_bsrxmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level2/hipsparse_bsrxmv.h -------------------------------------------------------------------------------- /library/include/internal/level2/hipsparse_csrmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level2/hipsparse_csrmv.h -------------------------------------------------------------------------------- /library/include/internal/level2/hipsparse_csrsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level2/hipsparse_csrsv.h -------------------------------------------------------------------------------- /library/include/internal/level2/hipsparse_gemvi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level2/hipsparse_gemvi.h -------------------------------------------------------------------------------- /library/include/internal/level2/hipsparse_hybmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level2/hipsparse_hybmv.h -------------------------------------------------------------------------------- /library/include/internal/level3/hipsparse_bsrmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level3/hipsparse_bsrmm.h -------------------------------------------------------------------------------- /library/include/internal/level3/hipsparse_bsrsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level3/hipsparse_bsrsm.h -------------------------------------------------------------------------------- /library/include/internal/level3/hipsparse_csrmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level3/hipsparse_csrmm.h -------------------------------------------------------------------------------- /library/include/internal/level3/hipsparse_csrsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level3/hipsparse_csrsm.h -------------------------------------------------------------------------------- /library/include/internal/level3/hipsparse_gemmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/level3/hipsparse_gemmi.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_bsric0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_bsric0.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_bsrilu0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_bsrilu0.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_csric0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_csric0.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_csrilu0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_csrilu0.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_gpsv_interleaved_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_gpsv_interleaved_batch.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_gtsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_gtsv.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_gtsv_interleaved_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_gtsv_interleaved_batch.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_gtsv_nopivot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_gtsv_nopivot.h -------------------------------------------------------------------------------- /library/include/internal/precond/hipsparse_gtsv_strided_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/precond/hipsparse_gtsv_strided_batch.h -------------------------------------------------------------------------------- /library/include/internal/reorder/hipsparse_csrcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/include/internal/reorder/hipsparse_csrcolor.h -------------------------------------------------------------------------------- /library/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_bsr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_bsr2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_coo2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_coo2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_coosort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_coosort.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_create_identity_permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_create_identity_permutation.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csc2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csc2dense.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_cscsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_cscsort.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2bsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2bsr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2coo.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2csc.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2csr_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2csr_compress.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2csru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2csru.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2dense.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2gebsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2gebsr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csr2hyb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csr2hyb.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csrsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csrsort.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_csru2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_csru2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_dense2csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_dense2csc.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_dense2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_dense2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_gebsr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_gebsr2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_gebsr2gebsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_gebsr2gebsc.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_gebsr2gebsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_gebsr2gebsr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_hyb2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_hyb2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_nnz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_nnz.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_nnz_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_nnz_compress.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_prune_csr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_prune_csr2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_prune_csr2csr_by_percentage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_prune_csr2csr_by_percentage.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_prune_dense2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_prune_dense2csr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/conversion/hipsparse_prune_dense2csr_by_percentage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/conversion/hipsparse_prune_dense2csr_by_percentage.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/extra/hipsparse_csrgeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/extra/hipsparse_csrgeam.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/extra/hipsparse_csrgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/extra/hipsparse_csrgemm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_axpby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_axpby.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_dense2sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_dense2sparse.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_gather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_gather.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_rot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_rot.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_scatter.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_sddmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_sddmm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_sparse2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_sparse2dense.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_spgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_spgemm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_spgemm_reuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_spgemm_reuse.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_spmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_spmm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_spmv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_spsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_spsm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_spsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_spsv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/generic/hipsparse_spvv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/generic/hipsparse_spvv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/hipsparse_auxiliary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/hipsparse_auxiliary.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/hipsparse_generic_auxiliary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/hipsparse_generic_auxiliary.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level1/hipsparse_axpyi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level1/hipsparse_axpyi.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level1/hipsparse_dotci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level1/hipsparse_dotci.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level1/hipsparse_doti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level1/hipsparse_doti.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level1/hipsparse_gthr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level1/hipsparse_gthr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level1/hipsparse_gthrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level1/hipsparse_gthrz.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level1/hipsparse_roti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level1/hipsparse_roti.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level1/hipsparse_sctr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level1/hipsparse_sctr.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level2/hipsparse_bsrmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level2/hipsparse_bsrmv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level2/hipsparse_bsrsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level2/hipsparse_bsrsv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level2/hipsparse_bsrxmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level2/hipsparse_bsrxmv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level2/hipsparse_csrmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level2/hipsparse_csrmv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level2/hipsparse_csrsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level2/hipsparse_csrsv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level2/hipsparse_gemvi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level2/hipsparse_gemvi.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level2/hipsparse_hybmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level2/hipsparse_hybmv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level3/hipsparse_bsrmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level3/hipsparse_bsrmm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level3/hipsparse_bsrsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level3/hipsparse_bsrsm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level3/hipsparse_csrmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level3/hipsparse_csrmm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level3/hipsparse_csrsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level3/hipsparse_csrsm.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/level3/hipsparse_gemmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/level3/hipsparse_gemmi.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_bsric0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_bsric0.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_bsrilu0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_bsrilu0.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_csric0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_csric0.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_csrilu0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_csrilu0.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_gpsv_interleaved_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_gpsv_interleaved_batch.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_gtsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_gtsv.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_gtsv_interleaved_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_gtsv_interleaved_batch.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_gtsv_nopivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_gtsv_nopivot.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/precond/hipsparse_gtsv_strided_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/precond/hipsparse_gtsv_strided_batch.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/reorder/hipsparse_csrcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/reorder/hipsparse_csrcolor.cpp -------------------------------------------------------------------------------- /library/src/amd_detail/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/amd_detail/utility.h -------------------------------------------------------------------------------- /library/src/hipsparse-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/hipsparse-config.cmake.in -------------------------------------------------------------------------------- /library/src/hipsparse.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/hipsparse.f90 -------------------------------------------------------------------------------- /library/src/hipsparse_enums.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/hipsparse_enums.f90 -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_bsr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_bsr2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_coo2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_coo2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_coosort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_coosort.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_create_identity_permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_create_identity_permutation.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csc2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csc2dense.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_cscsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_cscsort.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2bsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2bsr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2coo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2coo.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2csc.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2csr_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2csr_compress.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2csru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2csru.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2dense.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2gebsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2gebsr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csr2hyb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csr2hyb.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csrsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csrsort.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_csru2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_csru2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_dense2csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_dense2csc.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_dense2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_dense2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_gebsr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_gebsr2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_gebsr2gebsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_gebsr2gebsc.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_gebsr2gebsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_gebsr2gebsr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_hyb2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_hyb2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_nnz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_nnz.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_nnz_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_nnz_compress.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_prune_csr2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_prune_csr2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_prune_csr2csr_by_percentage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_prune_csr2csr_by_percentage.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_prune_dense2csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_prune_dense2csr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/conversion/hipsparse_prune_dense2csr_by_percentage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/conversion/hipsparse_prune_dense2csr_by_percentage.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/extra/hipsparse_csrgeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/extra/hipsparse_csrgeam.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/extra/hipsparse_csrgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/extra/hipsparse_csrgemm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_axpby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_axpby.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_dense2sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_dense2sparse.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_gather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_gather.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_rot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_rot.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_scatter.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_sddmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_sddmm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_sparse2dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_sparse2dense.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_spgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_spgemm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_spgemm_reuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_spgemm_reuse.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_spmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_spmm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_spmv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_spsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_spsm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_spsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_spsv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/generic/hipsparse_spvv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/generic/hipsparse_spvv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/hipsparse_auxiliary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/hipsparse_auxiliary.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/hipsparse_generic_auxiliary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/hipsparse_generic_auxiliary.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level1/hipsparse_axpyi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level1/hipsparse_axpyi.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level1/hipsparse_dotci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level1/hipsparse_dotci.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level1/hipsparse_doti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level1/hipsparse_doti.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level1/hipsparse_gthr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level1/hipsparse_gthr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level1/hipsparse_gthrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level1/hipsparse_gthrz.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level1/hipsparse_roti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level1/hipsparse_roti.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level1/hipsparse_sctr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level1/hipsparse_sctr.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level2/hipsparse_bsrmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level2/hipsparse_bsrmv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level2/hipsparse_bsrsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level2/hipsparse_bsrsv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level2/hipsparse_bsrxmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level2/hipsparse_bsrxmv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level2/hipsparse_csrmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level2/hipsparse_csrmv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level2/hipsparse_csrsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level2/hipsparse_csrsv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level2/hipsparse_gemvi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level2/hipsparse_gemvi.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level2/hipsparse_hybmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level2/hipsparse_hybmv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level3/hipsparse_bsrmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level3/hipsparse_bsrmm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level3/hipsparse_bsrsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level3/hipsparse_bsrsm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level3/hipsparse_csrmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level3/hipsparse_csrmm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level3/hipsparse_csrsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level3/hipsparse_csrsm.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/level3/hipsparse_gemmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/level3/hipsparse_gemmi.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_bsric0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_bsric0.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_bsrilu0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_bsrilu0.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_csric0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_csric0.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_csrilu0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_csrilu0.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_gpsv_interleaved_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_gpsv_interleaved_batch.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_gtsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_gtsv.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_gtsv_interleaved_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_gtsv_interleaved_batch.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_gtsv_nopivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_gtsv_nopivot.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/precond/hipsparse_gtsv_strided_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/precond/hipsparse_gtsv_strided_batch.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/reorder/hipsparse_csrcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/reorder/hipsparse_csrcolor.cpp -------------------------------------------------------------------------------- /library/src/nvidia_detail/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/library/src/nvidia_detail/utility.h -------------------------------------------------------------------------------- /rmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/rmake.py -------------------------------------------------------------------------------- /rtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/rtest.py -------------------------------------------------------------------------------- /rtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/rtest.xml -------------------------------------------------------------------------------- /scripts/hipsparse-cppcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/scripts/hipsparse-cppcheck.py -------------------------------------------------------------------------------- /toolchain-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/toolchain-linux.cmake -------------------------------------------------------------------------------- /toolchain-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSE/HEAD/toolchain-windows.cmake --------------------------------------------------------------------------------