├── .azuredevops └── rocm-ci.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ └── issue_report.yml ├── dependabot.yml └── workflows │ └── markdownlint.yml ├── .gitignore ├── .mdlrc ├── .readthedocs.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── bin ├── findcode.sh ├── findcode_custom.sh ├── findcode_headers.sh ├── findcode_sources.sh ├── finduncodep.sh ├── hipconvertinplace-perl.sh ├── hipconvertinplace.sh ├── hipexamine-perl.sh ├── hipexamine.sh └── hipify-perl ├── docs ├── building │ ├── build-hipify-clang-linux.rst │ ├── build-hipify-clang-windows.rst │ └── build-hipify-perl.rst ├── conf.py ├── data │ ├── csv_statistics.png │ └── patches │ │ ├── patch_for_clang_10.0.0_bug_47332.zip │ │ ├── patch_for_clang_10.0.1_bug_47332.zip │ │ ├── patch_for_clang_11.0.0_bug_47332.zip │ │ ├── patch_for_clang_14.0.0_bug_54609.zip │ │ ├── patch_for_clang_14.0.1_bug_54609.zip │ │ ├── patch_for_clang_14.0.2_bug_54609.zip │ │ ├── patch_for_clang_14.0.3_bug_54609.zip │ │ ├── patch_for_clang_14.0.4_bug_54609.zip │ │ ├── patch_for_clang_7.0.0_bug_38811.zip │ │ ├── patch_for_clang_7.0.1_bug_38811.zip │ │ ├── patch_for_clang_7.1.0_bug_38811.zip │ │ ├── patch_for_clang_8.0.0_bug_38811.zip │ │ └── patch_for_clang_8.0.1_bug_38811.zip ├── how-to │ ├── hipify-clang.rst │ └── hipify-perl.rst ├── index.rst ├── license.md ├── reference │ ├── hip_roc_supported_apis.md │ ├── hip_supported_apis.md │ ├── hipify-clang-cmd.rst │ ├── hipify-perl-cmd.rst │ ├── roc_supported_apis.md │ ├── supported_apis.md │ └── tables │ │ ├── CUBLAS_API_supported_by_HIP.md │ │ ├── CUBLAS_API_supported_by_HIP_and_ROC.md │ │ ├── CUBLAS_API_supported_by_ROC.md │ │ ├── CUB_API_supported_by_HIP.md │ │ ├── CUDA_Device_API_supported_by_HIP.md │ │ ├── CUDA_Driver_API_functions_supported_by_HIP.md │ │ ├── CUDA_RTC_API_supported_by_HIP.md │ │ ├── CUDA_Runtime_API_functions_supported_by_HIP.md │ │ ├── CUDNN_API_supported_by_MIOPEN.md │ │ ├── CUFFT_API_supported_by_HIP.md │ │ ├── CURAND_API_supported_by_HIP.md │ │ ├── CURAND_API_supported_by_HIP_and_ROC.md │ │ ├── CURAND_API_supported_by_ROC.md │ │ ├── CUSOLVER_API_supported_by_HIP.md │ │ ├── CUSOLVER_API_supported_by_HIP_and_ROC.md │ │ ├── CUSOLVER_API_supported_by_ROC.md │ │ ├── CUSPARSE_API_supported_by_HIP.md │ │ ├── CUSPARSE_API_supported_by_HIP_and_ROC.md │ │ ├── CUSPARSE_API_supported_by_ROC.md │ │ ├── CUTENSOR_API_supported_by_HIP.md │ │ └── cuComplex_API_supported_by_HIP.md └── sphinx │ ├── _toc.yml.in │ ├── requirements.in │ └── requirements.txt ├── mdlrc-style.rb ├── packaging ├── hipify-clang.postinst ├── hipify-clang.prerm ├── hipify-clang.rpm_post ├── hipify-clang.rpm_postun └── hipify-clang.txt ├── src ├── ArgParse.cpp ├── ArgParse.h ├── CUDA2HIP.cpp ├── CUDA2HIP.h ├── CUDA2HIP_BLAS_API_functions.cpp ├── CUDA2HIP_BLAS_API_types.cpp ├── CUDA2HIP_CAFFE2_API_functions.cpp ├── CUDA2HIP_CAFFE2_API_types.cpp ├── CUDA2HIP_CUB_API_functions.cpp ├── CUDA2HIP_CUB_API_types.cpp ├── CUDA2HIP_Complex_API_functions.cpp ├── CUDA2HIP_Complex_API_types.cpp ├── CUDA2HIP_DNN_API_functions.cpp ├── CUDA2HIP_DNN_API_types.cpp ├── CUDA2HIP_Device_functions.cpp ├── CUDA2HIP_Device_types.cpp ├── CUDA2HIP_Doc.cpp ├── CUDA2HIP_Driver_API_functions.cpp ├── CUDA2HIP_Driver_API_types.cpp ├── CUDA2HIP_FFT_API_functions.cpp ├── CUDA2HIP_FFT_API_types.cpp ├── CUDA2HIP_Perl.cpp ├── CUDA2HIP_Python.cpp ├── CUDA2HIP_RAND_API_functions.cpp ├── CUDA2HIP_RAND_API_types.cpp ├── CUDA2HIP_RTC_API_functions.cpp ├── CUDA2HIP_RTC_API_types.cpp ├── CUDA2HIP_Runtime_API_functions.cpp ├── CUDA2HIP_Runtime_API_types.cpp ├── CUDA2HIP_SOLVER_API_functions.cpp ├── CUDA2HIP_SOLVER_API_types.cpp ├── CUDA2HIP_SPARSE_API_functions.cpp ├── CUDA2HIP_SPARSE_API_types.cpp ├── CUDA2HIP_Scripting.h ├── CUDA2HIP_TENSOR_API_functions.cpp ├── CUDA2HIP_TENSOR_API_types.cpp ├── HipifyAction.cpp ├── HipifyAction.h ├── LLVMCompat.cpp ├── LLVMCompat.h ├── LocalHeader.cpp ├── LocalHeader.h ├── ReplacementsFrontendActionFactory.h ├── Statistics.cpp ├── Statistics.h ├── StringUtils.cpp ├── StringUtils.h └── main.cpp └── tests ├── lit.cfg ├── lit.site.cfg.in ├── run_test.bat ├── run_test.sh └── unit_tests ├── casts └── reinterpret_cast.cu ├── compilation_database ├── compilation_database_13000 │ ├── cd_intro.cu │ ├── compile_commands.json.in │ └── include │ │ └── inc.h └── compilation_database_before_13000 │ ├── cd_intro_before_13000.cu │ ├── compile_commands.json.in │ └── include │ └── inc.h ├── device ├── atomics.cu ├── device_symbols.cu └── math_functions.cu ├── graph └── simple_mechs.cu ├── headers ├── headers_test_01.cu ├── headers_test_02.cu ├── headers_test_03.cu ├── headers_test_04.cu ├── headers_test_05.cu ├── headers_test_06.cu ├── headers_test_06_12000.cu ├── headers_test_07.cu ├── headers_test_07_12000.cu ├── headers_test_08.cu ├── headers_test_08_12000.cu ├── headers_test_09.cu ├── headers_test_09_12000.cu ├── headers_test_09_bf16_11000.cu ├── headers_test_09_fp16_7050.cu ├── headers_test_09_rocrand.cu ├── headers_test_09_rocrand_before_13000.cu ├── headers_test_10.cu ├── headers_test_11.cu ├── headers_test_12_SOLVER.cu ├── headers_test_12_SOLVER_10010.cu ├── headers_test_12_SOLVER_7050.cu ├── headers_test_13.cu └── local_headers │ ├── angle_bracket.cu │ ├── common.h │ ├── cyclic_header.cu │ ├── duplicate.h │ ├── duplicate_header.cu │ ├── local_angle.h │ ├── main.cu │ ├── mixed.h │ ├── no_local_headers.cu │ ├── non_cuda.h │ ├── non_cuda_header.cu │ ├── rec_1.h │ ├── recursive-header.cu │ ├── relative │ ├── common1.h │ └── sub │ │ └── common2.h │ ├── relative_path.cu │ ├── shared.h │ ├── shared_header_1.cu │ ├── shared_header_2.cu │ ├── single_header.cu │ ├── single_header.h │ └── stress_test.cu ├── kernel_launch ├── kernel_launch_01.cu └── kernel_launch_syntax.cu ├── libraries ├── CAFFE2 │ ├── caffe2 │ │ ├── core │ │ │ └── common_cudnn.h │ │ └── operators │ │ │ └── spatial_batch_norm_op.h │ ├── caffe2_01.cu │ └── caffe2_02.cu ├── CUB │ ├── cub_01.cu │ ├── cub_02.cu │ └── cub_03.cu ├── cuBLAS │ ├── cublas_0_based_indexing.cu │ ├── cublas_0_based_indexing_v2.cu │ ├── cublas_1_based_indexing.cu │ ├── cublas_sgemm_matrix_multiplication.cu │ ├── cublas_v1.cu │ └── rocBLAS │ │ ├── cublas_0_based_indexing_rocblas.cu │ │ ├── cublas_0_based_indexing_rocblas_v2.cu │ │ ├── cublas_1_based_indexing_rocblas.cu │ │ └── cublas_sgemm_matrix_multiplication_rocblas.cu ├── cuComplex │ └── cuComplex_Julia.cu ├── cuDNN │ ├── cudnn_convolution_forward.cu │ └── cudnn_softmax.cu ├── cuFFT │ └── simple_cufft.cu ├── cuRAND │ ├── benchmark_curand_generate.cpp │ ├── benchmark_curand_kernel.cpp │ ├── cmdparser.hpp │ └── poisson_api_example.cu └── cuSPARSE │ ├── cuSPARSE_01.cu │ ├── cuSPARSE_02.cu │ ├── cuSPARSE_03.cu │ ├── cuSPARSE_04.cu │ ├── cuSPARSE_05.cu │ ├── cuSPARSE_06.cu │ ├── cuSPARSE_07.cu │ ├── cuSPARSE_08.cu │ ├── cuSPARSE_09.cu │ ├── cuSPARSE_10.cu │ ├── cuSPARSE_11.cu │ └── cuSPARSE_12.cu ├── namespace └── ns_kernel_launch.cu ├── options └── kernel-execution-syntax │ ├── both-kernel-execution-syntax.cu │ ├── cuda-kernel-execution-syntax.cu │ ├── hip-kernel-execution-syntax.cu │ └── none-kernel-execution-syntax.cu ├── pp ├── pp_if_else_conditionals.cu ├── pp_if_else_conditionals_01.cu ├── pp_if_else_conditionals_01_LLVM_10.cu └── pp_if_else_conditionals_LLVM_10.cu ├── samples ├── 2_Cookbook │ ├── 0_MatrixTranspose │ │ └── MatrixTranspose.cpp │ ├── 11_texture_driver │ │ ├── tex2dKernel.cpp │ │ └── texture2dDrv.cpp │ ├── 13_occupancy │ │ └── occupancy.cpp │ ├── 1_hipEvent │ │ └── hipEvent.cpp │ ├── 2_Profiler │ │ └── Profiler.cpp │ ├── 7_streams │ │ └── stream.cpp │ └── 8_peer2peer │ │ └── peer2peer.cpp ├── MallocManaged.cpp ├── allocators.cu ├── axpy.cu ├── coalescing.cu ├── cudaRegister.cu ├── dynamic_shared_memory.cu ├── half2_allocators.cu ├── intro.cu ├── intro_before_13000.cu ├── macro_check.cu ├── reduction.cu ├── square.cu ├── static_shared_memory.cu └── vec_add.cu └── synthetic ├── driver_defines.cu ├── driver_enums.cu ├── driver_functions.cu ├── driver_functions_before_13000.cu ├── driver_functions_internal.cu ├── driver_structs.cu ├── driver_typedefs.cu ├── driver_unions.cu ├── libraries ├── cublas2hipblas.cu ├── cublas2hipblas_v2.cu ├── cublas2rocblas.cu ├── cublas2rocblas_v2.cu ├── cublaslt2hipblaslt.cu ├── cublaslt2hipblaslt_10010_10020.cu ├── cudevice2hipdevice.cu ├── cudevice2hipdevice_12080.cu ├── cudevice2hipdevice_before_11080_after_12011.cu ├── cudnn2miopen.cu ├── cudnn2miopen_before_9000.cu ├── cufftXt2hipfftXt.cu ├── cufftw2hipfftw.cu ├── curand2hiprand.cu ├── curand2rocrand.cu ├── cusolver2hipsolver.cu ├── cusolver2rocsolver.cu ├── cusparse2hipsparse.cu ├── cusparse2hipsparse_11030_12000.cu ├── cusparse2hipsparse_12000.cu ├── cusparse2rocsparse.cu ├── cusparse2rocsparse_10000.cu ├── cusparse2rocsparse_10010.cu ├── cusparse2rocsparse_10010_12000.cu ├── cusparse2rocsparse_11010_12000.cu ├── cusparse2rocsparse_11030_12000.cu ├── cusparse2rocsparse_12000.cu ├── cusparse2rocsparse_7050.cu ├── cusparse2rocsparse_9020.cu ├── cusparse2rocsparse_9020_12000.cu ├── cusparse2rocsparse_before_11000.cu ├── cusparse2rocsparse_before_12000.cu ├── cutensor2hiptensor.cu └── cutensor2hiptensor_before_20000.cu ├── nvrtc2hiprtc.cu ├── runtime_defines.cu ├── runtime_enums.cu ├── runtime_functions.cu ├── runtime_functions_11010.cu ├── runtime_functions_12000.cu ├── runtime_functions_9000.cu ├── runtime_functions_before_13000.cu ├── runtime_structs.cu ├── runtime_typedefs.cu ├── runtime_unions.cu └── transforming_matchers.cu /.azuredevops/rocm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.azuredevops/rocm-ci.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.github/ISSUE_TEMPLATE/issue_report.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.mdlrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/README.md -------------------------------------------------------------------------------- /bin/findcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/findcode.sh -------------------------------------------------------------------------------- /bin/findcode_custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/findcode_custom.sh -------------------------------------------------------------------------------- /bin/findcode_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/findcode_headers.sh -------------------------------------------------------------------------------- /bin/findcode_sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/findcode_sources.sh -------------------------------------------------------------------------------- /bin/finduncodep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/finduncodep.sh -------------------------------------------------------------------------------- /bin/hipconvertinplace-perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/hipconvertinplace-perl.sh -------------------------------------------------------------------------------- /bin/hipconvertinplace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/hipconvertinplace.sh -------------------------------------------------------------------------------- /bin/hipexamine-perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/hipexamine-perl.sh -------------------------------------------------------------------------------- /bin/hipexamine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/hipexamine.sh -------------------------------------------------------------------------------- /bin/hipify-perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/bin/hipify-perl -------------------------------------------------------------------------------- /docs/building/build-hipify-clang-linux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/building/build-hipify-clang-linux.rst -------------------------------------------------------------------------------- /docs/building/build-hipify-clang-windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/building/build-hipify-clang-windows.rst -------------------------------------------------------------------------------- /docs/building/build-hipify-perl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/building/build-hipify-perl.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/data/csv_statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/csv_statistics.png -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_10.0.0_bug_47332.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_10.0.0_bug_47332.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_10.0.1_bug_47332.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_10.0.1_bug_47332.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_11.0.0_bug_47332.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_11.0.0_bug_47332.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_14.0.0_bug_54609.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_14.0.0_bug_54609.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_14.0.1_bug_54609.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_14.0.1_bug_54609.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_14.0.2_bug_54609.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_14.0.2_bug_54609.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_14.0.3_bug_54609.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_14.0.3_bug_54609.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_14.0.4_bug_54609.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_14.0.4_bug_54609.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_7.0.0_bug_38811.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_7.0.0_bug_38811.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_7.0.1_bug_38811.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_7.0.1_bug_38811.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_7.1.0_bug_38811.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_7.1.0_bug_38811.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_8.0.0_bug_38811.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_8.0.0_bug_38811.zip -------------------------------------------------------------------------------- /docs/data/patches/patch_for_clang_8.0.1_bug_38811.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/data/patches/patch_for_clang_8.0.1_bug_38811.zip -------------------------------------------------------------------------------- /docs/how-to/hipify-clang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/how-to/hipify-clang.rst -------------------------------------------------------------------------------- /docs/how-to/hipify-perl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/how-to/hipify-perl.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/reference/hip_roc_supported_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/hip_roc_supported_apis.md -------------------------------------------------------------------------------- /docs/reference/hip_supported_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/hip_supported_apis.md -------------------------------------------------------------------------------- /docs/reference/hipify-clang-cmd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/hipify-clang-cmd.rst -------------------------------------------------------------------------------- /docs/reference/hipify-perl-cmd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/hipify-perl-cmd.rst -------------------------------------------------------------------------------- /docs/reference/roc_supported_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/roc_supported_apis.md -------------------------------------------------------------------------------- /docs/reference/supported_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/supported_apis.md -------------------------------------------------------------------------------- /docs/reference/tables/CUBLAS_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUBLAS_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUBLAS_API_supported_by_HIP_and_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUBLAS_API_supported_by_HIP_and_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CUBLAS_API_supported_by_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUBLAS_API_supported_by_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CUB_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUB_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUDA_Device_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUDA_Device_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUDA_Driver_API_functions_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUDA_Driver_API_functions_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUDA_RTC_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUDA_RTC_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUDA_Runtime_API_functions_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUDA_Runtime_API_functions_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUDNN_API_supported_by_MIOPEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUDNN_API_supported_by_MIOPEN.md -------------------------------------------------------------------------------- /docs/reference/tables/CUFFT_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUFFT_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CURAND_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CURAND_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CURAND_API_supported_by_HIP_and_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CURAND_API_supported_by_HIP_and_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CURAND_API_supported_by_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CURAND_API_supported_by_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CUSOLVER_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUSOLVER_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUSOLVER_API_supported_by_HIP_and_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUSOLVER_API_supported_by_HIP_and_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CUSOLVER_API_supported_by_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUSOLVER_API_supported_by_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CUSPARSE_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUSPARSE_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/CUSPARSE_API_supported_by_HIP_and_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUSPARSE_API_supported_by_HIP_and_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CUSPARSE_API_supported_by_ROC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUSPARSE_API_supported_by_ROC.md -------------------------------------------------------------------------------- /docs/reference/tables/CUTENSOR_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/CUTENSOR_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/reference/tables/cuComplex_API_supported_by_HIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/reference/tables/cuComplex_API_supported_by_HIP.md -------------------------------------------------------------------------------- /docs/sphinx/_toc.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/sphinx/_toc.yml.in -------------------------------------------------------------------------------- /docs/sphinx/requirements.in: -------------------------------------------------------------------------------- 1 | rocm-docs-core==1.30.1 2 | -------------------------------------------------------------------------------- /docs/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/docs/sphinx/requirements.txt -------------------------------------------------------------------------------- /mdlrc-style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/mdlrc-style.rb -------------------------------------------------------------------------------- /packaging/hipify-clang.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/packaging/hipify-clang.postinst -------------------------------------------------------------------------------- /packaging/hipify-clang.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/packaging/hipify-clang.prerm -------------------------------------------------------------------------------- /packaging/hipify-clang.rpm_post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/packaging/hipify-clang.rpm_post -------------------------------------------------------------------------------- /packaging/hipify-clang.rpm_postun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/packaging/hipify-clang.rpm_postun -------------------------------------------------------------------------------- /packaging/hipify-clang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/packaging/hipify-clang.txt -------------------------------------------------------------------------------- /src/ArgParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/ArgParse.cpp -------------------------------------------------------------------------------- /src/ArgParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/ArgParse.h -------------------------------------------------------------------------------- /src/CUDA2HIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP.h -------------------------------------------------------------------------------- /src/CUDA2HIP_BLAS_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_BLAS_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_BLAS_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_BLAS_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_CAFFE2_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_CAFFE2_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_CAFFE2_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_CAFFE2_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_CUB_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_CUB_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_CUB_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_CUB_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Complex_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Complex_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Complex_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Complex_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_DNN_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_DNN_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_DNN_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_DNN_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Device_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Device_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Device_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Device_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Doc.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Driver_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Driver_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Driver_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Driver_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_FFT_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_FFT_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_FFT_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_FFT_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Perl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Perl.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Python.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_RAND_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_RAND_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_RAND_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_RAND_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_RTC_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_RTC_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_RTC_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_RTC_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Runtime_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Runtime_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Runtime_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Runtime_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_SOLVER_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_SOLVER_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_SOLVER_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_SOLVER_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_SPARSE_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_SPARSE_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_SPARSE_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_SPARSE_API_types.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_Scripting.h -------------------------------------------------------------------------------- /src/CUDA2HIP_TENSOR_API_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_TENSOR_API_functions.cpp -------------------------------------------------------------------------------- /src/CUDA2HIP_TENSOR_API_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/CUDA2HIP_TENSOR_API_types.cpp -------------------------------------------------------------------------------- /src/HipifyAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/HipifyAction.cpp -------------------------------------------------------------------------------- /src/HipifyAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/HipifyAction.h -------------------------------------------------------------------------------- /src/LLVMCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/LLVMCompat.cpp -------------------------------------------------------------------------------- /src/LLVMCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/LLVMCompat.h -------------------------------------------------------------------------------- /src/LocalHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/LocalHeader.cpp -------------------------------------------------------------------------------- /src/LocalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/LocalHeader.h -------------------------------------------------------------------------------- /src/ReplacementsFrontendActionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/ReplacementsFrontendActionFactory.h -------------------------------------------------------------------------------- /src/Statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/Statistics.cpp -------------------------------------------------------------------------------- /src/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/Statistics.h -------------------------------------------------------------------------------- /src/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/StringUtils.cpp -------------------------------------------------------------------------------- /src/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/StringUtils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tests/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/lit.cfg -------------------------------------------------------------------------------- /tests/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/lit.site.cfg.in -------------------------------------------------------------------------------- /tests/run_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/run_test.bat -------------------------------------------------------------------------------- /tests/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/run_test.sh -------------------------------------------------------------------------------- /tests/unit_tests/casts/reinterpret_cast.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/casts/reinterpret_cast.cu -------------------------------------------------------------------------------- /tests/unit_tests/compilation_database/compilation_database_13000/cd_intro.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/compilation_database/compilation_database_13000/cd_intro.cu -------------------------------------------------------------------------------- /tests/unit_tests/compilation_database/compilation_database_13000/compile_commands.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/compilation_database/compilation_database_13000/compile_commands.json.in -------------------------------------------------------------------------------- /tests/unit_tests/compilation_database/compilation_database_13000/include/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/compilation_database/compilation_database_13000/include/inc.h -------------------------------------------------------------------------------- /tests/unit_tests/compilation_database/compilation_database_before_13000/cd_intro_before_13000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/compilation_database/compilation_database_before_13000/cd_intro_before_13000.cu -------------------------------------------------------------------------------- /tests/unit_tests/compilation_database/compilation_database_before_13000/compile_commands.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/compilation_database/compilation_database_before_13000/compile_commands.json.in -------------------------------------------------------------------------------- /tests/unit_tests/compilation_database/compilation_database_before_13000/include/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/compilation_database/compilation_database_before_13000/include/inc.h -------------------------------------------------------------------------------- /tests/unit_tests/device/atomics.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/device/atomics.cu -------------------------------------------------------------------------------- /tests/unit_tests/device/device_symbols.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/device/device_symbols.cu -------------------------------------------------------------------------------- /tests/unit_tests/device/math_functions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/device/math_functions.cu -------------------------------------------------------------------------------- /tests/unit_tests/graph/simple_mechs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/graph/simple_mechs.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_01.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_01.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_02.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_02.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_03.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_03.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_04.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_04.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_05.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_05.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_06.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_06.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_06_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_06_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_07.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_07.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_07_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_07_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_08.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_08.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_08_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_08_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_09.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_09.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_09_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_09_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_09_bf16_11000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_09_bf16_11000.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_09_fp16_7050.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_09_fp16_7050.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_09_rocrand.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_09_rocrand.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_09_rocrand_before_13000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_09_rocrand_before_13000.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_10.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_10.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_11.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_12_SOLVER.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_12_SOLVER.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_12_SOLVER_10010.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_12_SOLVER_10010.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_12_SOLVER_7050.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_12_SOLVER_7050.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/headers_test_13.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/headers_test_13.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/angle_bracket.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/angle_bracket.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/common.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/cyclic_header.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/cyclic_header.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/duplicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/duplicate.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/duplicate_header.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/duplicate_header.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/local_angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/local_angle.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/main.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/main.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/mixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/mixed.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/no_local_headers.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/no_local_headers.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/non_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/non_cuda.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/non_cuda_header.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/non_cuda_header.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/rec_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/rec_1.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/recursive-header.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/recursive-header.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/relative/common1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/relative/common1.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/relative/sub/common2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/relative/sub/common2.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/relative_path.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/relative_path.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/shared.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/shared_header_1.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/shared_header_1.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/shared_header_2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/shared_header_2.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/single_header.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/single_header.cu -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/single_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/single_header.h -------------------------------------------------------------------------------- /tests/unit_tests/headers/local_headers/stress_test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/headers/local_headers/stress_test.cu -------------------------------------------------------------------------------- /tests/unit_tests/kernel_launch/kernel_launch_01.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/kernel_launch/kernel_launch_01.cu -------------------------------------------------------------------------------- /tests/unit_tests/kernel_launch/kernel_launch_syntax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/kernel_launch/kernel_launch_syntax.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/CAFFE2/caffe2/core/common_cudnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/CAFFE2/caffe2/core/common_cudnn.h -------------------------------------------------------------------------------- /tests/unit_tests/libraries/CAFFE2/caffe2/operators/spatial_batch_norm_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/CAFFE2/caffe2/operators/spatial_batch_norm_op.h -------------------------------------------------------------------------------- /tests/unit_tests/libraries/CAFFE2/caffe2_01.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/CAFFE2/caffe2_01.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/CAFFE2/caffe2_02.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/CAFFE2/caffe2_02.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/CUB/cub_01.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/CUB/cub_01.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/CUB/cub_02.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/CUB/cub_02.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/CUB/cub_03.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/CUB/cub_03.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/cublas_0_based_indexing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/cublas_0_based_indexing.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/cublas_0_based_indexing_v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/cublas_0_based_indexing_v2.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/cublas_1_based_indexing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/cublas_1_based_indexing.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/cublas_sgemm_matrix_multiplication.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/cublas_sgemm_matrix_multiplication.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/cublas_v1.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/cublas_v1.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_0_based_indexing_rocblas.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_0_based_indexing_rocblas.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_0_based_indexing_rocblas_v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_0_based_indexing_rocblas_v2.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_1_based_indexing_rocblas.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_1_based_indexing_rocblas.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_sgemm_matrix_multiplication_rocblas.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuBLAS/rocBLAS/cublas_sgemm_matrix_multiplication_rocblas.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuComplex/cuComplex_Julia.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuComplex/cuComplex_Julia.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuDNN/cudnn_convolution_forward.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuDNN/cudnn_convolution_forward.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuDNN/cudnn_softmax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuDNN/cudnn_softmax.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuFFT/simple_cufft.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuFFT/simple_cufft.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuRAND/benchmark_curand_generate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuRAND/benchmark_curand_generate.cpp -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuRAND/benchmark_curand_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuRAND/benchmark_curand_kernel.cpp -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuRAND/cmdparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuRAND/cmdparser.hpp -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuRAND/poisson_api_example.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuRAND/poisson_api_example.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_01.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_01.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_02.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_02.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_03.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_03.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_04.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_04.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_05.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_05.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_06.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_06.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_07.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_07.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_08.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_08.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_09.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_09.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_10.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_10.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_11.cu -------------------------------------------------------------------------------- /tests/unit_tests/libraries/cuSPARSE/cuSPARSE_12.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/libraries/cuSPARSE/cuSPARSE_12.cu -------------------------------------------------------------------------------- /tests/unit_tests/namespace/ns_kernel_launch.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/namespace/ns_kernel_launch.cu -------------------------------------------------------------------------------- /tests/unit_tests/options/kernel-execution-syntax/both-kernel-execution-syntax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/options/kernel-execution-syntax/both-kernel-execution-syntax.cu -------------------------------------------------------------------------------- /tests/unit_tests/options/kernel-execution-syntax/cuda-kernel-execution-syntax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/options/kernel-execution-syntax/cuda-kernel-execution-syntax.cu -------------------------------------------------------------------------------- /tests/unit_tests/options/kernel-execution-syntax/hip-kernel-execution-syntax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/options/kernel-execution-syntax/hip-kernel-execution-syntax.cu -------------------------------------------------------------------------------- /tests/unit_tests/options/kernel-execution-syntax/none-kernel-execution-syntax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/options/kernel-execution-syntax/none-kernel-execution-syntax.cu -------------------------------------------------------------------------------- /tests/unit_tests/pp/pp_if_else_conditionals.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/pp/pp_if_else_conditionals.cu -------------------------------------------------------------------------------- /tests/unit_tests/pp/pp_if_else_conditionals_01.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/pp/pp_if_else_conditionals_01.cu -------------------------------------------------------------------------------- /tests/unit_tests/pp/pp_if_else_conditionals_01_LLVM_10.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/pp/pp_if_else_conditionals_01_LLVM_10.cu -------------------------------------------------------------------------------- /tests/unit_tests/pp/pp_if_else_conditionals_LLVM_10.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/pp/pp_if_else_conditionals_LLVM_10.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/0_MatrixTranspose/MatrixTranspose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/0_MatrixTranspose/MatrixTranspose.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/11_texture_driver/tex2dKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/11_texture_driver/tex2dKernel.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/11_texture_driver/texture2dDrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/11_texture_driver/texture2dDrv.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/13_occupancy/occupancy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/13_occupancy/occupancy.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/1_hipEvent/hipEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/1_hipEvent/hipEvent.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/2_Profiler/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/2_Profiler/Profiler.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/7_streams/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/7_streams/stream.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/2_Cookbook/8_peer2peer/peer2peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/2_Cookbook/8_peer2peer/peer2peer.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/MallocManaged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/MallocManaged.cpp -------------------------------------------------------------------------------- /tests/unit_tests/samples/allocators.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/allocators.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/axpy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/axpy.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/coalescing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/coalescing.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/cudaRegister.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/cudaRegister.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/dynamic_shared_memory.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/dynamic_shared_memory.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/half2_allocators.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/half2_allocators.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/intro.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/intro.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/intro_before_13000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/intro_before_13000.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/macro_check.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/macro_check.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/reduction.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/reduction.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/square.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/square.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/static_shared_memory.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/static_shared_memory.cu -------------------------------------------------------------------------------- /tests/unit_tests/samples/vec_add.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/samples/vec_add.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_defines.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_defines.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_enums.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_enums.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_functions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_functions.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_functions_before_13000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_functions_before_13000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_functions_internal.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_functions_internal.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_structs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_structs.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_typedefs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_typedefs.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/driver_unions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/driver_unions.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cublas2hipblas.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cublas2hipblas.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cublas2hipblas_v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cublas2hipblas_v2.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cublas2rocblas.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cublas2rocblas.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cublas2rocblas_v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cublas2rocblas_v2.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cublaslt2hipblaslt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cublaslt2hipblaslt.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cublaslt2hipblaslt_10010_10020.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cublaslt2hipblaslt_10010_10020.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cudevice2hipdevice.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cudevice2hipdevice.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cudevice2hipdevice_12080.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cudevice2hipdevice_12080.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cudevice2hipdevice_before_11080_after_12011.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cudevice2hipdevice_before_11080_after_12011.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cudnn2miopen.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cudnn2miopen.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cudnn2miopen_before_9000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cudnn2miopen_before_9000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cufftXt2hipfftXt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cufftXt2hipfftXt.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cufftw2hipfftw.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cufftw2hipfftw.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/curand2hiprand.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/curand2hiprand.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/curand2rocrand.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/curand2rocrand.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusolver2hipsolver.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusolver2hipsolver.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusolver2rocsolver.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusolver2rocsolver.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2hipsparse.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2hipsparse.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2hipsparse_11030_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2hipsparse_11030_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2hipsparse_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2hipsparse_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_10000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_10000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_10010.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_10010.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_10010_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_10010_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_11010_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_11010_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_11030_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_11030_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_7050.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_7050.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_9020.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_9020.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_9020_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_9020_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_before_11000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_before_11000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cusparse2rocsparse_before_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cusparse2rocsparse_before_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cutensor2hiptensor.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cutensor2hiptensor.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/libraries/cutensor2hiptensor_before_20000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/libraries/cutensor2hiptensor_before_20000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/nvrtc2hiprtc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/nvrtc2hiprtc.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_defines.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_defines.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_enums.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_enums.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_functions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_functions.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_functions_11010.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_functions_11010.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_functions_12000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_functions_12000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_functions_9000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_functions_9000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_functions_before_13000.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_functions_before_13000.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_structs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_structs.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_typedefs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_typedefs.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/runtime_unions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/runtime_unions.cu -------------------------------------------------------------------------------- /tests/unit_tests/synthetic/transforming_matchers.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROCm/HIPIFY/HEAD/tests/unit_tests/synthetic/transforming_matchers.cu --------------------------------------------------------------------------------