├── .azuredevops └── rocm-ci.yml ├── .clang-format ├── .githooks ├── install └── pre-commit ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── linting.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .readthedocs.yaml ├── .wordlist.txt ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── clients ├── CMakeLists.txt ├── benchmarks │ ├── CMakeLists.txt │ ├── client.cpp │ └── program_options.hpp ├── common │ ├── argument_model.cpp │ ├── blis_interface.cpp │ ├── cblas_interface.cpp │ ├── hipsparselt_arguments.cpp │ ├── hipsparselt_gentest.py │ ├── hipsparselt_parse_data.cpp │ ├── hipsparselt_random.cpp │ ├── singletons.cpp │ └── utility.cpp ├── gtest │ ├── CMakeLists.txt │ ├── auxiliary_gtest.cpp │ ├── auxiliary_gtest.yaml │ ├── compress_batched_gtest.yaml │ ├── compress_batched_gtest_1b.yaml │ ├── compress_batched_gtest_1b_row.yaml │ ├── compress_batched_gtest_row.yaml │ ├── compress_gtest.cpp │ ├── compress_gtest.yaml │ ├── compress_gtest_1b.yaml │ ├── compress_gtest_1b_row.yaml │ ├── compress_gtest_row.yaml │ ├── compress_strided_batched_gtest.yaml │ ├── compress_strided_batched_gtest_1b.yaml │ ├── compress_strided_batched_gtest_1b_row.yaml │ ├── compress_strided_batched_gtest_row.yaml │ ├── hipsparselt_gtest.yaml │ ├── hipsparselt_gtest_main.cpp │ ├── hipsparselt_test.cpp │ ├── known_bugs.yaml │ ├── prune_batched_gtest.yaml │ ├── prune_batched_gtest_1b.yaml │ ├── prune_batched_gtest_1b_row.yaml │ ├── prune_batched_gtest_row.yaml │ ├── prune_gtest.cpp │ ├── prune_gtest.yaml │ ├── prune_gtest_1b.yaml │ ├── prune_gtest_1b_row.yaml │ ├── prune_gtest_row.yaml │ ├── prune_strided_batched_gtest.yaml │ ├── prune_strided_batched_gtest_1b.yaml │ ├── prune_strided_batched_gtest_1b_row.yaml │ ├── prune_strided_batched_gtest_row.yaml │ ├── spmm_batched_common.yaml │ ├── spmm_batched_common_16.yaml │ ├── spmm_batched_common_16_row.yaml │ ├── spmm_batched_common_8.yaml │ ├── spmm_batched_common_8_row.yaml │ ├── spmm_batched_common_row.yaml │ ├── spmm_batched_gtest.yaml │ ├── spmm_batched_gtest_1b.yaml │ ├── spmm_batched_gtest_1b_row.yaml │ ├── spmm_batched_gtest_row.yaml │ ├── spmm_common.yaml │ ├── spmm_common_16.yaml │ ├── spmm_common_16_row.yaml │ ├── spmm_common_row.yaml │ ├── spmm_gtest.cpp │ ├── spmm_gtest.yaml │ ├── spmm_gtest_1b.yaml │ ├── spmm_gtest_1b_row.yaml │ ├── spmm_gtest_row.yaml │ ├── spmm_strided_batched_common.yaml │ ├── spmm_strided_batched_common_16.yaml │ ├── spmm_strided_batched_common_16_row.yaml │ ├── spmm_strided_batched_common_row.yaml │ ├── spmm_strided_batched_gtest.yaml │ ├── spmm_strided_batched_gtest_1b.yaml │ ├── spmm_strided_batched_gtest_1b_row.yaml │ └── spmm_strided_batched_gtest_row.yaml ├── include │ ├── argument_model.hpp │ ├── cblas_interface.hpp │ ├── d_vector.hpp │ ├── device_vector.hpp │ ├── flops.hpp │ ├── hipsparselt_arguments.hpp │ ├── hipsparselt_common.yaml │ ├── hipsparselt_data.hpp │ ├── hipsparselt_datatype2string.hpp │ ├── hipsparselt_init.hpp │ ├── hipsparselt_math.hpp │ ├── hipsparselt_parse_data.hpp │ ├── hipsparselt_random.hpp │ ├── hipsparselt_template.yaml │ ├── hipsparselt_test.hpp │ ├── hipsparselt_vector.hpp │ ├── host_vector.hpp │ ├── near.hpp │ ├── norm.hpp │ ├── singletons.hpp │ ├── spmm │ │ ├── testing_compress.hpp │ │ ├── testing_prune.hpp │ │ └── testing_spmm.hpp │ ├── test_cleanup.hpp │ ├── testing_auxiliary.hpp │ ├── type_dispatch.hpp │ ├── unit.hpp │ └── utility.hpp └── samples │ ├── CMakeLists.txt │ ├── example_compress.cpp │ ├── example_prune_strip.cpp │ └── example_spmm_strided_batched.cpp ├── cmake ├── Dependencies.cmake ├── FindBlis.cmake ├── Packaging.cmake ├── Verbose.cmake ├── get-cli-arguments.cmake ├── os-detection.cmake └── virtualenv.cmake ├── deps ├── CMakeLists.txt ├── external-gtest.cmake └── external-lapack.cmake ├── docs ├── .gitignore ├── Makefile ├── cleanup_text.sh ├── conceptual │ ├── mi300-features.rst │ └── storage-format.rst ├── conf.py ├── data │ ├── hipSPARSELt_api.docx │ ├── hipSPARSELt_api.pdf │ ├── prune-workflow.drawio │ └── prune-workflow.svg ├── doxygen │ ├── Doxyfile │ ├── DoxygenLayout.xml │ └── modules.dox ├── how-to │ ├── device-stream-management.rst │ └── porting.rst ├── index.rst ├── install │ ├── install-hipsparselt.rst │ └── quick-start-install.rst ├── license.md ├── reference │ ├── api-library.md │ ├── data-type-support.rst │ ├── env-variables.rst │ └── supported-functions.rst ├── sphinx │ ├── _toc.yml.in │ ├── requirements.in │ └── requirements.txt └── what-is-hipsparselt.rst ├── install.sh ├── library ├── CMakeLists.txt ├── include │ ├── hipsparselt-version.h.in │ └── hipsparselt.h └── src │ ├── CMakeLists.txt │ ├── auxiliary.cpp │ ├── hcc_detail │ ├── hipsparselt.cpp │ └── rocsparselt │ │ ├── CMakeLists.txt │ │ ├── include │ │ ├── Debug.hpp │ │ ├── rocsparselt-auxiliary.h │ │ ├── rocsparselt-functions.h │ │ ├── rocsparselt-types.h │ │ └── rocsparselt.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Debug.cpp │ │ ├── handle.cpp │ │ ├── include │ │ │ ├── debug.h │ │ │ ├── definitions.h │ │ │ ├── handle.h │ │ │ ├── hip_solution_adapter.hpp │ │ │ ├── kernel_arguments.hpp │ │ │ ├── kernel_launcher.hpp │ │ │ ├── logging.h │ │ │ ├── rocsparselt_spmm_utils.hpp │ │ │ ├── status.h │ │ │ ├── tensile_host.hpp │ │ │ ├── tuple_helper.hpp │ │ │ └── utility.hpp │ │ ├── rocsparselt_auxiliary.cpp │ │ ├── spmm │ │ │ ├── Tensile │ │ │ │ └── Logic │ │ │ │ │ └── asm_full │ │ │ │ │ ├── aquavanjaram │ │ │ │ │ └── gfx942 │ │ │ │ │ │ ├── Equality │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml │ │ │ │ │ │ └── aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml │ │ │ │ │ │ ├── Euclidean │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ └── aquavanjaram_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ └── GridBased │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ │ ├── aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ │ └── aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ └── gfx950 │ │ │ │ │ ├── Equality │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_H_HS_BH_Bias_FDMN_SPB_A_S_SAV.yaml │ │ │ │ │ └── gfx950_Cijk_Alik_Bljk_H_HS_BH_Bias_FDMN_SPB_A_S_SAV.yaml │ │ │ │ │ └── Gridbased │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ │ │ ├── gfx950_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml │ │ │ │ │ └── gfx950_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml │ │ │ ├── hip │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hip_solution_adapter.cpp │ │ │ │ ├── kernel_arguments.cpp │ │ │ │ └── kernel_launcher.cpp │ │ │ ├── kernels │ │ │ │ └── CMakeLists.txt │ │ │ ├── rocsparselt_compress.cpp │ │ │ ├── rocsparselt_prune.cpp │ │ │ ├── rocsparselt_spmm.cpp │ │ │ └── rocsparselt_spmm.hpp │ │ ├── status.cpp │ │ ├── tensile_host.cpp │ │ └── utility.cpp │ │ └── utils │ │ ├── addKernels.cpp │ │ └── addKernels.py │ ├── hipsparselt-config.cmake.in │ ├── hipsparselt_ostream.cpp │ ├── include │ ├── activation.hpp │ ├── auxiliary.hpp │ ├── exceptions.hpp │ └── hipsparselt_ostream.hpp │ └── nvcc_detail │ └── hipsparselt.cpp ├── rtest.py └── tensilelite_tag.txt /.azuredevops/rocm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.azuredevops/rocm-ci.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.clang-format -------------------------------------------------------------------------------- /.githooks/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.githooks/install -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- 1 | ignores: 2 | - docs/api-library.md 3 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/.wordlist.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/README.md -------------------------------------------------------------------------------- /clients/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/CMakeLists.txt -------------------------------------------------------------------------------- /clients/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /clients/benchmarks/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/benchmarks/client.cpp -------------------------------------------------------------------------------- /clients/benchmarks/program_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/benchmarks/program_options.hpp -------------------------------------------------------------------------------- /clients/common/argument_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/argument_model.cpp -------------------------------------------------------------------------------- /clients/common/blis_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/blis_interface.cpp -------------------------------------------------------------------------------- /clients/common/cblas_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/cblas_interface.cpp -------------------------------------------------------------------------------- /clients/common/hipsparselt_arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/hipsparselt_arguments.cpp -------------------------------------------------------------------------------- /clients/common/hipsparselt_gentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/hipsparselt_gentest.py -------------------------------------------------------------------------------- /clients/common/hipsparselt_parse_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/hipsparselt_parse_data.cpp -------------------------------------------------------------------------------- /clients/common/hipsparselt_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/hipsparselt_random.cpp -------------------------------------------------------------------------------- /clients/common/singletons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/singletons.cpp -------------------------------------------------------------------------------- /clients/common/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/common/utility.cpp -------------------------------------------------------------------------------- /clients/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /clients/gtest/auxiliary_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/auxiliary_gtest.cpp -------------------------------------------------------------------------------- /clients/gtest/auxiliary_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/auxiliary_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_batched_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_batched_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_batched_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_batched_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_batched_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_batched_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_batched_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_batched_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_gtest.cpp -------------------------------------------------------------------------------- /clients/gtest/compress_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_strided_batched_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_strided_batched_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_strided_batched_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_strided_batched_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_strided_batched_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_strided_batched_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/compress_strided_batched_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/compress_strided_batched_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/hipsparselt_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/hipsparselt_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/hipsparselt_gtest_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/hipsparselt_gtest_main.cpp -------------------------------------------------------------------------------- /clients/gtest/hipsparselt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/hipsparselt_test.cpp -------------------------------------------------------------------------------- /clients/gtest/known_bugs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/known_bugs.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_batched_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_batched_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_batched_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_batched_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_batched_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_batched_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_batched_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_batched_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_gtest.cpp -------------------------------------------------------------------------------- /clients/gtest/prune_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_strided_batched_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_strided_batched_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_strided_batched_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_strided_batched_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_strided_batched_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_strided_batched_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/prune_strided_batched_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/prune_strided_batched_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_common.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_common_16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_common_16.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_common_16_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_common_16_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_common_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_common_8.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_common_8_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_common_8_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_common_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_common_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_batched_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_batched_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_common.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_common_16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_common_16.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_common_16_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_common_16_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_common_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_common_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_gtest.cpp -------------------------------------------------------------------------------- /clients/gtest/spmm_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_gtest_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_common.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_common_16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_common_16.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_common_16_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_common_16_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_common_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_common_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_gtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_gtest.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_gtest_1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_gtest_1b.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_gtest_1b_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_gtest_1b_row.yaml -------------------------------------------------------------------------------- /clients/gtest/spmm_strided_batched_gtest_row.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/gtest/spmm_strided_batched_gtest_row.yaml -------------------------------------------------------------------------------- /clients/include/argument_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/argument_model.hpp -------------------------------------------------------------------------------- /clients/include/cblas_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/cblas_interface.hpp -------------------------------------------------------------------------------- /clients/include/d_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/d_vector.hpp -------------------------------------------------------------------------------- /clients/include/device_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/device_vector.hpp -------------------------------------------------------------------------------- /clients/include/flops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/flops.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_arguments.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_common.yaml -------------------------------------------------------------------------------- /clients/include/hipsparselt_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_data.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_datatype2string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_datatype2string.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_init.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_math.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_parse_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_parse_data.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_random.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_template.yaml -------------------------------------------------------------------------------- /clients/include/hipsparselt_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_test.hpp -------------------------------------------------------------------------------- /clients/include/hipsparselt_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/hipsparselt_vector.hpp -------------------------------------------------------------------------------- /clients/include/host_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/host_vector.hpp -------------------------------------------------------------------------------- /clients/include/near.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/near.hpp -------------------------------------------------------------------------------- /clients/include/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/norm.hpp -------------------------------------------------------------------------------- /clients/include/singletons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/singletons.hpp -------------------------------------------------------------------------------- /clients/include/spmm/testing_compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/spmm/testing_compress.hpp -------------------------------------------------------------------------------- /clients/include/spmm/testing_prune.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/spmm/testing_prune.hpp -------------------------------------------------------------------------------- /clients/include/spmm/testing_spmm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/spmm/testing_spmm.hpp -------------------------------------------------------------------------------- /clients/include/test_cleanup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/test_cleanup.hpp -------------------------------------------------------------------------------- /clients/include/testing_auxiliary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/testing_auxiliary.hpp -------------------------------------------------------------------------------- /clients/include/type_dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/type_dispatch.hpp -------------------------------------------------------------------------------- /clients/include/unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/unit.hpp -------------------------------------------------------------------------------- /clients/include/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/include/utility.hpp -------------------------------------------------------------------------------- /clients/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/samples/CMakeLists.txt -------------------------------------------------------------------------------- /clients/samples/example_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/samples/example_compress.cpp -------------------------------------------------------------------------------- /clients/samples/example_prune_strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/samples/example_prune_strip.cpp -------------------------------------------------------------------------------- /clients/samples/example_spmm_strided_batched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/clients/samples/example_spmm_strided_batched.cpp -------------------------------------------------------------------------------- /cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /cmake/FindBlis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/cmake/FindBlis.cmake -------------------------------------------------------------------------------- /cmake/Packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/cmake/Packaging.cmake -------------------------------------------------------------------------------- /cmake/Verbose.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/cmake/Verbose.cmake -------------------------------------------------------------------------------- /cmake/get-cli-arguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/cmake/get-cli-arguments.cmake -------------------------------------------------------------------------------- /cmake/os-detection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/cmake/os-detection.cmake -------------------------------------------------------------------------------- /cmake/virtualenv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/cmake/virtualenv.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/external-gtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/deps/external-gtest.cmake -------------------------------------------------------------------------------- /deps/external-lapack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/deps/external-lapack.cmake -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/cleanup_text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/cleanup_text.sh -------------------------------------------------------------------------------- /docs/conceptual/mi300-features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/conceptual/mi300-features.rst -------------------------------------------------------------------------------- /docs/conceptual/storage-format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/conceptual/storage-format.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/data/hipSPARSELt_api.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/data/hipSPARSELt_api.docx -------------------------------------------------------------------------------- /docs/data/hipSPARSELt_api.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/data/hipSPARSELt_api.pdf -------------------------------------------------------------------------------- /docs/data/prune-workflow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/data/prune-workflow.drawio -------------------------------------------------------------------------------- /docs/data/prune-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/data/prune-workflow.svg -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /docs/doxygen/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/doxygen/DoxygenLayout.xml -------------------------------------------------------------------------------- /docs/doxygen/modules.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/doxygen/modules.dox -------------------------------------------------------------------------------- /docs/how-to/device-stream-management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/how-to/device-stream-management.rst -------------------------------------------------------------------------------- /docs/how-to/porting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/how-to/porting.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install/install-hipsparselt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/install/install-hipsparselt.rst -------------------------------------------------------------------------------- /docs/install/quick-start-install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/install/quick-start-install.rst -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/reference/api-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/reference/api-library.md -------------------------------------------------------------------------------- /docs/reference/data-type-support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/reference/data-type-support.rst -------------------------------------------------------------------------------- /docs/reference/env-variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/reference/env-variables.rst -------------------------------------------------------------------------------- /docs/reference/supported-functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/reference/supported-functions.rst -------------------------------------------------------------------------------- /docs/sphinx/_toc.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/sphinx/_toc.yml.in -------------------------------------------------------------------------------- /docs/sphinx/requirements.in: -------------------------------------------------------------------------------- 1 | rocm-docs-core[api_reference]==1.20.1 2 | -------------------------------------------------------------------------------- /docs/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/sphinx/requirements.txt -------------------------------------------------------------------------------- /docs/what-is-hipsparselt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/docs/what-is-hipsparselt.rst -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/install.sh -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/include/hipsparselt-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/include/hipsparselt-version.h.in -------------------------------------------------------------------------------- /library/include/hipsparselt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/include/hipsparselt.h -------------------------------------------------------------------------------- /library/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/auxiliary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/auxiliary.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/hipsparselt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/hipsparselt.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/include/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/include/Debug.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/include/rocsparselt-auxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/include/rocsparselt-auxiliary.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/include/rocsparselt-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/include/rocsparselt-functions.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/include/rocsparselt-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/include/rocsparselt-types.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/include/rocsparselt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/include/rocsparselt.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/Debug.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/handle.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/debug.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/definitions.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/handle.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/hip_solution_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/hip_solution_adapter.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/kernel_arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/kernel_arguments.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/kernel_launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/kernel_launcher.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/logging.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/rocsparselt_spmm_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/rocsparselt_spmm_utils.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/status.h -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/tensile_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/tensile_host.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/tuple_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/tuple_helper.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/include/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/include/utility.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/rocsparselt_auxiliary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/rocsparselt_auxiliary.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Equality/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8BS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8BS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8HS_BH_BiasS_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8HS_BH_BiasS_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/Euclidean/aquavanjaram_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/aquavanjaram/gfx942/GridBased/aquavanjaram_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Equality/gfx950_Cijk_Ailk_Bljk_H_HS_BH_Bias_FDMN_SPB_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Equality/gfx950_Cijk_Ailk_Bljk_H_HS_BH_Bias_FDMN_SPB_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Equality/gfx950_Cijk_Alik_Bljk_H_HS_BH_Bias_FDMN_SPB_A_S_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Equality/gfx950_Cijk_Alik_Bljk_H_HS_BH_Bias_FDMN_SPB_A_S_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Ailk_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bjlk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_B8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_B8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_BBS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_F8SS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_F8SS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_HHS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8BS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8BS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8HS_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8HS_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPA_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/Tensile/Logic/asm_full/gfx950/Gridbased/gfx950_Cijk_Alik_Bljk_I8I8S_BH_Bias_FDMN_SPB_AS_SAV.yaml -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/hip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/hip/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/hip/hip_solution_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/hip/hip_solution_adapter.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/hip/kernel_arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/hip/kernel_arguments.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/hip/kernel_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/hip/kernel_launcher.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/kernels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/kernels/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_compress.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_prune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_prune.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_spmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_spmm.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_spmm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/spmm/rocsparselt_spmm.hpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/status.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/tensile_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/tensile_host.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/src/utility.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/utils/addKernels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/utils/addKernels.cpp -------------------------------------------------------------------------------- /library/src/hcc_detail/rocsparselt/utils/addKernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hcc_detail/rocsparselt/utils/addKernels.py -------------------------------------------------------------------------------- /library/src/hipsparselt-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hipsparselt-config.cmake.in -------------------------------------------------------------------------------- /library/src/hipsparselt_ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/hipsparselt_ostream.cpp -------------------------------------------------------------------------------- /library/src/include/activation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/include/activation.hpp -------------------------------------------------------------------------------- /library/src/include/auxiliary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/include/auxiliary.hpp -------------------------------------------------------------------------------- /library/src/include/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/include/exceptions.hpp -------------------------------------------------------------------------------- /library/src/include/hipsparselt_ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/include/hipsparselt_ostream.hpp -------------------------------------------------------------------------------- /library/src/nvcc_detail/hipsparselt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/library/src/nvcc_detail/hipsparselt.cpp -------------------------------------------------------------------------------- /rtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipSPARSELt/HEAD/rtest.py -------------------------------------------------------------------------------- /tensilelite_tag.txt: -------------------------------------------------------------------------------- 1 | 7fc3631478ce7887f3cfdba3adb149240ac539db 2 | --------------------------------------------------------------------------------