├── .azuredevops └── rocm-ci.yml ├── .clang-format ├── .gitattributes ├── .githooks ├── install └── pre-commit ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── linting.yml ├── .gitignore ├── .jenkins ├── common.groovy ├── staticanalysis.groovy └── staticlibrary.groovy ├── .markdownlint-cli2.yaml ├── .readthedocs.yaml ├── .wordlist.txt ├── CHANGELOG.md ├── CMakeLists.txt ├── Config.cmake.in ├── LICENSE ├── README.md ├── cmake ├── FindSphinx.cmake ├── Functions │ ├── CopyYamlFolder.cmake │ └── hiptensorSupportedArchitectures.cmake └── Macros │ └── CheckF8.cmake ├── docs ├── .gitignore ├── api-reference │ └── api-reference.rst ├── conceptual │ ├── plan-cache.rst │ └── programmers-guide.rst ├── conf.py ├── contribution │ └── contributors-guide.rst ├── doxygen │ └── Doxyfile ├── environment.yml ├── index.rst ├── install │ └── installation.rst ├── license.rst ├── sphinx │ ├── _toc.yml.in │ ├── requirements.in │ └── requirements.txt ├── transition │ ├── hiptensor_2_transition.png │ └── transition-to-hiptensor-2.x.rst └── what-is-hiptensor.rst ├── library ├── include │ └── hiptensor │ │ ├── hiptensor.h │ │ ├── hiptensor.hpp │ │ ├── hiptensor_types.h │ │ ├── hiptensor_types.hpp │ │ └── internal │ │ ├── config.hpp │ │ ├── hiptensor-version.h.in │ │ ├── hiptensor_utility.hpp │ │ ├── native_types.hpp │ │ ├── native_types_impl.hpp │ │ └── types.hpp └── src │ ├── CMakeLists.txt │ ├── contraction │ ├── CMakeLists.txt │ ├── contraction_cpu_reference.cpp │ ├── contraction_cpu_reference.hpp │ ├── contraction_cpu_reference_impl.hpp │ ├── contraction_cpu_reference_instances.cpp │ ├── contraction_cpu_reference_instances.hpp │ ├── contraction_meta_traits.hpp │ ├── contraction_pack_util.hpp │ ├── contraction_selection.cpp │ ├── contraction_selection.hpp │ ├── contraction_solution.cpp │ ├── contraction_solution.hpp │ ├── contraction_solution_impl.hpp │ ├── contraction_solution_instances.cpp │ ├── contraction_solution_instances.hpp │ ├── contraction_solution_params.hpp │ ├── contraction_solution_params_impl.hpp │ ├── contraction_solution_registry.cpp │ ├── contraction_solution_registry.hpp │ ├── contraction_types.cpp │ ├── contraction_types.hpp │ ├── contraction_types_impl.hpp │ ├── device │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── device_contraction_bilinear_complex.hpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_cf32_compute_cf32_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_cf32_compute_cf32_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_cf32_compute_cf32_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_cf32_compute_cf32_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_cf64_compute_cf64_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_cf64_compute_cf64_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_cf64_compute_cf64_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_cf64_compute_cf64_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp │ │ ├── device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp │ │ ├── device_contraction_scale_complex.hpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_compute_cf32_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_compute_cf32_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_compute_cf32_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf32_cf32_cf32_compute_cf32_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_compute_cf64_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_compute_cf64_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_compute_cf64_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_cf64_cf64_cf64_compute_cf64_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp │ │ ├── device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp │ │ ├── device_element_wise_operation_complex.hpp │ │ ├── hiptensor_contraction_bilinear_instances.hpp │ │ └── hiptensor_contraction_scale_instances.hpp │ └── hiptensor_contraction.cpp │ ├── data_types.cpp │ ├── elementwise │ ├── CMakeLists.txt │ ├── device │ │ ├── hiptensor_ck_types.hpp │ │ ├── hiptensor_elementwise_scale_instances.hpp │ │ ├── instance_params.cpp │ │ └── instance_params.hpp │ ├── elementwise_cpu_reference.cpp │ ├── elementwise_cpu_reference.hpp │ ├── elementwise_cpu_reference_impl.hpp │ ├── elementwise_cpu_reference_instances.cpp │ ├── elementwise_cpu_reference_instances.hpp │ ├── elementwise_instance_selection.cpp │ ├── elementwise_instance_selection.hpp │ ├── elementwise_meta_traits.hpp │ ├── elementwise_solution.cpp │ ├── elementwise_solution.hpp │ ├── elementwise_solution_impl.hpp │ ├── elementwise_solution_instances.cpp │ ├── elementwise_solution_instances.hpp │ ├── elementwise_solution_registry.cpp │ ├── elementwise_solution_registry.hpp │ ├── elementwise_types.cpp │ ├── elementwise_types.hpp │ ├── hiptensor_elementwise_binary.cpp │ ├── hiptensor_elementwise_permute.cpp │ ├── hiptensor_elementwise_trinary.cpp │ └── instances │ │ ├── elementwise_binary_solution_rank2_double_instances.cpp │ │ ├── elementwise_binary_solution_rank2_float_instances.cpp │ │ ├── elementwise_binary_solution_rank2_half_instances.cpp │ │ ├── elementwise_binary_solution_rank3_double_instances.cpp │ │ ├── elementwise_binary_solution_rank3_float_instances.cpp │ │ ├── elementwise_binary_solution_rank3_half_instances.cpp │ │ ├── elementwise_binary_solution_rank4_double_instances.cpp │ │ ├── elementwise_binary_solution_rank4_float_instances.cpp │ │ ├── elementwise_binary_solution_rank4_half_instances.cpp │ │ ├── elementwise_binary_solution_rank5_double_instances.cpp │ │ ├── elementwise_binary_solution_rank5_float_instances.cpp │ │ ├── elementwise_binary_solution_rank5_half_instances.cpp │ │ ├── elementwise_binary_solution_rank6_double_instances.cpp │ │ ├── elementwise_binary_solution_rank6_float_instances.cpp │ │ ├── elementwise_binary_solution_rank6_half_instances.cpp │ │ ├── elementwise_cpu_reference_rank2_instances.cpp │ │ ├── elementwise_cpu_reference_rank3_instances.cpp │ │ ├── elementwise_cpu_reference_rank4_instances.cpp │ │ ├── elementwise_cpu_reference_rank5_instances.cpp │ │ ├── elementwise_cpu_reference_rank6_instances.cpp │ │ ├── elementwise_permute_solution_rank2_float_instances.cpp │ │ ├── elementwise_permute_solution_rank2_float_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank2_half_instances.cpp │ │ ├── elementwise_permute_solution_rank2_half_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank3_float_instances.cpp │ │ ├── elementwise_permute_solution_rank3_float_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank3_half_instances.cpp │ │ ├── elementwise_permute_solution_rank3_half_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank4_float_instances.cpp │ │ ├── elementwise_permute_solution_rank4_float_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank4_half_instances.cpp │ │ ├── elementwise_permute_solution_rank4_half_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank5_float_instances.cpp │ │ ├── elementwise_permute_solution_rank5_float_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank5_half_instances.cpp │ │ ├── elementwise_permute_solution_rank5_half_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank6_float_instances.cpp │ │ ├── elementwise_permute_solution_rank6_float_noop_instances.cpp │ │ ├── elementwise_permute_solution_rank6_half_instances.cpp │ │ ├── elementwise_permute_solution_rank6_half_noop_instances.cpp │ │ ├── elementwise_trinary_solution_rank2_double_instances.cpp │ │ ├── elementwise_trinary_solution_rank2_float_instances.cpp │ │ ├── elementwise_trinary_solution_rank2_half_instances.cpp │ │ ├── elementwise_trinary_solution_rank3_double_instances.cpp │ │ ├── elementwise_trinary_solution_rank3_float_instances.cpp │ │ ├── elementwise_trinary_solution_rank3_half_instances.cpp │ │ ├── elementwise_trinary_solution_rank4_double_instances.cpp │ │ ├── elementwise_trinary_solution_rank4_float_instances.cpp │ │ ├── elementwise_trinary_solution_rank4_half_instances.cpp │ │ ├── elementwise_trinary_solution_rank5_double_instances.cpp │ │ ├── elementwise_trinary_solution_rank5_float_instances.cpp │ │ ├── elementwise_trinary_solution_rank5_half_instances.cpp │ │ ├── elementwise_trinary_solution_rank6_double_instances.cpp │ │ ├── elementwise_trinary_solution_rank6_float_instances.cpp │ │ └── elementwise_trinary_solution_rank6_half_instances.cpp │ ├── handle.cpp │ ├── hip_device.cpp │ ├── hiptensor.cpp │ ├── hiptensor_options.cpp │ ├── include │ ├── data_types.hpp │ ├── data_types_impl.hpp │ ├── handle.hpp │ ├── hash.hpp │ ├── hip_device.hpp │ ├── hiptensor_element_wise_operation.hpp │ ├── hiptensor_options.hpp │ ├── hiptensor_ostream.hpp │ ├── logger.hpp │ ├── meta_traits.hpp │ ├── performance.hpp │ ├── plan_cache.hpp │ ├── plancache_autotune.hpp │ ├── singleton.hpp │ └── util.hpp │ ├── logger.cpp │ ├── performance.cpp │ ├── plan_cache.cpp │ └── reduction │ ├── CMakeLists.txt │ ├── device │ ├── hiptensor_device_reduce.hpp │ ├── hiptensor_device_reduce_multiblock.hpp │ ├── hiptensor_dynamic_buffer.hpp │ ├── hiptensor_gridwise_2d_reduction_multiblock.hpp │ └── hiptensor_reference_reduce.hpp │ ├── hiptensor_reduction.cpp │ ├── reduction_cpu_reference.cpp │ ├── reduction_cpu_reference.hpp │ ├── reduction_cpu_reference_impl.hpp │ ├── reduction_cpu_reference_instances.cpp │ ├── reduction_cpu_reference_instances.hpp │ ├── reduction_meta_traits.hpp │ ├── reduction_solution.cpp │ ├── reduction_solution.hpp │ ├── reduction_solution_1_1_bf16_f32_instance.cpp │ ├── reduction_solution_1_1_f16_f32_instance.cpp │ ├── reduction_solution_1_1_f32_f32_instance.cpp │ ├── reduction_solution_1_1_f64_f64_instance.cpp │ ├── reduction_solution_2_1_bf16_f32_instance.cpp │ ├── reduction_solution_2_1_f16_f32_instance.cpp │ ├── reduction_solution_2_1_f32_f32_instance.cpp │ ├── reduction_solution_2_1_f64_f64_instance.cpp │ ├── reduction_solution_2_2_bf16_f32_instance.cpp │ ├── reduction_solution_2_2_f16_f32_instance.cpp │ ├── reduction_solution_2_2_f32_f32_instance.cpp │ ├── reduction_solution_2_2_f64_f64_instance.cpp │ ├── reduction_solution_3_1_bf16_f32_instance.cpp │ ├── reduction_solution_3_1_f16_f32_instance.cpp │ ├── reduction_solution_3_1_f32_f32_instance.cpp │ ├── reduction_solution_3_1_f64_f64_instance.cpp │ ├── reduction_solution_3_2_bf16_f32_instance.cpp │ ├── reduction_solution_3_2_f16_f32_instance.cpp │ ├── reduction_solution_3_2_f32_f32_instance.cpp │ ├── reduction_solution_3_2_f64_f64_instance.cpp │ ├── reduction_solution_3_3_bf16_f32_instance.cpp │ ├── reduction_solution_3_3_f16_f32_instance.cpp │ ├── reduction_solution_3_3_f32_f32_instance.cpp │ ├── reduction_solution_3_3_f64_f64_instance.cpp │ ├── reduction_solution_4_1_bf16_f32_instance.cpp │ ├── reduction_solution_4_1_f16_f32_instance.cpp │ ├── reduction_solution_4_1_f32_f32_instance.cpp │ ├── reduction_solution_4_1_f64_f64_instance.cpp │ ├── reduction_solution_4_2_bf16_f32_instance.cpp │ ├── reduction_solution_4_2_f16_f32_instance.cpp │ ├── reduction_solution_4_2_f32_f32_instance.cpp │ ├── reduction_solution_4_2_f64_f64_instance.cpp │ ├── reduction_solution_4_3_bf16_f32_instance.cpp │ ├── reduction_solution_4_3_f16_f32_instance.cpp │ ├── reduction_solution_4_3_f32_f32_instance.cpp │ ├── reduction_solution_4_3_f64_f64_instance.cpp │ ├── reduction_solution_4_4_bf16_f32_instance.cpp │ ├── reduction_solution_4_4_f16_f32_instance.cpp │ ├── reduction_solution_4_4_f32_f32_instance.cpp │ ├── reduction_solution_4_4_f64_f64_instance.cpp │ ├── reduction_solution_5_1_bf16_f32_instance.cpp │ ├── reduction_solution_5_1_f16_f32_instance.cpp │ ├── reduction_solution_5_1_f32_f32_instance.cpp │ ├── reduction_solution_5_1_f64_f64_instance.cpp │ ├── reduction_solution_5_2_bf16_f32_instance.cpp │ ├── reduction_solution_5_2_f16_f32_instance.cpp │ ├── reduction_solution_5_2_f32_f32_instance.cpp │ ├── reduction_solution_5_2_f64_f64_instance.cpp │ ├── reduction_solution_5_3_bf16_f32_instance.cpp │ ├── reduction_solution_5_3_f16_f32_instance.cpp │ ├── reduction_solution_5_3_f32_f32_instance.cpp │ ├── reduction_solution_5_3_f64_f64_instance.cpp │ ├── reduction_solution_5_4_bf16_f32_instance.cpp │ ├── reduction_solution_5_4_f16_f32_instance.cpp │ ├── reduction_solution_5_4_f32_f32_instance.cpp │ ├── reduction_solution_5_4_f64_f64_instance.cpp │ ├── reduction_solution_5_5_bf16_f32_instance.cpp │ ├── reduction_solution_5_5_f16_f32_instance.cpp │ ├── reduction_solution_5_5_f32_f32_instance.cpp │ ├── reduction_solution_5_5_f64_f64_instance.cpp │ ├── reduction_solution_6_1_bf16_f32_instance.cpp │ ├── reduction_solution_6_1_f16_f32_instance.cpp │ ├── reduction_solution_6_1_f32_f32_instance.cpp │ ├── reduction_solution_6_1_f64_f64_instance.cpp │ ├── reduction_solution_6_2_bf16_f32_instance.cpp │ ├── reduction_solution_6_2_f16_f32_instance.cpp │ ├── reduction_solution_6_2_f32_f32_instance.cpp │ ├── reduction_solution_6_2_f64_f64_instance.cpp │ ├── reduction_solution_6_3_bf16_f32_instance.cpp │ ├── reduction_solution_6_3_f16_f32_instance.cpp │ ├── reduction_solution_6_3_f32_f32_instance.cpp │ ├── reduction_solution_6_3_f64_f64_instance.cpp │ ├── reduction_solution_6_4_bf16_f32_instance.cpp │ ├── reduction_solution_6_4_f16_f32_instance.cpp │ ├── reduction_solution_6_4_f32_f32_instance.cpp │ ├── reduction_solution_6_4_f64_f64_instance.cpp │ ├── reduction_solution_6_5_bf16_f32_instance.cpp │ ├── reduction_solution_6_5_f16_f32_instance.cpp │ ├── reduction_solution_6_5_f32_f32_instance.cpp │ ├── reduction_solution_6_5_f64_f64_instance.cpp │ ├── reduction_solution_6_6_bf16_f32_instance.cpp │ ├── reduction_solution_6_6_f16_f32_instance.cpp │ ├── reduction_solution_6_6_f32_f32_instance.cpp │ ├── reduction_solution_6_6_f64_f64_instance.cpp │ ├── reduction_solution_impl.hpp │ ├── reduction_solution_instances.cpp │ ├── reduction_solution_instances.hpp │ ├── reduction_solution_params.hpp │ ├── reduction_solution_params_impl.hpp │ ├── reduction_solution_registry.cpp │ ├── reduction_solution_registry.hpp │ ├── reduction_types.cpp │ └── reduction_types.hpp ├── rtest.py ├── rtest.xml ├── samples ├── 01_contraction │ ├── CMakeLists.txt │ ├── simple_bilinear_contraction.hpp │ ├── simple_bilinear_contraction_bf16_bf16_bf16_bf16_compute_bf16.cpp │ ├── simple_bilinear_contraction_cf32_cf32_cf32_cf32_compute_cf32.cpp │ ├── simple_bilinear_contraction_f16_f16_f16_f16_compute_f16.cpp │ ├── simple_bilinear_contraction_f32_f32_f32_f32_compute_bf16.cpp │ ├── simple_bilinear_contraction_f32_f32_f32_f32_compute_f16.cpp │ ├── simple_bilinear_contraction_f32_f32_f32_f32_compute_f32.cpp │ ├── simple_bilinear_contraction_f64_f64_f64_f64_compute_f32.cpp │ ├── simple_bilinear_contraction_f64_f64_f64_f64_compute_f64.cpp │ ├── simple_contraction_c.c │ ├── simple_contraction_plan_cache.cpp │ ├── simple_scale_contraction.hpp │ ├── simple_scale_contraction_bf16_bf16_bf16_compute_bf16.cpp │ ├── simple_scale_contraction_cf32_cf32_cf32_compute_cf32.cpp │ ├── simple_scale_contraction_f16_f16_f16_compute_f16.cpp │ ├── simple_scale_contraction_f32_f32_f32_compute_bf16.cpp │ ├── simple_scale_contraction_f32_f32_f32_compute_f16.cpp │ ├── simple_scale_contraction_f32_f32_f32_compute_f32.cpp │ ├── simple_scale_contraction_f64_f64_f64_compute_f32.cpp │ └── simple_scale_contraction_f64_f64_f64_compute_f64.cpp ├── 02_elementwise │ ├── CMakeLists.txt │ ├── elementwise_binary.cpp │ ├── elementwise_binary_c.c │ ├── elementwise_permute.cpp │ └── elementwise_trinary.cpp ├── 03_reduction │ ├── CMakeLists.txt │ ├── reduction.cpp │ └── reduction_c.c ├── CMakeLists.txt └── common.hpp ├── scripts └── performance │ ├── BenchmarkContraction.sh │ ├── BenchmarkPermutation.sh │ └── BenchmarkReduction.sh └── test ├── 00_unit ├── CMakeLists.txt ├── elementwise_op_test.cpp ├── hiptensor_options_test.cpp ├── interface_test.cpp ├── logger_test.cpp ├── util_test.cpp └── yaml_test.cpp ├── 01_contraction ├── CMakeLists.txt ├── bilinear_contraction_test.cpp ├── complex_bilinear_contraction_test.cpp ├── complex_scale_contraction_test.cpp ├── configs │ ├── bench │ │ ├── bilinear_test_params_rank1.yaml │ │ ├── bilinear_test_params_rank2.yaml │ │ ├── bilinear_test_params_rank3.yaml │ │ ├── bilinear_test_params_rank4.yaml │ │ ├── bilinear_test_params_rank5.yaml │ │ ├── bilinear_test_params_rank6.yaml │ │ ├── complex_bilinear_test_params_rank1.yaml │ │ ├── complex_bilinear_test_params_rank2.yaml │ │ ├── complex_bilinear_test_params_rank3.yaml │ │ ├── complex_bilinear_test_params_rank4.yaml │ │ ├── complex_bilinear_test_params_rank5.yaml │ │ ├── complex_bilinear_test_params_rank6.yaml │ │ ├── complex_scale_test_params_rank1.yaml │ │ ├── complex_scale_test_params_rank2.yaml │ │ ├── complex_scale_test_params_rank3.yaml │ │ ├── complex_scale_test_params_rank4.yaml │ │ ├── complex_scale_test_params_rank5.yaml │ │ ├── complex_scale_test_params_rank6.yaml │ │ ├── scale_test_params_rank1.yaml │ │ ├── scale_test_params_rank2.yaml │ │ ├── scale_test_params_rank3.yaml │ │ ├── scale_test_params_rank4.yaml │ │ ├── scale_test_params_rank5.yaml │ │ └── scale_test_params_rank6.yaml │ ├── code_coverage │ │ ├── bilinear_test_params_rank1.yaml │ │ ├── bilinear_test_params_rank2.yaml │ │ ├── bilinear_test_params_rank3.yaml │ │ ├── bilinear_test_params_rank4.yaml │ │ ├── bilinear_test_params_rank5.yaml │ │ ├── bilinear_test_params_rank6.yaml │ │ ├── complex_bilinear_test_params_rank1.yaml │ │ ├── complex_bilinear_test_params_rank2.yaml │ │ ├── complex_bilinear_test_params_rank3.yaml │ │ ├── complex_bilinear_test_params_rank4.yaml │ │ ├── complex_bilinear_test_params_rank5.yaml │ │ ├── complex_bilinear_test_params_rank6.yaml │ │ ├── complex_scale_test_params_rank1.yaml │ │ ├── complex_scale_test_params_rank2.yaml │ │ ├── complex_scale_test_params_rank3.yaml │ │ ├── complex_scale_test_params_rank4.yaml │ │ ├── complex_scale_test_params_rank5.yaml │ │ ├── complex_scale_test_params_rank6.yaml │ │ ├── scale_test_params_rank1.yaml │ │ ├── scale_test_params_rank2.yaml │ │ ├── scale_test_params_rank3.yaml │ │ ├── scale_test_params_rank4.yaml │ │ ├── scale_test_params_rank5.yaml │ │ └── scale_test_params_rank6.yaml │ ├── contraction_sample_config.yaml │ ├── emulation │ │ ├── extended │ │ │ ├── bilinear_test_params_rank1.yaml │ │ │ ├── bilinear_test_params_rank2.yaml │ │ │ ├── bilinear_test_params_rank3.yaml │ │ │ ├── bilinear_test_params_rank4.yaml │ │ │ ├── bilinear_test_params_rank5.yaml │ │ │ ├── bilinear_test_params_rank6.yaml │ │ │ ├── complex_bilinear_test_params_rank1.yaml │ │ │ ├── complex_bilinear_test_params_rank2.yaml │ │ │ ├── complex_bilinear_test_params_rank3.yaml │ │ │ ├── complex_bilinear_test_params_rank4.yaml │ │ │ ├── complex_bilinear_test_params_rank5.yaml │ │ │ ├── complex_bilinear_test_params_rank6.yaml │ │ │ ├── complex_scale_test_params_rank1.yaml │ │ │ ├── complex_scale_test_params_rank2.yaml │ │ │ ├── complex_scale_test_params_rank3.yaml │ │ │ ├── complex_scale_test_params_rank4.yaml │ │ │ ├── complex_scale_test_params_rank5.yaml │ │ │ ├── complex_scale_test_params_rank6.yaml │ │ │ ├── scale_test_params_rank1.yaml │ │ │ ├── scale_test_params_rank2.yaml │ │ │ ├── scale_test_params_rank3.yaml │ │ │ ├── scale_test_params_rank4.yaml │ │ │ ├── scale_test_params_rank5.yaml │ │ │ └── scale_test_params_rank6.yaml │ │ ├── regression │ │ │ ├── bilinear_test_params_rank1.yaml │ │ │ ├── bilinear_test_params_rank2.yaml │ │ │ ├── bilinear_test_params_rank3.yaml │ │ │ ├── bilinear_test_params_rank4.yaml │ │ │ ├── bilinear_test_params_rank5.yaml │ │ │ ├── bilinear_test_params_rank6.yaml │ │ │ ├── complex_bilinear_test_params_rank1.yaml │ │ │ ├── complex_bilinear_test_params_rank2.yaml │ │ │ ├── complex_bilinear_test_params_rank3.yaml │ │ │ ├── complex_bilinear_test_params_rank4.yaml │ │ │ ├── complex_bilinear_test_params_rank5.yaml │ │ │ ├── complex_bilinear_test_params_rank6.yaml │ │ │ ├── complex_scale_test_params_rank1.yaml │ │ │ ├── complex_scale_test_params_rank2.yaml │ │ │ ├── complex_scale_test_params_rank3.yaml │ │ │ ├── complex_scale_test_params_rank4.yaml │ │ │ ├── complex_scale_test_params_rank5.yaml │ │ │ ├── complex_scale_test_params_rank6.yaml │ │ │ ├── scale_test_params_rank1.yaml │ │ │ ├── scale_test_params_rank2.yaml │ │ │ ├── scale_test_params_rank3.yaml │ │ │ ├── scale_test_params_rank4.yaml │ │ │ ├── scale_test_params_rank5.yaml │ │ │ └── scale_test_params_rank6.yaml │ │ └── smoke │ │ │ ├── bilinear_test_params_rank1.yaml │ │ │ ├── bilinear_test_params_rank2.yaml │ │ │ ├── bilinear_test_params_rank3.yaml │ │ │ ├── bilinear_test_params_rank4.yaml │ │ │ ├── bilinear_test_params_rank5.yaml │ │ │ ├── bilinear_test_params_rank6.yaml │ │ │ ├── complex_bilinear_test_params_rank1.yaml │ │ │ ├── complex_bilinear_test_params_rank2.yaml │ │ │ ├── complex_bilinear_test_params_rank3.yaml │ │ │ ├── complex_bilinear_test_params_rank4.yaml │ │ │ ├── complex_bilinear_test_params_rank5.yaml │ │ │ ├── complex_bilinear_test_params_rank6.yaml │ │ │ ├── complex_scale_test_params_rank1.yaml │ │ │ ├── complex_scale_test_params_rank2.yaml │ │ │ ├── complex_scale_test_params_rank3.yaml │ │ │ ├── complex_scale_test_params_rank4.yaml │ │ │ ├── complex_scale_test_params_rank5.yaml │ │ │ ├── complex_scale_test_params_rank6.yaml │ │ │ ├── scale_test_params_rank1.yaml │ │ │ ├── scale_test_params_rank2.yaml │ │ │ ├── scale_test_params_rank3.yaml │ │ │ ├── scale_test_params_rank4.yaml │ │ │ ├── scale_test_params_rank5.yaml │ │ │ └── scale_test_params_rank6.yaml │ ├── extended │ │ ├── bilinear_test_params_rank1.yaml │ │ ├── bilinear_test_params_rank2.yaml │ │ ├── bilinear_test_params_rank3.yaml │ │ ├── bilinear_test_params_rank4.yaml │ │ ├── bilinear_test_params_rank5.yaml │ │ ├── bilinear_test_params_rank6.yaml │ │ ├── complex_bilinear_test_params_rank1.yaml │ │ ├── complex_bilinear_test_params_rank2.yaml │ │ ├── complex_bilinear_test_params_rank3.yaml │ │ ├── complex_bilinear_test_params_rank4.yaml │ │ ├── complex_bilinear_test_params_rank5.yaml │ │ ├── complex_bilinear_test_params_rank6.yaml │ │ ├── complex_scale_test_params_rank1.yaml │ │ ├── complex_scale_test_params_rank2.yaml │ │ ├── complex_scale_test_params_rank3.yaml │ │ ├── complex_scale_test_params_rank4.yaml │ │ ├── complex_scale_test_params_rank5.yaml │ │ ├── complex_scale_test_params_rank6.yaml │ │ ├── scale_test_params_rank1.yaml │ │ ├── scale_test_params_rank2.yaml │ │ ├── scale_test_params_rank3.yaml │ │ ├── scale_test_params_rank4.yaml │ │ ├── scale_test_params_rank5.yaml │ │ └── scale_test_params_rank6.yaml │ ├── mode_test_params.yaml │ ├── plan_cache_test_params.yaml │ └── validation │ │ ├── bilinear_test_params_rank1.yaml │ │ ├── bilinear_test_params_rank2.yaml │ │ ├── bilinear_test_params_rank3.yaml │ │ ├── bilinear_test_params_rank4.yaml │ │ ├── bilinear_test_params_rank5.yaml │ │ ├── bilinear_test_params_rank6.yaml │ │ ├── complex_bilinear_test_params_rank1.yaml │ │ ├── complex_bilinear_test_params_rank2.yaml │ │ ├── complex_bilinear_test_params_rank3.yaml │ │ ├── complex_bilinear_test_params_rank4.yaml │ │ ├── complex_bilinear_test_params_rank5.yaml │ │ ├── complex_bilinear_test_params_rank6.yaml │ │ ├── complex_scale_test_params_rank1.yaml │ │ ├── complex_scale_test_params_rank2.yaml │ │ ├── complex_scale_test_params_rank3.yaml │ │ ├── complex_scale_test_params_rank4.yaml │ │ ├── complex_scale_test_params_rank5.yaml │ │ ├── complex_scale_test_params_rank6.yaml │ │ ├── scale_test_params_rank1.yaml │ │ ├── scale_test_params_rank2.yaml │ │ ├── scale_test_params_rank3.yaml │ │ ├── scale_test_params_rank4.yaml │ │ ├── scale_test_params_rank5.yaml │ │ └── scale_test_params_rank6.yaml ├── contraction_mode_test.cpp ├── contraction_resource.cpp ├── contraction_resource.hpp ├── contraction_test.cpp ├── contraction_test.hpp ├── contraction_test_helpers.hpp ├── contraction_test_params.hpp ├── plan_cache_contraction_test.cpp └── scale_contraction_test.cpp ├── 02_elementwise ├── CMakeLists.txt ├── configs │ ├── bench │ │ ├── rank2_binary_op_test_params.yaml │ │ ├── rank2_test_params.yaml │ │ ├── rank2_trinary_op_test_params.yaml │ │ ├── rank3_binary_op_test_params.yaml │ │ ├── rank3_test_params.yaml │ │ ├── rank3_trinary_op_test_params.yaml │ │ ├── rank4_binary_op_test_params.yaml │ │ ├── rank4_test_params.yaml │ │ ├── rank4_trinary_op_test_params.yaml │ │ ├── rank5_binary_op_test_params.yaml │ │ ├── rank5_test_params.yaml │ │ ├── rank5_trinary_op_test_params.yaml │ │ ├── rank6_binary_op_test_params.yaml │ │ ├── rank6_test_params.yaml │ │ └── rank6_trinary_op_test_params.yaml │ ├── code_coverage │ │ └── README.md │ ├── emulation │ │ ├── extended │ │ │ ├── binary_op │ │ │ │ ├── rank2_binary_op_test_params.yaml │ │ │ │ ├── rank3_binary_op_test_params.yaml │ │ │ │ ├── rank4_binary_op_test_params.yaml │ │ │ │ ├── rank5_binary_op_test_params.yaml │ │ │ │ └── rank6_binary_op_test_params.yaml │ │ │ ├── permutation │ │ │ │ ├── rank2_test_params.yaml │ │ │ │ ├── rank3_test_params.yaml │ │ │ │ ├── rank4_test_params.yaml │ │ │ │ ├── rank5_test_params.yaml │ │ │ │ └── rank6_test_params.yaml │ │ │ └── trinary_op │ │ │ │ ├── rank2_trinary_op_test_params.yaml │ │ │ │ ├── rank3_trinary_op_test_params.yaml │ │ │ │ ├── rank4_trinary_op_test_params.yaml │ │ │ │ ├── rank5_trinary_op_test_params.yaml │ │ │ │ └── rank6_trinary_op_test_params.yaml │ │ ├── regression │ │ │ ├── binary_op │ │ │ │ ├── rank2_binary_op_test_params.yaml │ │ │ │ ├── rank3_binary_op_test_params.yaml │ │ │ │ ├── rank4_binary_op_test_params.yaml │ │ │ │ ├── rank5_binary_op_test_params.yaml │ │ │ │ └── rank6_binary_op_test_params.yaml │ │ │ ├── permutation │ │ │ │ ├── rank2_test_params.yaml │ │ │ │ ├── rank3_test_params.yaml │ │ │ │ ├── rank4_test_params.yaml │ │ │ │ ├── rank5_test_params.yaml │ │ │ │ └── rank6_test_params.yaml │ │ │ └── trinary_op │ │ │ │ ├── rank2_trinary_op_test_params.yaml │ │ │ │ ├── rank3_trinary_op_test_params.yaml │ │ │ │ ├── rank4_trinary_op_test_params.yaml │ │ │ │ ├── rank5_trinary_op_test_params.yaml │ │ │ │ └── rank6_trinary_op_test_params.yaml │ │ └── smoke │ │ │ ├── binary_op │ │ │ ├── rank2_binary_op_test_params.yaml │ │ │ ├── rank3_binary_op_test_params.yaml │ │ │ ├── rank4_binary_op_test_params.yaml │ │ │ ├── rank5_binary_op_test_params.yaml │ │ │ └── rank6_binary_op_test_params.yaml │ │ │ ├── permutation │ │ │ ├── rank2_test_params.yaml │ │ │ ├── rank3_test_params.yaml │ │ │ ├── rank4_test_params.yaml │ │ │ ├── rank5_test_params.yaml │ │ │ └── rank6_test_params.yaml │ │ │ └── trinary_op │ │ │ ├── rank2_trinary_op_test_params.yaml │ │ │ ├── rank3_trinary_op_test_params.yaml │ │ │ ├── rank4_trinary_op_test_params.yaml │ │ │ ├── rank5_trinary_op_test_params.yaml │ │ │ └── rank6_trinary_op_test_params.yaml │ ├── extended │ │ ├── rank2_binary_op_test_params.yaml │ │ ├── rank2_test_params.yaml │ │ ├── rank2_trinary_op_test_params.yaml │ │ ├── rank3_binary_op_test_params.yaml │ │ ├── rank3_test_params.yaml │ │ ├── rank3_trinary_op_test_params.yaml │ │ ├── rank4_binary_op_test_params.yaml │ │ ├── rank4_test_params.yaml │ │ ├── rank4_trinary_op_test_params.yaml │ │ ├── rank5_binary_op_test_params.yaml │ │ ├── rank5_test_params.yaml │ │ ├── rank5_trinary_op_test_params.yaml │ │ ├── rank6_binary_op_test_params.yaml │ │ ├── rank6_test_params.yaml │ │ └── rank6_trinary_op_test_params.yaml │ └── validation │ │ ├── binary_op │ │ ├── rank2_binary_op_test_params.yaml │ │ ├── rank3_binary_op_test_params.yaml │ │ ├── rank4_binary_op_test_params.yaml │ │ ├── rank5_binary_op_test_params.yaml │ │ └── rank6_binary_op_test_params.yaml │ │ ├── permutation │ │ ├── rank2_test_params.yaml │ │ ├── rank3_test_params.yaml │ │ ├── rank4_test_params.yaml │ │ ├── rank5_test_params.yaml │ │ └── rank6_test_params.yaml │ │ └── trinary_op │ │ ├── rank2_trinary_op_test_params.yaml │ │ ├── rank3_trinary_op_test_params.yaml │ │ ├── rank4_trinary_op_test_params.yaml │ │ ├── rank5_trinary_op_test_params.yaml │ │ └── rank6_trinary_op_test_params.yaml ├── elementwise_binary_cpu_impl_test.cpp ├── elementwise_binary_op_test.cpp ├── elementwise_binary_op_test.hpp ├── elementwise_binary_op_test_helpers.hpp ├── elementwise_cpu_impl_test.cpp ├── elementwise_resource.cpp ├── elementwise_resource.hpp ├── elementwise_sample_config.yaml ├── elementwise_test.cpp ├── elementwise_test.hpp ├── elementwise_test_helpers.hpp ├── elementwise_test_params.hpp ├── elementwise_trinary_cpu_impl_test.cpp ├── elementwise_trinary_op_test.cpp ├── elementwise_trinary_op_test.hpp ├── elementwise_trinary_op_test_helpers.hpp ├── rank2_elementwise_binary_op_test.cpp ├── rank2_elementwise_permute_test.cpp ├── rank2_elementwise_trinary_op_test.cpp ├── rank3_elementwise_binary_op_test.cpp ├── rank3_elementwise_permute_test.cpp ├── rank3_elementwise_trinary_op_test.cpp ├── rank4_elementwise_binary_op_test.cpp ├── rank4_elementwise_permute_test.cpp ├── rank4_elementwise_trinary_op_test.cpp ├── rank5_elementwise_binary_op_test.cpp ├── rank5_elementwise_permute_test.cpp ├── rank5_elementwise_trinary_op_test.cpp ├── rank6_elementwise_binary_op_test.cpp ├── rank6_elementwise_permute_test.cpp └── rank6_elementwise_trinary_op_test.cpp ├── 03_reduction ├── CMakeLists.txt ├── configs │ ├── bench │ │ ├── rank1_test_params.yaml │ │ ├── rank2_test_params.yaml │ │ ├── rank3_test_params.yaml │ │ ├── rank4_test_params.yaml │ │ ├── rank5_test_params.yaml │ │ └── rank6_test_params.yaml │ ├── code_coverage │ │ ├── rank1_test_params.yaml │ │ ├── rank2_test_params.yaml │ │ ├── rank3_test_params.yaml │ │ ├── rank4_test_params.yaml │ │ ├── rank5_test_params.yaml │ │ └── rank6_test_params.yaml │ ├── emulation │ │ ├── extended │ │ │ ├── rank1_test_params.yaml │ │ │ ├── rank2_test_params.yaml │ │ │ ├── rank3_test_params.yaml │ │ │ ├── rank4_test_params.yaml │ │ │ ├── rank5_test_params.yaml │ │ │ └── rank6_test_params.yaml │ │ ├── regression │ │ │ ├── rank1_test_params.yaml │ │ │ ├── rank2_test_params.yaml │ │ │ ├── rank3_test_params.yaml │ │ │ ├── rank4_test_params.yaml │ │ │ ├── rank5_test_params.yaml │ │ │ └── rank6_test_params.yaml │ │ └── smoke │ │ │ ├── rank1_test_params.yaml │ │ │ ├── rank2_test_params.yaml │ │ │ ├── rank3_test_params.yaml │ │ │ ├── rank4_test_params.yaml │ │ │ ├── rank5_test_params.yaml │ │ │ └── rank6_test_params.yaml │ ├── extended │ │ ├── rank1_test_params.yaml │ │ ├── rank2_test_params.yaml │ │ ├── rank3_test_params.yaml │ │ ├── rank4_test_params.yaml │ │ ├── rank5_test_params.yaml │ │ └── rank6_test_params.yaml │ ├── reduction_params.yaml │ └── validation │ │ ├── rank1_test_params.yaml │ │ ├── rank2_test_params.yaml │ │ ├── rank3_test_params.yaml │ │ ├── rank4_test_params.yaml │ │ ├── rank5_test_params.yaml │ │ └── rank6_test_params.yaml ├── rank1_reduction_test.cpp ├── rank2_reduction_test.cpp ├── rank3_reduction_test.cpp ├── rank4_reduction_test.cpp ├── rank5_reduction_test.cpp ├── rank6_reduction_test.cpp ├── reduction_cpu_impl_test.cpp ├── reduction_resource.cpp ├── reduction_resource.hpp ├── reduction_sample_config.yaml ├── reduction_test.cpp ├── reduction_test.hpp ├── reduction_test_helpers.hpp └── reduction_test_params.hpp ├── CMakeLists.txt ├── common.hpp ├── device └── common.hpp ├── hip_resource.cpp ├── hip_resource.hpp ├── hiptensor-test-yaml.hpp.in ├── hiptensor_gtest_main.cpp ├── hiptensor_length_generation.hpp ├── llvm ├── CMakeLists.txt ├── command_line_parser.cpp ├── command_line_parser.hpp ├── yaml_parser.hpp ├── yaml_parser_config.cpp └── yaml_parser_impl.hpp ├── type_traits.hpp └── utils.hpp /.azuredevops/rocm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.azuredevops/rocm-ci.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.githooks/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.githooks/install -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.gitignore -------------------------------------------------------------------------------- /.jenkins/common.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.jenkins/common.groovy -------------------------------------------------------------------------------- /.jenkins/staticanalysis.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.jenkins/staticanalysis.groovy -------------------------------------------------------------------------------- /.jenkins/staticlibrary.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.jenkins/staticlibrary.groovy -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/.wordlist.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/Config.cmake.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/Functions/CopyYamlFolder.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/cmake/Functions/CopyYamlFolder.cmake -------------------------------------------------------------------------------- /cmake/Functions/hiptensorSupportedArchitectures.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/cmake/Functions/hiptensorSupportedArchitectures.cmake -------------------------------------------------------------------------------- /cmake/Macros/CheckF8.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/cmake/Macros/CheckF8.cmake -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/api-reference/api-reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/api-reference/api-reference.rst -------------------------------------------------------------------------------- /docs/conceptual/plan-cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/conceptual/plan-cache.rst -------------------------------------------------------------------------------- /docs/conceptual/programmers-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/conceptual/programmers-guide.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribution/contributors-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/contribution/contributors-guide.rst -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/install/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/sphinx/_toc.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/sphinx/_toc.yml.in -------------------------------------------------------------------------------- /docs/sphinx/requirements.in: -------------------------------------------------------------------------------- 1 | rocm-docs-core==1.24.0 2 | -------------------------------------------------------------------------------- /docs/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/sphinx/requirements.txt -------------------------------------------------------------------------------- /docs/transition/hiptensor_2_transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/transition/hiptensor_2_transition.png -------------------------------------------------------------------------------- /docs/transition/transition-to-hiptensor-2.x.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/transition/transition-to-hiptensor-2.x.rst -------------------------------------------------------------------------------- /docs/what-is-hiptensor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/docs/what-is-hiptensor.rst -------------------------------------------------------------------------------- /library/include/hiptensor/hiptensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/hiptensor.h -------------------------------------------------------------------------------- /library/include/hiptensor/hiptensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/hiptensor.hpp -------------------------------------------------------------------------------- /library/include/hiptensor/hiptensor_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/hiptensor_types.h -------------------------------------------------------------------------------- /library/include/hiptensor/hiptensor_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/hiptensor_types.hpp -------------------------------------------------------------------------------- /library/include/hiptensor/internal/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/internal/config.hpp -------------------------------------------------------------------------------- /library/include/hiptensor/internal/hiptensor-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/internal/hiptensor-version.h.in -------------------------------------------------------------------------------- /library/include/hiptensor/internal/hiptensor_utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/internal/hiptensor_utility.hpp -------------------------------------------------------------------------------- /library/include/hiptensor/internal/native_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/internal/native_types.hpp -------------------------------------------------------------------------------- /library/include/hiptensor/internal/native_types_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/internal/native_types_impl.hpp -------------------------------------------------------------------------------- /library/include/hiptensor/internal/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/include/hiptensor/internal/types.hpp -------------------------------------------------------------------------------- /library/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/contraction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/contraction/contraction_cpu_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_cpu_reference.cpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_cpu_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_cpu_reference.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_cpu_reference_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_cpu_reference_impl.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_cpu_reference_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_cpu_reference_instances.cpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_cpu_reference_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_cpu_reference_instances.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_meta_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_meta_traits.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_pack_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_pack_util.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_selection.cpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_selection.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution.cpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution_impl.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution_instances.cpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution_instances.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution_params.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution_params_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution_params_impl.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution_registry.cpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_solution_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_solution_registry.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_types.cpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_types.hpp -------------------------------------------------------------------------------- /library/src/contraction/contraction_types_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/contraction_types_impl.hpp -------------------------------------------------------------------------------- /library/src/contraction/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/device/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/contraction/device/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/device/common.hpp -------------------------------------------------------------------------------- /library/src/contraction/device/device_contraction_bilinear_complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/device/device_contraction_bilinear_complex.hpp -------------------------------------------------------------------------------- /library/src/contraction/device/device_contraction_scale_complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/device/device_contraction_scale_complex.hpp -------------------------------------------------------------------------------- /library/src/contraction/device/device_element_wise_operation_complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/device/device_element_wise_operation_complex.hpp -------------------------------------------------------------------------------- /library/src/contraction/device/hiptensor_contraction_bilinear_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/device/hiptensor_contraction_bilinear_instances.hpp -------------------------------------------------------------------------------- /library/src/contraction/device/hiptensor_contraction_scale_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/device/hiptensor_contraction_scale_instances.hpp -------------------------------------------------------------------------------- /library/src/contraction/hiptensor_contraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/contraction/hiptensor_contraction.cpp -------------------------------------------------------------------------------- /library/src/data_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/data_types.cpp -------------------------------------------------------------------------------- /library/src/elementwise/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/elementwise/device/hiptensor_ck_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/device/hiptensor_ck_types.hpp -------------------------------------------------------------------------------- /library/src/elementwise/device/hiptensor_elementwise_scale_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/device/hiptensor_elementwise_scale_instances.hpp -------------------------------------------------------------------------------- /library/src/elementwise/device/instance_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/device/instance_params.cpp -------------------------------------------------------------------------------- /library/src/elementwise/device/instance_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/device/instance_params.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_cpu_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_cpu_reference.cpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_cpu_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_cpu_reference.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_cpu_reference_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_cpu_reference_impl.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_cpu_reference_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_cpu_reference_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_cpu_reference_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_cpu_reference_instances.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_instance_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_instance_selection.cpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_instance_selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_instance_selection.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_meta_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_meta_traits.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_solution.cpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_solution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_solution.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_solution_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_solution_impl.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_solution_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_solution_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_solution_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_solution_instances.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_solution_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_solution_registry.cpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_solution_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_solution_registry.hpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_types.cpp -------------------------------------------------------------------------------- /library/src/elementwise/elementwise_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/elementwise_types.hpp -------------------------------------------------------------------------------- /library/src/elementwise/hiptensor_elementwise_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/hiptensor_elementwise_binary.cpp -------------------------------------------------------------------------------- /library/src/elementwise/hiptensor_elementwise_permute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/hiptensor_elementwise_permute.cpp -------------------------------------------------------------------------------- /library/src/elementwise/hiptensor_elementwise_trinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/hiptensor_elementwise_trinary.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank2_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank2_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank2_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank2_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank2_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank2_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank3_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank3_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank3_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank3_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank3_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank3_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank4_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank4_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank4_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank4_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank4_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank4_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank5_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank5_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank5_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank5_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank5_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank5_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank6_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank6_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank6_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank6_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_binary_solution_rank6_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_binary_solution_rank6_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_cpu_reference_rank2_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_cpu_reference_rank2_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_cpu_reference_rank3_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_cpu_reference_rank3_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_cpu_reference_rank4_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_cpu_reference_rank4_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_cpu_reference_rank5_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_cpu_reference_rank5_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_cpu_reference_rank6_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_cpu_reference_rank6_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank2_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank2_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank2_float_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank2_float_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank2_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank2_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank2_half_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank2_half_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank3_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank3_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank3_float_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank3_float_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank3_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank3_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank3_half_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank3_half_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank4_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank4_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank4_float_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank4_float_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank4_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank4_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank4_half_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank4_half_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank5_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank5_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank5_float_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank5_float_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank5_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank5_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank5_half_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank5_half_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank6_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank6_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank6_float_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank6_float_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank6_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank6_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_permute_solution_rank6_half_noop_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_permute_solution_rank6_half_noop_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank2_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank2_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank2_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank2_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank2_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank2_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank3_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank3_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank3_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank3_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank3_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank3_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank4_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank4_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank4_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank4_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank4_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank4_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank5_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank5_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank5_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank5_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank5_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank5_half_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank6_double_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank6_double_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank6_float_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank6_float_instances.cpp -------------------------------------------------------------------------------- /library/src/elementwise/instances/elementwise_trinary_solution_rank6_half_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/elementwise/instances/elementwise_trinary_solution_rank6_half_instances.cpp -------------------------------------------------------------------------------- /library/src/handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/handle.cpp -------------------------------------------------------------------------------- /library/src/hip_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/hip_device.cpp -------------------------------------------------------------------------------- /library/src/hiptensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/hiptensor.cpp -------------------------------------------------------------------------------- /library/src/hiptensor_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/hiptensor_options.cpp -------------------------------------------------------------------------------- /library/src/include/data_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/data_types.hpp -------------------------------------------------------------------------------- /library/src/include/data_types_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/data_types_impl.hpp -------------------------------------------------------------------------------- /library/src/include/handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/handle.hpp -------------------------------------------------------------------------------- /library/src/include/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/hash.hpp -------------------------------------------------------------------------------- /library/src/include/hip_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/hip_device.hpp -------------------------------------------------------------------------------- /library/src/include/hiptensor_element_wise_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/hiptensor_element_wise_operation.hpp -------------------------------------------------------------------------------- /library/src/include/hiptensor_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/hiptensor_options.hpp -------------------------------------------------------------------------------- /library/src/include/hiptensor_ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/hiptensor_ostream.hpp -------------------------------------------------------------------------------- /library/src/include/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/logger.hpp -------------------------------------------------------------------------------- /library/src/include/meta_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/meta_traits.hpp -------------------------------------------------------------------------------- /library/src/include/performance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/performance.hpp -------------------------------------------------------------------------------- /library/src/include/plan_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/plan_cache.hpp -------------------------------------------------------------------------------- /library/src/include/plancache_autotune.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/plancache_autotune.hpp -------------------------------------------------------------------------------- /library/src/include/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/singleton.hpp -------------------------------------------------------------------------------- /library/src/include/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/include/util.hpp -------------------------------------------------------------------------------- /library/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/logger.cpp -------------------------------------------------------------------------------- /library/src/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/performance.cpp -------------------------------------------------------------------------------- /library/src/plan_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/plan_cache.cpp -------------------------------------------------------------------------------- /library/src/reduction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/reduction/device/hiptensor_device_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/device/hiptensor_device_reduce.hpp -------------------------------------------------------------------------------- /library/src/reduction/device/hiptensor_device_reduce_multiblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/device/hiptensor_device_reduce_multiblock.hpp -------------------------------------------------------------------------------- /library/src/reduction/device/hiptensor_dynamic_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/device/hiptensor_dynamic_buffer.hpp -------------------------------------------------------------------------------- /library/src/reduction/device/hiptensor_gridwise_2d_reduction_multiblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/device/hiptensor_gridwise_2d_reduction_multiblock.hpp -------------------------------------------------------------------------------- /library/src/reduction/device/hiptensor_reference_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/device/hiptensor_reference_reduce.hpp -------------------------------------------------------------------------------- /library/src/reduction/hiptensor_reduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/hiptensor_reduction.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_cpu_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_cpu_reference.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_cpu_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_cpu_reference.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_cpu_reference_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_cpu_reference_impl.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_cpu_reference_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_cpu_reference_instances.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_cpu_reference_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_cpu_reference_instances.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_meta_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_meta_traits.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_1_1_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_1_1_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_1_1_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_1_1_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_1_1_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_1_1_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_1_1_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_1_1_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_1_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_1_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_1_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_1_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_1_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_1_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_1_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_1_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_2_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_2_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_2_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_2_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_2_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_2_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_2_2_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_2_2_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_1_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_1_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_1_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_1_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_1_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_1_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_1_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_1_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_2_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_2_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_2_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_2_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_2_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_2_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_2_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_2_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_3_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_3_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_3_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_3_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_3_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_3_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_3_3_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_3_3_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_1_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_1_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_1_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_1_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_1_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_1_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_1_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_1_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_2_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_2_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_2_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_2_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_2_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_2_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_2_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_2_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_3_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_3_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_3_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_3_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_3_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_3_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_3_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_3_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_4_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_4_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_4_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_4_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_4_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_4_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_4_4_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_4_4_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_1_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_1_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_1_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_1_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_1_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_1_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_1_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_1_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_2_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_2_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_2_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_2_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_2_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_2_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_2_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_2_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_3_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_3_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_3_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_3_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_3_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_3_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_3_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_3_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_4_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_4_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_4_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_4_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_4_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_4_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_4_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_4_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_5_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_5_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_5_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_5_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_5_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_5_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_5_5_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_5_5_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_1_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_1_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_1_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_1_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_1_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_1_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_1_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_1_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_2_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_2_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_2_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_2_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_2_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_2_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_2_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_2_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_3_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_3_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_3_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_3_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_3_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_3_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_3_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_3_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_4_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_4_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_4_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_4_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_4_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_4_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_4_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_4_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_5_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_5_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_5_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_5_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_5_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_5_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_5_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_5_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_6_bf16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_6_bf16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_6_f16_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_6_f16_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_6_f32_f32_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_6_f32_f32_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_6_6_f64_f64_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_6_6_f64_f64_instance.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_impl.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_instances.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_instances.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_params.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_params_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_params_impl.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_registry.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_solution_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_solution_registry.hpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_types.cpp -------------------------------------------------------------------------------- /library/src/reduction/reduction_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/library/src/reduction/reduction_types.hpp -------------------------------------------------------------------------------- /rtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/rtest.py -------------------------------------------------------------------------------- /rtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/rtest.xml -------------------------------------------------------------------------------- /samples/01_contraction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/CMakeLists.txt -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction.hpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_bf16_bf16_bf16_bf16_compute_bf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_bf16_bf16_bf16_bf16_compute_bf16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_cf32_cf32_cf32_cf32_compute_cf32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_cf32_cf32_cf32_cf32_compute_cf32.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_f16_f16_f16_f16_compute_f16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_f16_f16_f16_f16_compute_f16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_f32_f32_f32_f32_compute_bf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_f32_f32_f32_f32_compute_bf16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_f32_f32_f32_f32_compute_f16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_f32_f32_f32_f32_compute_f16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_f32_f32_f32_f32_compute_f32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_f32_f32_f32_f32_compute_f32.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_f64_f64_f64_f64_compute_f32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_f64_f64_f64_f64_compute_f32.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_bilinear_contraction_f64_f64_f64_f64_compute_f64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_bilinear_contraction_f64_f64_f64_f64_compute_f64.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_contraction_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_contraction_c.c -------------------------------------------------------------------------------- /samples/01_contraction/simple_contraction_plan_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_contraction_plan_cache.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction.hpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_bf16_bf16_bf16_compute_bf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_bf16_bf16_bf16_compute_bf16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_cf32_cf32_cf32_compute_cf32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_cf32_cf32_cf32_compute_cf32.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_f16_f16_f16_compute_f16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_f16_f16_f16_compute_f16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_f32_f32_f32_compute_bf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_f32_f32_f32_compute_bf16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_f32_f32_f32_compute_f16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_f32_f32_f32_compute_f16.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_f32_f32_f32_compute_f32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_f32_f32_f32_compute_f32.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_f64_f64_f64_compute_f32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_f64_f64_f64_compute_f32.cpp -------------------------------------------------------------------------------- /samples/01_contraction/simple_scale_contraction_f64_f64_f64_compute_f64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/01_contraction/simple_scale_contraction_f64_f64_f64_compute_f64.cpp -------------------------------------------------------------------------------- /samples/02_elementwise/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/02_elementwise/CMakeLists.txt -------------------------------------------------------------------------------- /samples/02_elementwise/elementwise_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/02_elementwise/elementwise_binary.cpp -------------------------------------------------------------------------------- /samples/02_elementwise/elementwise_binary_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/02_elementwise/elementwise_binary_c.c -------------------------------------------------------------------------------- /samples/02_elementwise/elementwise_permute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/02_elementwise/elementwise_permute.cpp -------------------------------------------------------------------------------- /samples/02_elementwise/elementwise_trinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/02_elementwise/elementwise_trinary.cpp -------------------------------------------------------------------------------- /samples/03_reduction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/03_reduction/CMakeLists.txt -------------------------------------------------------------------------------- /samples/03_reduction/reduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/03_reduction/reduction.cpp -------------------------------------------------------------------------------- /samples/03_reduction/reduction_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/03_reduction/reduction_c.c -------------------------------------------------------------------------------- /samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/CMakeLists.txt -------------------------------------------------------------------------------- /samples/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/samples/common.hpp -------------------------------------------------------------------------------- /scripts/performance/BenchmarkContraction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/scripts/performance/BenchmarkContraction.sh -------------------------------------------------------------------------------- /scripts/performance/BenchmarkPermutation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/scripts/performance/BenchmarkPermutation.sh -------------------------------------------------------------------------------- /scripts/performance/BenchmarkReduction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/scripts/performance/BenchmarkReduction.sh -------------------------------------------------------------------------------- /test/00_unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/00_unit/CMakeLists.txt -------------------------------------------------------------------------------- /test/00_unit/elementwise_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/00_unit/elementwise_op_test.cpp -------------------------------------------------------------------------------- /test/00_unit/hiptensor_options_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/00_unit/hiptensor_options_test.cpp -------------------------------------------------------------------------------- /test/00_unit/interface_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/00_unit/interface_test.cpp -------------------------------------------------------------------------------- /test/00_unit/logger_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/00_unit/logger_test.cpp -------------------------------------------------------------------------------- /test/00_unit/util_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/00_unit/util_test.cpp -------------------------------------------------------------------------------- /test/00_unit/yaml_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/00_unit/yaml_test.cpp -------------------------------------------------------------------------------- /test/01_contraction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/CMakeLists.txt -------------------------------------------------------------------------------- /test/01_contraction/bilinear_contraction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/bilinear_contraction_test.cpp -------------------------------------------------------------------------------- /test/01_contraction/complex_bilinear_contraction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/complex_bilinear_contraction_test.cpp -------------------------------------------------------------------------------- /test/01_contraction/complex_scale_contraction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/complex_scale_contraction_test.cpp -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/complex_scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/complex_scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/bench/scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/bench/scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/complex_scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/complex_scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/code_coverage/scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/code_coverage/scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/contraction_sample_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/contraction_sample_config.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/complex_scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/extended/scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/extended/scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/complex_scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/regression/scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/regression/scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/complex_scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/emulation/smoke/scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/emulation/smoke/scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/complex_scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/complex_scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/extended/scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/extended/scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/mode_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/mode_test_params.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/plan_cache_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/plan_cache_test_params.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_bilinear_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_bilinear_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_bilinear_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_bilinear_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_bilinear_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_bilinear_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_bilinear_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_bilinear_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_bilinear_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_bilinear_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_bilinear_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_bilinear_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/complex_scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/complex_scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/scale_test_params_rank1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/scale_test_params_rank1.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/scale_test_params_rank2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/scale_test_params_rank2.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/scale_test_params_rank3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/scale_test_params_rank3.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/scale_test_params_rank4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/scale_test_params_rank4.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/scale_test_params_rank5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/scale_test_params_rank5.yaml -------------------------------------------------------------------------------- /test/01_contraction/configs/validation/scale_test_params_rank6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/configs/validation/scale_test_params_rank6.yaml -------------------------------------------------------------------------------- /test/01_contraction/contraction_mode_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/contraction_mode_test.cpp -------------------------------------------------------------------------------- /test/01_contraction/contraction_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/contraction_resource.cpp -------------------------------------------------------------------------------- /test/01_contraction/contraction_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/contraction_resource.hpp -------------------------------------------------------------------------------- /test/01_contraction/contraction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/contraction_test.cpp -------------------------------------------------------------------------------- /test/01_contraction/contraction_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/contraction_test.hpp -------------------------------------------------------------------------------- /test/01_contraction/contraction_test_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/contraction_test_helpers.hpp -------------------------------------------------------------------------------- /test/01_contraction/contraction_test_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/contraction_test_params.hpp -------------------------------------------------------------------------------- /test/01_contraction/plan_cache_contraction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/plan_cache_contraction_test.cpp -------------------------------------------------------------------------------- /test/01_contraction/scale_contraction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/01_contraction/scale_contraction_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/CMakeLists.txt -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank2_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank2_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank2_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank2_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank3_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank3_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank3_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank3_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank4_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank4_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank4_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank4_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank5_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank5_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank5_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank5_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank6_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank6_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/bench/rank6_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/bench/rank6_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/code_coverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/code_coverage/README.md -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/binary_op/rank2_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/binary_op/rank2_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/binary_op/rank3_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/binary_op/rank3_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/binary_op/rank4_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/binary_op/rank4_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/binary_op/rank5_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/binary_op/rank5_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/binary_op/rank6_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/binary_op/rank6_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/permutation/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/permutation/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/permutation/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/permutation/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/permutation/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/permutation/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/permutation/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/permutation/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/permutation/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/permutation/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/trinary_op/rank2_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/trinary_op/rank2_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/trinary_op/rank3_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/trinary_op/rank3_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/trinary_op/rank4_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/trinary_op/rank4_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/trinary_op/rank5_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/trinary_op/rank5_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/extended/trinary_op/rank6_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/extended/trinary_op/rank6_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/binary_op/rank2_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/binary_op/rank2_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/binary_op/rank3_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/binary_op/rank3_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/binary_op/rank4_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/binary_op/rank4_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/binary_op/rank5_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/binary_op/rank5_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/binary_op/rank6_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/binary_op/rank6_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/permutation/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/permutation/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/permutation/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/permutation/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/permutation/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/permutation/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/permutation/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/permutation/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/permutation/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/permutation/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/trinary_op/rank2_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/trinary_op/rank2_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/trinary_op/rank3_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/trinary_op/rank3_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/trinary_op/rank4_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/trinary_op/rank4_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/regression/trinary_op/rank5_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/regression/trinary_op/rank5_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/binary_op/rank2_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/binary_op/rank2_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/binary_op/rank3_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/binary_op/rank3_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/binary_op/rank4_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/binary_op/rank4_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/binary_op/rank5_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/binary_op/rank5_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/binary_op/rank6_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/binary_op/rank6_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/permutation/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/permutation/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/permutation/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/permutation/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/permutation/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/permutation/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/permutation/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/permutation/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/permutation/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/permutation/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/trinary_op/rank2_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/trinary_op/rank2_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/trinary_op/rank3_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/trinary_op/rank3_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/trinary_op/rank4_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/trinary_op/rank4_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/trinary_op/rank5_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/trinary_op/rank5_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/emulation/smoke/trinary_op/rank6_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/emulation/smoke/trinary_op/rank6_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank2_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank2_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank2_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank2_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank3_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank3_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank3_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank3_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank4_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank4_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank4_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank4_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank5_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank5_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank5_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank5_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank6_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank6_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/extended/rank6_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/extended/rank6_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/binary_op/rank2_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/binary_op/rank2_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/binary_op/rank3_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/binary_op/rank3_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/binary_op/rank4_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/binary_op/rank4_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/binary_op/rank5_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/binary_op/rank5_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/binary_op/rank6_binary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/binary_op/rank6_binary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/permutation/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/permutation/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/permutation/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/permutation/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/permutation/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/permutation/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/permutation/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/permutation/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/permutation/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/permutation/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/trinary_op/rank2_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/trinary_op/rank2_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/trinary_op/rank3_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/trinary_op/rank3_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/trinary_op/rank4_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/trinary_op/rank4_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/trinary_op/rank5_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/trinary_op/rank5_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/configs/validation/trinary_op/rank6_trinary_op_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/configs/validation/trinary_op/rank6_trinary_op_test_params.yaml -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_binary_cpu_impl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_binary_cpu_impl_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_binary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_binary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_binary_op_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_binary_op_test.hpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_binary_op_test_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_binary_op_test_helpers.hpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_cpu_impl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_cpu_impl_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_resource.cpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_resource.hpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_sample_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_sample_config.yaml -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_test.hpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_test_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_test_helpers.hpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_test_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_test_params.hpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_trinary_cpu_impl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_trinary_cpu_impl_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_trinary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_trinary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_trinary_op_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_trinary_op_test.hpp -------------------------------------------------------------------------------- /test/02_elementwise/elementwise_trinary_op_test_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/elementwise_trinary_op_test_helpers.hpp -------------------------------------------------------------------------------- /test/02_elementwise/rank2_elementwise_binary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank2_elementwise_binary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank2_elementwise_permute_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank2_elementwise_permute_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank2_elementwise_trinary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank2_elementwise_trinary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank3_elementwise_binary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank3_elementwise_binary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank3_elementwise_permute_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank3_elementwise_permute_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank3_elementwise_trinary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank3_elementwise_trinary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank4_elementwise_binary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank4_elementwise_binary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank4_elementwise_permute_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank4_elementwise_permute_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank4_elementwise_trinary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank4_elementwise_trinary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank5_elementwise_binary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank5_elementwise_binary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank5_elementwise_permute_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank5_elementwise_permute_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank5_elementwise_trinary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank5_elementwise_trinary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank6_elementwise_binary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank6_elementwise_binary_op_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank6_elementwise_permute_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank6_elementwise_permute_test.cpp -------------------------------------------------------------------------------- /test/02_elementwise/rank6_elementwise_trinary_op_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/02_elementwise/rank6_elementwise_trinary_op_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/CMakeLists.txt -------------------------------------------------------------------------------- /test/03_reduction/configs/bench/rank1_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/bench/rank1_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/bench/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/bench/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/bench/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/bench/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/bench/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/bench/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/bench/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/bench/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/bench/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/bench/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/code_coverage/rank1_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/code_coverage/rank1_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/code_coverage/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/code_coverage/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/code_coverage/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/code_coverage/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/code_coverage/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/code_coverage/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/code_coverage/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/code_coverage/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/code_coverage/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/code_coverage/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/extended/rank1_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/extended/rank1_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/extended/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/extended/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/extended/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/extended/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/extended/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/extended/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/extended/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/extended/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/extended/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/extended/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/regression/rank1_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/regression/rank1_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/regression/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/regression/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/regression/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/regression/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/regression/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/regression/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/regression/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/regression/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/regression/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/regression/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/smoke/rank1_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/smoke/rank1_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/smoke/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/smoke/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/smoke/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/smoke/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/smoke/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/smoke/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/smoke/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/smoke/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/emulation/smoke/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/emulation/smoke/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/extended/rank1_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/extended/rank1_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/extended/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/extended/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/extended/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/extended/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/extended/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/extended/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/extended/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/extended/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/extended/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/extended/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/reduction_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/reduction_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/validation/rank1_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/validation/rank1_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/validation/rank2_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/validation/rank2_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/validation/rank3_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/validation/rank3_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/validation/rank4_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/validation/rank4_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/validation/rank5_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/validation/rank5_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/configs/validation/rank6_test_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/configs/validation/rank6_test_params.yaml -------------------------------------------------------------------------------- /test/03_reduction/rank1_reduction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/rank1_reduction_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/rank2_reduction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/rank2_reduction_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/rank3_reduction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/rank3_reduction_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/rank4_reduction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/rank4_reduction_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/rank5_reduction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/rank5_reduction_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/rank6_reduction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/rank6_reduction_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/reduction_cpu_impl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_cpu_impl_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/reduction_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_resource.cpp -------------------------------------------------------------------------------- /test/03_reduction/reduction_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_resource.hpp -------------------------------------------------------------------------------- /test/03_reduction/reduction_sample_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_sample_config.yaml -------------------------------------------------------------------------------- /test/03_reduction/reduction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_test.cpp -------------------------------------------------------------------------------- /test/03_reduction/reduction_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_test.hpp -------------------------------------------------------------------------------- /test/03_reduction/reduction_test_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_test_helpers.hpp -------------------------------------------------------------------------------- /test/03_reduction/reduction_test_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/03_reduction/reduction_test_params.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/common.hpp -------------------------------------------------------------------------------- /test/device/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/device/common.hpp -------------------------------------------------------------------------------- /test/hip_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/hip_resource.cpp -------------------------------------------------------------------------------- /test/hip_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/hip_resource.hpp -------------------------------------------------------------------------------- /test/hiptensor-test-yaml.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/hiptensor-test-yaml.hpp.in -------------------------------------------------------------------------------- /test/hiptensor_gtest_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/hiptensor_gtest_main.cpp -------------------------------------------------------------------------------- /test/hiptensor_length_generation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/hiptensor_length_generation.hpp -------------------------------------------------------------------------------- /test/llvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/llvm/CMakeLists.txt -------------------------------------------------------------------------------- /test/llvm/command_line_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/llvm/command_line_parser.cpp -------------------------------------------------------------------------------- /test/llvm/command_line_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/llvm/command_line_parser.hpp -------------------------------------------------------------------------------- /test/llvm/yaml_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/llvm/yaml_parser.hpp -------------------------------------------------------------------------------- /test/llvm/yaml_parser_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/llvm/yaml_parser_config.cpp -------------------------------------------------------------------------------- /test/llvm/yaml_parser_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/llvm/yaml_parser_impl.hpp -------------------------------------------------------------------------------- /test/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/type_traits.hpp -------------------------------------------------------------------------------- /test/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/hipTensor/HEAD/test/utils.hpp --------------------------------------------------------------------------------