├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── 00.rocm-core.sh ├── 11.rocm-llvm.sh ├── 12.roct-thunk-interface.sh ├── 13.rocm-cmake.sh ├── 14.rocm-device-libs.sh ├── 15.rocr-runtime.sh ├── 16.rocminfo.sh ├── 17.rocm-compilersupport.sh ├── 18.hip.sh ├── 21.rocfft.sh ├── 22.rocblas.sh ├── 23.rocprim.sh ├── 24.rocrand.sh ├── 25.rocsparse.sh ├── 26.hipsparse.sh ├── 27.rocm_smi_lib.sh ├── 28.rccl.sh ├── 29.hipfft.sh ├── 31.rocm-opencl-runtime.sh ├── 32.clang-ocl.sh ├── 33.rocprofiler.sh ├── 34.roctracer.sh ├── 35.half.sh ├── 36.miopen.sh ├── 37.rocm-utils.sh ├── 41.rocdbgapi.sh ├── 42.rocgdb.sh ├── 43.rocm-dev.sh ├── 51.rocsolver.sh ├── 52.rocthrust.sh ├── 53.hipblas.sh ├── 54.rocalution.sh ├── 55.hipcub.sh ├── 56.hipsolver.sh ├── 57.rocm-libs.sh ├── 61.amdmigraphx.sh ├── 62.rock-dkms.sh ├── 71.rocm_bandwidth_test.sh ├── 72.hipfort.sh ├── 73.rocmvalidationsuite.sh ├── 74.rocr_debug_agent.sh ├── 75.hipify.sh ├── LICENSE ├── README.md ├── README_zh_CN.md ├── check ├── README.md ├── README_zh_CN.md ├── check.sh ├── gpu.bmp ├── gpu_out.bmp ├── include │ ├── d_vector.hpp │ ├── device_vector.hpp │ └── device_vector2.hpp ├── run-hip.sh ├── run-miopen-img.sh ├── run-miopen.sh ├── run-opencl.sh ├── run-rocblas.sh ├── run-rocblas2.sh ├── run-rocblas3.sh ├── run-rocblas4.sh ├── run-rocfft.sh ├── run-rocrand.sh ├── run-rocsparse.sh ├── src │ ├── hello_hip.cpp │ ├── hello_hipblas.cpp │ ├── hello_hipcub.cpp │ ├── hello_hipfft.cpp │ ├── hello_hiprand.cpp │ ├── hello_hipsparse.cpp │ ├── hello_miopen.cpp │ ├── hello_rccl.cpp │ ├── hello_rocalution.cpp │ ├── hello_rocblas.cpp │ ├── hello_rocfft.cpp │ ├── hello_rocprim.cpp │ ├── hello_rocrand.cpp │ ├── hello_rocsolver.cpp │ ├── hello_rocsparse.cpp │ ├── hello_rocthrust.cpp │ ├── libbmp.cpp │ ├── libbmp.h │ ├── test_hip.cpp │ ├── test_miopen.cpp │ ├── test_miopen_img.cpp │ ├── test_opencl.cpp │ ├── test_rocblas.cpp │ ├── test_rocblas2.cpp │ ├── test_rocblas3.cpp │ ├── test_rocblas4.cpp │ ├── test_rocfft.cpp │ ├── test_rocrand.cpp │ └── test_rocsparse.cpp ├── test-pytorch-device.py ├── test-pytorch-fc.py └── test-pytorch-rocblas.py ├── env.sh ├── gfx803 ├── 22.rocblas.sh ├── README.md ├── README_zh_CN.md ├── src │ └── test_rocblas.cpp ├── test-pytorch-rocblas.py └── test.sh ├── install-dependency.sh ├── local ├── 12.roct-thunk-interface.sh ├── 22.rocblas.sh ├── 36.miopen.sh ├── 61.amdmigraphx.sh ├── all.sh ├── create-repo-ubuntu2204.sh ├── miopen-mlir.sh ├── patch-ubuntu2204.sh ├── prepare-all.sh ├── prepare-boost.sh ├── prepare-cmake.sh ├── prepare-fmt.sh └── prepare-json.sh ├── meta └── rock-dkms_5.3-63_all │ ├── DEBIAN │ ├── conffiles │ ├── control │ ├── postinst │ └── prerm │ ├── etc │ ├── modprobe.d │ │ └── blacklist-radeon.conf │ └── udev │ │ └── rules.d │ │ └── 70-amdgpu.rules │ └── usr │ └── share │ ├── dkms │ └── modules_to_force_install │ │ └── amdgpu │ └── doc │ └── amdgpu-dkms │ └── examples │ └── wattman-example-script ├── navi10 ├── 22.rocblas.sh ├── 25.rocsparse.sh ├── README.md └── README_zh_CN.md ├── navi14 ├── 22.rocblas.sh ├── 25.rocsparse.sh ├── README.md └── README_zh_CN.md ├── patch ├── 18.hip-ubuntu2204-1.patch ├── 18.hipamd-ubuntu2204-1.patch ├── 22.tensile-gfx1010-1.patch ├── 22.tensile-gfx1012-1.patch ├── 22.tensile-gfx803-1.patch ├── 23.rocprim-ubuntu2204-1.patch ├── 24.rocrand-gitmodules-1.patch ├── 25.rocsparse-gfx10-1.patch ├── 27.rocm_smi_lib-version-1.patch ├── 33.rocprofile-aql-1.patch ├── 33.rocprofile-aql.patch ├── 34.roctracer-ubuntu2204-01.patch ├── 51.rocsolver-ubuntu2204-1.patch └── 73.rocmvalidationsuite-ubuntu2204-1.patch ├── src ├── rocm-core │ ├── .info │ │ └── version.in │ ├── CMakeLists.txt │ └── include │ │ └── rocm_version.h.in ├── rocm-dev │ ├── .info │ │ └── version-dev.in │ └── CMakeLists.txt ├── rocm-libs │ ├── .info │ │ └── version-libs.in │ └── CMakeLists.txt └── rocm-utils │ ├── .info │ └── version-utils.in │ └── CMakeLists.txt └── ubuntu2204 ├── README.md └── README_zh_CN.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @xuhuisheng 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/.gitignore -------------------------------------------------------------------------------- /00.rocm-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/00.rocm-core.sh -------------------------------------------------------------------------------- /11.rocm-llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/11.rocm-llvm.sh -------------------------------------------------------------------------------- /12.roct-thunk-interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/12.roct-thunk-interface.sh -------------------------------------------------------------------------------- /13.rocm-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/13.rocm-cmake.sh -------------------------------------------------------------------------------- /14.rocm-device-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/14.rocm-device-libs.sh -------------------------------------------------------------------------------- /15.rocr-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/15.rocr-runtime.sh -------------------------------------------------------------------------------- /16.rocminfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/16.rocminfo.sh -------------------------------------------------------------------------------- /17.rocm-compilersupport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/17.rocm-compilersupport.sh -------------------------------------------------------------------------------- /18.hip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/18.hip.sh -------------------------------------------------------------------------------- /21.rocfft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/21.rocfft.sh -------------------------------------------------------------------------------- /22.rocblas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/22.rocblas.sh -------------------------------------------------------------------------------- /23.rocprim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/23.rocprim.sh -------------------------------------------------------------------------------- /24.rocrand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/24.rocrand.sh -------------------------------------------------------------------------------- /25.rocsparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/25.rocsparse.sh -------------------------------------------------------------------------------- /26.hipsparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/26.hipsparse.sh -------------------------------------------------------------------------------- /27.rocm_smi_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/27.rocm_smi_lib.sh -------------------------------------------------------------------------------- /28.rccl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/28.rccl.sh -------------------------------------------------------------------------------- /29.hipfft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/29.hipfft.sh -------------------------------------------------------------------------------- /31.rocm-opencl-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/31.rocm-opencl-runtime.sh -------------------------------------------------------------------------------- /32.clang-ocl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/32.clang-ocl.sh -------------------------------------------------------------------------------- /33.rocprofiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/33.rocprofiler.sh -------------------------------------------------------------------------------- /34.roctracer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/34.roctracer.sh -------------------------------------------------------------------------------- /35.half.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/35.half.sh -------------------------------------------------------------------------------- /36.miopen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/36.miopen.sh -------------------------------------------------------------------------------- /37.rocm-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/37.rocm-utils.sh -------------------------------------------------------------------------------- /41.rocdbgapi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/41.rocdbgapi.sh -------------------------------------------------------------------------------- /42.rocgdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/42.rocgdb.sh -------------------------------------------------------------------------------- /43.rocm-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/43.rocm-dev.sh -------------------------------------------------------------------------------- /51.rocsolver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/51.rocsolver.sh -------------------------------------------------------------------------------- /52.rocthrust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/52.rocthrust.sh -------------------------------------------------------------------------------- /53.hipblas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/53.hipblas.sh -------------------------------------------------------------------------------- /54.rocalution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/54.rocalution.sh -------------------------------------------------------------------------------- /55.hipcub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/55.hipcub.sh -------------------------------------------------------------------------------- /56.hipsolver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/56.hipsolver.sh -------------------------------------------------------------------------------- /57.rocm-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/57.rocm-libs.sh -------------------------------------------------------------------------------- /61.amdmigraphx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/61.amdmigraphx.sh -------------------------------------------------------------------------------- /62.rock-dkms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/62.rock-dkms.sh -------------------------------------------------------------------------------- /71.rocm_bandwidth_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/71.rocm_bandwidth_test.sh -------------------------------------------------------------------------------- /72.hipfort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/72.hipfort.sh -------------------------------------------------------------------------------- /73.rocmvalidationsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/73.rocmvalidationsuite.sh -------------------------------------------------------------------------------- /74.rocr_debug_agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/74.rocr_debug_agent.sh -------------------------------------------------------------------------------- /75.hipify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/75.hipify.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/README.md -------------------------------------------------------------------------------- /check/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/README_zh_CN.md -------------------------------------------------------------------------------- /check/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/check.sh -------------------------------------------------------------------------------- /check/gpu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/gpu.bmp -------------------------------------------------------------------------------- /check/gpu_out.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/gpu_out.bmp -------------------------------------------------------------------------------- /check/include/d_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/include/d_vector.hpp -------------------------------------------------------------------------------- /check/include/device_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/include/device_vector.hpp -------------------------------------------------------------------------------- /check/include/device_vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/include/device_vector2.hpp -------------------------------------------------------------------------------- /check/run-hip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-hip.sh -------------------------------------------------------------------------------- /check/run-miopen-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-miopen-img.sh -------------------------------------------------------------------------------- /check/run-miopen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-miopen.sh -------------------------------------------------------------------------------- /check/run-opencl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-opencl.sh -------------------------------------------------------------------------------- /check/run-rocblas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-rocblas.sh -------------------------------------------------------------------------------- /check/run-rocblas2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-rocblas2.sh -------------------------------------------------------------------------------- /check/run-rocblas3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-rocblas3.sh -------------------------------------------------------------------------------- /check/run-rocblas4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-rocblas4.sh -------------------------------------------------------------------------------- /check/run-rocfft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-rocfft.sh -------------------------------------------------------------------------------- /check/run-rocrand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-rocrand.sh -------------------------------------------------------------------------------- /check/run-rocsparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/run-rocsparse.sh -------------------------------------------------------------------------------- /check/src/hello_hip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_hip.cpp -------------------------------------------------------------------------------- /check/src/hello_hipblas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_hipblas.cpp -------------------------------------------------------------------------------- /check/src/hello_hipcub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_hipcub.cpp -------------------------------------------------------------------------------- /check/src/hello_hipfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_hipfft.cpp -------------------------------------------------------------------------------- /check/src/hello_hiprand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_hiprand.cpp -------------------------------------------------------------------------------- /check/src/hello_hipsparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_hipsparse.cpp -------------------------------------------------------------------------------- /check/src/hello_miopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_miopen.cpp -------------------------------------------------------------------------------- /check/src/hello_rccl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rccl.cpp -------------------------------------------------------------------------------- /check/src/hello_rocalution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocalution.cpp -------------------------------------------------------------------------------- /check/src/hello_rocblas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocblas.cpp -------------------------------------------------------------------------------- /check/src/hello_rocfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocfft.cpp -------------------------------------------------------------------------------- /check/src/hello_rocprim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocprim.cpp -------------------------------------------------------------------------------- /check/src/hello_rocrand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocrand.cpp -------------------------------------------------------------------------------- /check/src/hello_rocsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocsolver.cpp -------------------------------------------------------------------------------- /check/src/hello_rocsparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocsparse.cpp -------------------------------------------------------------------------------- /check/src/hello_rocthrust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/hello_rocthrust.cpp -------------------------------------------------------------------------------- /check/src/libbmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/libbmp.cpp -------------------------------------------------------------------------------- /check/src/libbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/libbmp.h -------------------------------------------------------------------------------- /check/src/test_hip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_hip.cpp -------------------------------------------------------------------------------- /check/src/test_miopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_miopen.cpp -------------------------------------------------------------------------------- /check/src/test_miopen_img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_miopen_img.cpp -------------------------------------------------------------------------------- /check/src/test_opencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_opencl.cpp -------------------------------------------------------------------------------- /check/src/test_rocblas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_rocblas.cpp -------------------------------------------------------------------------------- /check/src/test_rocblas2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_rocblas2.cpp -------------------------------------------------------------------------------- /check/src/test_rocblas3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_rocblas3.cpp -------------------------------------------------------------------------------- /check/src/test_rocblas4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_rocblas4.cpp -------------------------------------------------------------------------------- /check/src/test_rocfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_rocfft.cpp -------------------------------------------------------------------------------- /check/src/test_rocrand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_rocrand.cpp -------------------------------------------------------------------------------- /check/src/test_rocsparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/src/test_rocsparse.cpp -------------------------------------------------------------------------------- /check/test-pytorch-device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/test-pytorch-device.py -------------------------------------------------------------------------------- /check/test-pytorch-fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/test-pytorch-fc.py -------------------------------------------------------------------------------- /check/test-pytorch-rocblas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/check/test-pytorch-rocblas.py -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/env.sh -------------------------------------------------------------------------------- /gfx803/22.rocblas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/gfx803/22.rocblas.sh -------------------------------------------------------------------------------- /gfx803/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/gfx803/README.md -------------------------------------------------------------------------------- /gfx803/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/gfx803/README_zh_CN.md -------------------------------------------------------------------------------- /gfx803/src/test_rocblas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/gfx803/src/test_rocblas.cpp -------------------------------------------------------------------------------- /gfx803/test-pytorch-rocblas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/gfx803/test-pytorch-rocblas.py -------------------------------------------------------------------------------- /gfx803/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/gfx803/test.sh -------------------------------------------------------------------------------- /install-dependency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/install-dependency.sh -------------------------------------------------------------------------------- /local/12.roct-thunk-interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/12.roct-thunk-interface.sh -------------------------------------------------------------------------------- /local/22.rocblas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/22.rocblas.sh -------------------------------------------------------------------------------- /local/36.miopen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/36.miopen.sh -------------------------------------------------------------------------------- /local/61.amdmigraphx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/61.amdmigraphx.sh -------------------------------------------------------------------------------- /local/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/all.sh -------------------------------------------------------------------------------- /local/create-repo-ubuntu2204.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/create-repo-ubuntu2204.sh -------------------------------------------------------------------------------- /local/miopen-mlir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/miopen-mlir.sh -------------------------------------------------------------------------------- /local/patch-ubuntu2204.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/patch-ubuntu2204.sh -------------------------------------------------------------------------------- /local/prepare-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/prepare-all.sh -------------------------------------------------------------------------------- /local/prepare-boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/prepare-boost.sh -------------------------------------------------------------------------------- /local/prepare-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/prepare-cmake.sh -------------------------------------------------------------------------------- /local/prepare-fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/prepare-fmt.sh -------------------------------------------------------------------------------- /local/prepare-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/local/prepare-json.sh -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/DEBIAN/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/meta/rock-dkms_5.3-63_all/DEBIAN/conffiles -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/meta/rock-dkms_5.3-63_all/DEBIAN/control -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/meta/rock-dkms_5.3-63_all/DEBIAN/postinst -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/meta/rock-dkms_5.3-63_all/DEBIAN/prerm -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/etc/modprobe.d/blacklist-radeon.conf: -------------------------------------------------------------------------------- 1 | blacklist radeon 2 | -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/etc/udev/rules.d/70-amdgpu.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/meta/rock-dkms_5.3-63_all/etc/udev/rules.d/70-amdgpu.rules -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/usr/share/dkms/modules_to_force_install/amdgpu: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /meta/rock-dkms_5.3-63_all/usr/share/doc/amdgpu-dkms/examples/wattman-example-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/meta/rock-dkms_5.3-63_all/usr/share/doc/amdgpu-dkms/examples/wattman-example-script -------------------------------------------------------------------------------- /navi10/22.rocblas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi10/22.rocblas.sh -------------------------------------------------------------------------------- /navi10/25.rocsparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi10/25.rocsparse.sh -------------------------------------------------------------------------------- /navi10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi10/README.md -------------------------------------------------------------------------------- /navi10/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi10/README_zh_CN.md -------------------------------------------------------------------------------- /navi14/22.rocblas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi14/22.rocblas.sh -------------------------------------------------------------------------------- /navi14/25.rocsparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi14/25.rocsparse.sh -------------------------------------------------------------------------------- /navi14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi14/README.md -------------------------------------------------------------------------------- /navi14/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/navi14/README_zh_CN.md -------------------------------------------------------------------------------- /patch/18.hip-ubuntu2204-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/18.hip-ubuntu2204-1.patch -------------------------------------------------------------------------------- /patch/18.hipamd-ubuntu2204-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/18.hipamd-ubuntu2204-1.patch -------------------------------------------------------------------------------- /patch/22.tensile-gfx1010-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/22.tensile-gfx1010-1.patch -------------------------------------------------------------------------------- /patch/22.tensile-gfx1012-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/22.tensile-gfx1012-1.patch -------------------------------------------------------------------------------- /patch/22.tensile-gfx803-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/22.tensile-gfx803-1.patch -------------------------------------------------------------------------------- /patch/23.rocprim-ubuntu2204-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/23.rocprim-ubuntu2204-1.patch -------------------------------------------------------------------------------- /patch/24.rocrand-gitmodules-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/24.rocrand-gitmodules-1.patch -------------------------------------------------------------------------------- /patch/25.rocsparse-gfx10-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/25.rocsparse-gfx10-1.patch -------------------------------------------------------------------------------- /patch/27.rocm_smi_lib-version-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/27.rocm_smi_lib-version-1.patch -------------------------------------------------------------------------------- /patch/33.rocprofile-aql-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/33.rocprofile-aql-1.patch -------------------------------------------------------------------------------- /patch/33.rocprofile-aql.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/33.rocprofile-aql.patch -------------------------------------------------------------------------------- /patch/34.roctracer-ubuntu2204-01.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/34.roctracer-ubuntu2204-01.patch -------------------------------------------------------------------------------- /patch/51.rocsolver-ubuntu2204-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/51.rocsolver-ubuntu2204-1.patch -------------------------------------------------------------------------------- /patch/73.rocmvalidationsuite-ubuntu2204-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/patch/73.rocmvalidationsuite-ubuntu2204-1.patch -------------------------------------------------------------------------------- /src/rocm-core/.info/version.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-core/.info/version.in -------------------------------------------------------------------------------- /src/rocm-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-core/CMakeLists.txt -------------------------------------------------------------------------------- /src/rocm-core/include/rocm_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-core/include/rocm_version.h.in -------------------------------------------------------------------------------- /src/rocm-dev/.info/version-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-dev/.info/version-dev.in -------------------------------------------------------------------------------- /src/rocm-dev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-dev/CMakeLists.txt -------------------------------------------------------------------------------- /src/rocm-libs/.info/version-libs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-libs/.info/version-libs.in -------------------------------------------------------------------------------- /src/rocm-libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-libs/CMakeLists.txt -------------------------------------------------------------------------------- /src/rocm-utils/.info/version-utils.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-utils/.info/version-utils.in -------------------------------------------------------------------------------- /src/rocm-utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/src/rocm-utils/CMakeLists.txt -------------------------------------------------------------------------------- /ubuntu2204/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/ubuntu2204/README.md -------------------------------------------------------------------------------- /ubuntu2204/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuhuisheng/rocm-build/HEAD/ubuntu2204/README_zh_CN.md --------------------------------------------------------------------------------