diff --git a/MODULE.bazel b/MODULE.bazel index 77c4d9e..bd10a25 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -71,7 +71,7 @@ cuda = use_extension("//runtimes/cuda:cuda.bzl", "cuda_packages") use_repo(cuda, "libpjrt_cuda") rocm = use_extension("//runtimes/rocm:rocm.bzl", "rocm_packages") -use_repo(rocm, "libpjrt_rocm") +use_repo(rocm, "libpjrt_rocm", "hipblaslt", "rocblas") tpu = use_extension("//runtimes/tpu:tpu.bzl", "tpu_packages") use_repo(tpu, "libpjrt_tpu") @@ -84,7 +84,7 @@ use_repo(zls, "zls_aarch64-macos", "zls_x86_64-linux") register_toolchains("//third_party/zls:all") -bazel_dep(name = "libxev", version = "20241119.0-6afcde9") +bazel_dep(name = "libxev", version = "20241208.0-db6a52b") bazel_dep(name = "llvm-raw", version = "20250102.0-f739aa4") llvm = use_extension("@llvm-raw//utils/bazel:extension.bzl", "llvm") diff --git a/runtimes/cuda/BUILD.bazel b/runtimes/cuda/BUILD.bazel index 6d57d1f..a7f8bf9 100644 --- a/runtimes/cuda/BUILD.bazel +++ b/runtimes/cuda/BUILD.bazel @@ -27,6 +27,8 @@ zig_library( "//runtimes:cuda.enabled": [ ":libpjrt_cuda", "//async", + "//stdx", + "@rules_zig//zig/runfiles", ], "//conditions:default": [":empty"], }), diff --git a/runtimes/cuda/cuda.bzl b/runtimes/cuda/cuda.bzl index a8c5a3f..4736bb4 100644 --- a/runtimes/cuda/cuda.bzl +++ b/runtimes/cuda/cuda.bzl @@ -5,7 +5,7 @@ load("//bazel:http_deb_archive.bzl", "http_deb_archive") ARCH = "linux-x86_64" CUDA_VERSION = "12.6.3" -CUDNN_VERSION = "9.5.1" +CUDNN_VERSION = "9.6.0" def _filegroup(name, srcs): return """\ diff --git a/runtimes/cuda/cuda.zig b/runtimes/cuda/cuda.zig index 3dc6786..7fb7b1d 100644 --- a/runtimes/cuda/cuda.zig +++ b/runtimes/cuda/cuda.zig @@ -1,7 +1,12 @@ -const builtin = @import("builtin"); +const std = @import("std"); + const asynk = @import("async"); -const pjrt = @import("pjrt"); +const bazel_builtin = @import("bazel_builtin"); +const builtin = @import("builtin"); const c = @import("c"); +const pjrt = @import("pjrt"); +const runfiles = @import("runfiles"); +const stdx = @import("stdx"); pub fn isEnabled() bool { return @hasDecl(c, "ZML_RUNTIME_CUDA"); @@ -12,6 +17,23 @@ fn hasNvidiaDevice() bool { return true; } +fn setupXlaGpuCudaDirFlag() !void { + var arena = std.heap.ArenaAllocator.init(std.heap.c_allocator); + defer arena.deinit(); + + var r_ = try runfiles.Runfiles.create(.{ .allocator = arena.allocator() }) orelse { + stdx.debug.panic("Unable to find CUDA directory", .{}); + }; + + const source_repo = bazel_builtin.current_repository; + const r = r_.withSourceRepo(source_repo); + const cuda_data_dir = (try r.rlocationAlloc(arena.allocator(), "libpjrt_cuda/sandbox")).?; + const xla_flags = std.process.getEnvVarOwned(arena.allocator(), "XLA_FLAGS") catch ""; + const new_xla_flagsZ = try std.fmt.allocPrintZ(arena.allocator(), "--xla_gpu_cuda_data_dir={s} {s}", .{ cuda_data_dir, xla_flags }); + + _ = c.setenv("XLA_FLAGS", new_xla_flagsZ, 1); +} + pub fn load() !*const pjrt.Api { if (comptime !isEnabled()) { return error.Unavailable; @@ -23,5 +45,9 @@ pub fn load() !*const pjrt.Api { return error.Unavailable; } + // CUDA path has to be set _before_ loading the PJRT plugin. + // See https://github.com/openxla/xla/issues/21428 + try setupXlaGpuCudaDirFlag(); + return try pjrt.Api.loadFrom("libpjrt_cuda.so"); } diff --git a/runtimes/cuda/cudnn.redistrib_9.5.1.json b/runtimes/cuda/cudnn.redistrib_9.5.1.json deleted file mode 100644 index 1312759..0000000 --- a/runtimes/cuda/cudnn.redistrib_9.5.1.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "release_date": "2024-10-25", - "release_label": "9.5.1", - "release_product": "cudnn", - "cudnn": { - "name": "NVIDIA CUDA Deep Neural Network library", - "license": "cudnn", - "license_path": "cudnn/LICENSE.txt", - "version": "9.5.1.17", - "linux-x86_64": { - "cuda11": { - "relative_path": "cudnn/linux-x86_64/cudnn-linux-x86_64-9.5.1.17_cuda11-archive.tar.xz", - "sha256": "b1f5050cd2bfd7fa9d3d0dd00d417cc2124692d8421295e12f841be6c8e3a426", - "md5": "5da3b0533fcd3d6a9020d08f3b78ddba", - "size": "736935276" - }, - "cuda12": { - "relative_path": "cudnn/linux-x86_64/cudnn-linux-x86_64-9.5.1.17_cuda12-archive.tar.xz", - "sha256": "35dd20b9c68324ae1288ac36f66ab1f318d2bfecfafb703a82617aa283272be4", - "md5": "a8604f6b80f42ec60e98ba9c8f681572", - "size": "744697316" - } - }, - "cuda_variant": [ - "11", - "12" - ], - "linux-sbsa": { - "cuda11": { - "relative_path": "cudnn/linux-sbsa/cudnn-linux-sbsa-9.5.1.17_cuda11-archive.tar.xz", - "sha256": "ad68d12ee351b5f3478078fc8188eefb8712721c3e501c9345ec5ffb0b85fae8", - "md5": "a9438457a47b2bca7951a19736e8d4e8", - "size": "735387008" - }, - "cuda12": { - "relative_path": "cudnn/linux-sbsa/cudnn-linux-sbsa-9.5.1.17_cuda12-archive.tar.xz", - "sha256": "340c49b32c133b0321c5c5b00d14fb64887dcac83ee8fd24195d9191061f1ad7", - "md5": "83c9f3f9eddadd0c1941d7f3e763174c", - "size": "743147752" - } - }, - "windows-x86_64": { - "cuda11": { - "relative_path": "cudnn/windows-x86_64/cudnn-windows-x86_64-9.5.1.17_cuda11-archive.zip", - "sha256": "8318e93ab017af2356d3b6cf35aab2238e2a51c426450842eb4ade12e4619bbb", - "md5": "b7c456ddab820ec335a724be7a969091", - "size": "554195447" - }, - "cuda12": { - "relative_path": "cudnn/windows-x86_64/cudnn-windows-x86_64-9.5.1.17_cuda12-archive.zip", - "sha256": "3a4cecc8b6d6aa7f6777620e6f2c129b76be635357c4506f2c4ccdbe0e2a1641", - "md5": "fda9196a60fb8e2b4c78e8a19ff056a3", - "size": "557597538" - } - }, - "linux-aarch64": { - "cuda12": { - "relative_path": "cudnn/linux-aarch64/cudnn-linux-aarch64-9.5.1.17_cuda12-archive.tar.xz", - "sha256": "0099b8e4081ac146f802e769cdd30d9e01a289ea0fd056e64e44297a13e1aa0c", - "md5": "9d20deeb313a05c442fbff036ca29581", - "size": "780854928" - } - } - }, - "cudnn_samples": { - "name": "NVIDIA cuDNN samples", - "license": "cudnn", - "license_path": "cudnn_samples/LICENSE.txt", - "version": "9.5.1.17", - "source": { - "relative_path": "cudnn_samples/source/cudnn_samples-source-9.5.1.17-archive.tar.xz", - "sha256": "bb79dc528c6a3b2a019a60d4af13cb4cb3d56146b692b3f3badec3fd8bfc98e7", - "md5": "76fe86423261f1ae984b00b1de2e40f3", - "size": "1664836" - } - } -} \ No newline at end of file diff --git a/runtimes/cuda/cudnn.redistrib_9.6.0.json b/runtimes/cuda/cudnn.redistrib_9.6.0.json new file mode 100644 index 0000000..d1e2d34 --- /dev/null +++ b/runtimes/cuda/cudnn.redistrib_9.6.0.json @@ -0,0 +1,77 @@ +{ + "release_date": "2024-12-02", + "release_label": "9.6.0", + "release_product": "cudnn", + "cudnn": { + "name": "NVIDIA CUDA Deep Neural Network library", + "license": "cudnn", + "license_path": "cudnn/LICENSE.txt", + "version": "9.6.0.74", + "linux-x86_64": { + "cuda11": { + "relative_path": "cudnn/linux-x86_64/cudnn-linux-x86_64-9.6.0.74_cuda11-archive.tar.xz", + "sha256": "9717b0022d4f5ea88ccd9796bef7ad1cc5d04b3bd53f690041767aabfb98d14d", + "md5": "aa68c3eda5ad616c0eead9f646d4885b", + "size": "655044868" + }, + "cuda12": { + "relative_path": "cudnn/linux-x86_64/cudnn-linux-x86_64-9.6.0.74_cuda12-archive.tar.xz", + "sha256": "72595f0d17d952cf568c1d76e370a9c303bb08c2f80888a8cf33e316a65d46a8", + "md5": "16afe7a88f576525d45d9e00c4ac4277", + "size": "662367552" + } + }, + "cuda_variant": [ + "11", + "12" + ], + "linux-sbsa": { + "cuda11": { + "relative_path": "cudnn/linux-sbsa/cudnn-linux-sbsa-9.6.0.74_cuda11-archive.tar.xz", + "sha256": "5f7440fd8269f7a7986bff89dd6924e4145644a94958ab49f146b6f8c0230d46", + "md5": "b125b9988b0c71592561163e6c64d8c6", + "size": "653894704" + }, + "cuda12": { + "relative_path": "cudnn/linux-sbsa/cudnn-linux-sbsa-9.6.0.74_cuda12-archive.tar.xz", + "sha256": "f71fb008833fa92f9eac02c0b786a21f5e383470235ddeb1eee98fe370148ace", + "md5": "9a35d77abda9f279b3fe32023d3b2e47", + "size": "661271556" + } + }, + "windows-x86_64": { + "cuda11": { + "relative_path": "cudnn/windows-x86_64/cudnn-windows-x86_64-9.6.0.74_cuda11-archive.zip", + "sha256": "388cce5d31919ef41a4231d21ed3fb7b60609d0bd6baaf6173cd9583a00b25c9", + "md5": "6a8c3bea2bad7ca83f356a7832f3671f", + "size": "492545214" + }, + "cuda12": { + "relative_path": "cudnn/windows-x86_64/cudnn-windows-x86_64-9.6.0.74_cuda12-archive.zip", + "sha256": "65ca0f2d77a46de1def35e289780b8d8729ef2fa39cf8dd0c8448e381dd2978c", + "md5": "b969339363b43cc80f6184929a6633fa", + "size": "495911494" + } + }, + "linux-aarch64": { + "cuda12": { + "relative_path": "cudnn/linux-aarch64/cudnn-linux-aarch64-9.6.0.74_cuda12-archive.tar.xz", + "sha256": "6f907bf97731d30ffd55dcc53fe8aa666b583b2c0c6b20e88c7341f98bb0b594", + "md5": "751f516ce47fb0e504b878bfc97176e4", + "size": "766134984" + } + } + }, + "cudnn_samples": { + "name": "NVIDIA cuDNN samples", + "license": "cudnn", + "license_path": "cudnn_samples/LICENSE.txt", + "version": "9.6.0.74", + "source": { + "relative_path": "cudnn_samples/source/cudnn_samples-source-9.6.0.74-archive.tar.xz", + "sha256": "2cad2fb38ef359a1956daf73b6b4c0faf826a865fcc3dc791437ca83863a6cb9", + "md5": "8e46375025bdd14ba55a695e12ee3694", + "size": "1667016" + } + } +} \ No newline at end of file diff --git a/runtimes/rocm/BUILD.bazel b/runtimes/rocm/BUILD.bazel index 9ddf8b1..7f617df 100644 --- a/runtimes/rocm/BUILD.bazel +++ b/runtimes/rocm/BUILD.bazel @@ -1,8 +1,23 @@ load("@rules_zig//zig:defs.bzl", "zig_library") -filegroup( - name = "zmlxrocm_srcs", - srcs = ["zmlxrocm.cc"], +cc_library( + name = "zmlxrocm_lib", + srcs = ["zmlxrocm.c"], + linkopts = [ + "-lc", + "-ldl", + ], +) + +cc_shared_library( + name = "zmlxrocm_so", + shared_lib_name = "libzmlxrocm.so.0", + deps = [":zmlxrocm_lib"], +) + +cc_import( + name = "zmlxrocm", + shared_library = ":zmlxrocm_so", visibility = ["@libpjrt_rocm//:__subpackages__"], ) @@ -37,6 +52,8 @@ zig_library( "//runtimes:rocm.enabled": [ ":libpjrt_rocm", "//async", + "//stdx", + "@rules_zig//zig/runfiles", ], "//conditions:default": [":empty"], }), diff --git a/runtimes/rocm/gfx.bzl b/runtimes/rocm/gfx.bzl index d63095c..227a662 100644 --- a/runtimes/rocm/gfx.bzl +++ b/runtimes/rocm/gfx.bzl @@ -40,10 +40,8 @@ bytecode_select = rule( }, ) - def if_gfx(gfx, value): return select({ "@zml//runtimes/rocm:_{}".format(gfx): value, "//conditions:default": [], }) - diff --git a/runtimes/rocm/libpjrt_rocm.BUILD.bazel b/runtimes/rocm/libpjrt_rocm.BUILD.bazel index d28bfd2..c337717 100644 --- a/runtimes/rocm/libpjrt_rocm.BUILD.bazel +++ b/runtimes/rocm/libpjrt_rocm.BUILD.bazel @@ -7,7 +7,7 @@ string_list_flag( build_setting_default = ["all"], visibility = [ "@rocblas//:__subpackages__", - "@hipblaslt-dev//:__subpackages__", + "@hipblaslt//:__subpackages__", ], ) @@ -38,7 +38,6 @@ cc_library( "-lc", "-ldl", ], - deps = ["@bazel_tools//tools/cpp/runfiles"], ) cc_shared_library( @@ -58,18 +57,23 @@ cc_import( ":sandbox", "@rocblas//:runfiles", ] + select({ - ":_hipblaslt": ["@hipblaslt-dev//:runfiles"], + ":_hipblaslt": ["@hipblaslt//:runfiles"], "//conditions:default": [], }), shared_library = "libpjrt_rocm.so", visibility = ["//visibility:public"], deps = [ - ":zmlxrocm", "@comgr//:amd_comgr", "@hip-runtime-amd//:amdhip", "@hipblaslt", "@hsa-amd-aqlprofile//:hsa-amd-aqlprofile", "@hsa-rocr//:hsa-runtime", + "@libdrm-amdgpu", + "@libdrm", + "@libelf", + "@libnuma", + "@libtinfo", + "@libzstd", "@miopen-hip//:MIOpen", "@rccl", "@rocblas", @@ -77,12 +81,7 @@ cc_import( "@rocm-smi-lib//:rocm_smi", "@rocprofiler-register", "@roctracer", - "@libelf", - "@libdrm", - "@libnuma", - "@libzstd", - "@libdrm-amdgpu", - "@libtinfo", "@zlib1g", + "@zml//runtimes/rocm:zmlxrocm", ], ) diff --git a/runtimes/rocm/packages.amd64.txt b/runtimes/rocm/packages.amd64.txt index 09ab6a1..cf84d01 100644 --- a/runtimes/rocm/packages.amd64.txt +++ b/runtimes/rocm/packages.amd64.txt @@ -3,686 +3,269 @@ Architecture: amd64 Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core Priority: optional Section: devel -Filename: pool/main/a/amd-smi-lib/amd-smi-lib_24.6.3.60202-116~20.04_amd64.deb -Size: 1326346 -SHA256: 72004d9a2fcc6657b8dd1f591514f68e987ea946ab6f3ba7b7c88be5947fda98 -SHA1: bf9a6242eb4f66f720ba752a64b52294aea3f692 -MD5sum: 9895ce249a7ae883888e2261523d4270 +Filename: pool/main/a/amd-smi-lib/amd-smi-lib_24.7.1.60301-48~20.04_amd64.deb +Size: 1388960 +SHA256: c1819b2e37fe45a2244f328b0505a4903430f23eaa3d68caca158d3d55114f35 +SHA1: af27bfd9be6d0f7e63c911edd7d6acb51e42fe17 +MD5sum: f603052ae39dc8358af0a4acd71a9ead Description: AMD System Management libraries Maintainer: AMD-SMILib Support -Provides: amd-smi Recommends: python3-argcomplete, libdrm-dev, python3-yaml -Version: 24.6.3.60202-116~20.04 -Installed-Size: 7700 - -Package: amd-smi-lib-asan -Architecture: amd64 -Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/a/amd-smi-lib-asan/amd-smi-lib-asan_24.6.3.60202-116~20.04_amd64.deb -Size: 1169710 -SHA256: e03a40470c46dfe618164d8754d9b84aa10527b500474f9debd4f414c1961386 -SHA1: 29a8bf6ad757ede46e432182ab90a8ce4ffc79cc -MD5sum: bbc0555728c61343a794481f520814d1 -Description: AMD System Management libraries -Maintainer: AMD-SMILib Support -Provides: amd-smi-lib-asan -Recommends: python3-argcomplete, libdrm-dev, python3-yaml -Version: 24.6.3.60202-116~20.04 -Installed-Size: 11612 - -Package: amd-smi-lib-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 4d454b877efbaf1644eb7d6ca5044a05c13c32e7 -Depends: amd-smi-lib-asan (= 24.6.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/a/amd-smi-lib-asan-dbgsym/amd-smi-lib-asan-dbgsym_24.6.3.60202-116~20.04_amd64.deb -Size: 5753582 -SHA256: 1a8eb46ba6af20bce516683676ef8ad1631264738c7198d51592d9cb0b842bad -SHA1: c5a0d77d678ecf549c5f33c6b888094c7a00b396 -MD5sum: 53cde186cb7717e1284bab4d3d7ce563 -Description: debug symbols for amd-smi-lib-asan -Maintainer: AMD-SMILib Support -Package-Type: ddeb -Version: 24.6.3.60202-116~20.04 -Installed-Size: 18280 - -Package: amd-smi-lib-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 4d454b877efbaf1644eb7d6ca5044a05c13c32e7 -Depends: amd-smi-lib-asan-rpath6.2.2 (= 24.6.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/a/amd-smi-lib-asan-dbgsym-rpath6.2.2/amd-smi-lib-asan-dbgsym-rpath6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 3472940 -SHA256: 9d8c53e52b891ee36e83ae623a15c88975f49201f9c0399aeb2b8b934f124ec5 -SHA1: 067559535546fb8c81e0f89e5b6a113fbb7cefa2 -MD5sum: cccc710c580ee6e1d2d4b526fe75def5 -Description: debug symbols for amd-smi-lib-asan -Maintainer: AMD-SMILib Support -Package-Type: ddeb -Version: 24.6.3.60202-116~20.04 -Installed-Size: 18280 - -Package: amd-smi-lib-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 4d454b877efbaf1644eb7d6ca5044a05c13c32e7 -Depends: amd-smi-lib-asan6.2.2 (= 24.6.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/a/amd-smi-lib-asan-dbgsym6.2.2/amd-smi-lib-asan-dbgsym6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 3473844 -SHA256: d7f03d9a151e5eb17f6064f4fac4d31ae7bf6014f1f3aa97f4dec5578ba86b07 -SHA1: cd36cd47a86cd2d8341cb350608c1c1fa909b738 -MD5sum: a3655d25a3e40528ae2871cf634868e2 -Description: debug symbols for amd-smi-lib-asan -Maintainer: AMD-SMILib Support -Package-Type: ddeb -Version: 24.6.3.60202-116~20.04 -Installed-Size: 18280 - -Package: amd-smi-lib-asan-rpath6.2.2 -Architecture: amd64 -Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/a/amd-smi-lib-asan-rpath6.2.2/amd-smi-lib-asan-rpath6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 794032 -SHA256: 5bcb46eb16bb03140490e8c92f9c5af210d2c160a49beae5d2215bb3a97dbfab -SHA1: 4b310f60ee013152e936f484a39e0c4e28a0bbbb -MD5sum: 23ad65f7cb47c7621f917bff307666ce -Description: AMD System Management libraries -Maintainer: AMD-SMILib Support -Provides: amd-smi-lib-asan-rpath6.2.2 -Recommends: python3-argcomplete, libdrm-dev, python3-yaml -Version: 24.6.3.60202-116~20.04 -Installed-Size: 11612 - -Package: amd-smi-lib-asan6.2.2 -Architecture: amd64 -Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/a/amd-smi-lib-asan6.2.2/amd-smi-lib-asan6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 794936 -SHA256: b504d897fa239bc53a0fc541ec3ae4c720dbd1206c56b75408f32e8b14debe4c -SHA1: 4cb1d056dd3c884f4189b79fbe08a151b9980dd3 -MD5sum: 39603f41cd6e208840627c7d6f7f3ffa -Description: AMD System Management libraries -Maintainer: AMD-SMILib Support -Provides: amd-smi-lib-asan6.2.2 -Recommends: python3-argcomplete, libdrm-dev, python3-yaml -Version: 24.6.3.60202-116~20.04 -Installed-Size: 11612 +Version: 24.7.1.60301-48~20.04 +Installed-Size: 7910 Package: amd-smi-lib-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: bc7da17826f624c2b29de0de166b44ef87102ee7 bc7da17826f624c2b29de0de166b44ef87102ee7 -Depends: amd-smi-lib (= 24.6.3.60202-116~20.04) +Build-Ids: 9fb40616f39a0dd2282d1826f12c0be03b69d54e 9fb40616f39a0dd2282d1826f12c0be03b69d54e +Depends: amd-smi-lib (= 24.7.1.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/a/amd-smi-lib-dbgsym/amd-smi-lib-dbgsym_24.6.3.60202-116~20.04_amd64.deb -Size: 10153342 -SHA256: ae88979ce5c1844ecd0d71cd8a7497f251ba7fa07b26eaccfa479ab9b3086a94 -SHA1: 3e3b4fb8a41b46f2ebe4064e3df7447ceb3d30d7 -MD5sum: cccf2e2e2740bb7738c0de12759e06ce +Filename: pool/main/a/amd-smi-lib-dbgsym/amd-smi-lib-dbgsym_24.7.1.60301-48~20.04_amd64.deb +Size: 10547140 +SHA256: 965b9c2b5fa6f365fee024acec523395ab7312c214ead78e40c4e81fa96ce178 +SHA1: 6329c0c2d421ea6635468d125004b2b49989a757 +MD5sum: d1199f4c51fa85157e74afbfcab45626 Description: debug symbols for amd-smi-lib Maintainer: AMD-SMILib Support Package-Type: ddeb -Version: 24.6.3.60202-116~20.04 -Installed-Size: 39320 +Version: 24.7.1.60301-48~20.04 +Installed-Size: 41316 -Package: amd-smi-lib-dbgsym-rpath6.2.2 +Package: amd-smi-lib-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: bc7da17826f624c2b29de0de166b44ef87102ee7 bc7da17826f624c2b29de0de166b44ef87102ee7 -Depends: amd-smi-lib-rpath6.2.2 (= 24.6.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/a/amd-smi-lib-dbgsym-rpath6.2.2/amd-smi-lib-dbgsym-rpath6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 6651668 -SHA256: fecf8fc9298223803c857d4e571153da160ffbae672cd51441f272994fcc7a4b -SHA1: 1f9e02d3d1c7a03a0f564f502e726f6f85b3da22 -MD5sum: c49aff04646d68fd01ac41b295dfb64d -Description: debug symbols for amd-smi-lib -Maintainer: AMD-SMILib Support -Package-Type: ddeb -Version: 24.6.3.60202-116~20.04 -Installed-Size: 39320 - -Package: amd-smi-lib-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: bc7da17826f624c2b29de0de166b44ef87102ee7 bc7da17826f624c2b29de0de166b44ef87102ee7 -Depends: amd-smi-lib6.2.2 (= 24.6.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/a/amd-smi-lib-dbgsym6.2.2/amd-smi-lib-dbgsym6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 6651296 -SHA256: 5cec802a00e0ea6503302ca28b41f25cf2ec2943c26f87d6e25164d834552903 -SHA1: 443f11649ac679eab61e7f33bb9c21273938dff7 -MD5sum: 3ee0d7c614366ae601907ed304f1a729 -Description: debug symbols for amd-smi-lib -Maintainer: AMD-SMILib Support -Package-Type: ddeb -Version: 24.6.3.60202-116~20.04 -Installed-Size: 39320 - -Package: amd-smi-lib-rpath6.2.2 -Architecture: amd64 -Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core-rpath6.2.2 +Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/a/amd-smi-lib-rpath6.2.2/amd-smi-lib-rpath6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 559132 -SHA256: e717db83fa431e46a94e7114593884b066393901740635a010f5295c0d615786 -SHA1: 13421bc515f4ad19fbfb0b2fb60618ab8ae53bb9 -MD5sum: 501f0587f48196c8fb062fa6a6b1ce85 +Filename: pool/main/a/amd-smi-lib-rpath6.3.1/amd-smi-lib-rpath6.3.1_24.7.1.60301-48~20.04_amd64.deb +Size: 587668 +SHA256: de3c4bcc2c736dc07ee96875cb68101538c4e607a1dd0bdff8b50ccb603ee74c +SHA1: 31e6938e721dd118fdee9fd658eb72b866c665ea +MD5sum: b0f4fe0b66d1404e8e8fdc37688c0110 Description: AMD System Management libraries Maintainer: AMD-SMILib Support -Provides: amd-smi-rpath6.2.2 Recommends: python3-argcomplete, libdrm-dev, python3-yaml -Version: 24.6.3.60202-116~20.04 -Installed-Size: 7700 +Version: 24.7.1.60301-48~20.04 +Installed-Size: 7910 -Package: amd-smi-lib6.2.2 +Package: amd-smi-lib6.3.1 Architecture: amd64 -Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core6.2.2 +Depends: sudo, python3 (>= 3.6.8), python3-pip, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/a/amd-smi-lib6.2.2/amd-smi-lib6.2.2_24.6.3.60202-116~20.04_amd64.deb -Size: 560084 -SHA256: 2eb41af8cd09f90c028b629032a8f203319dd1f4e8af71d0cff28c1fe558ceb1 -SHA1: 1b245dbf8bf0033010babcfd5c706a8883b46260 -MD5sum: aec70dc488385b324fca1866e3b2511f +Filename: pool/main/a/amd-smi-lib6.3.1/amd-smi-lib6.3.1_24.7.1.60301-48~20.04_amd64.deb +Size: 587836 +SHA256: 75d904380d82c9cfc118336571d80a779336752461e6e4bced35cc3e14719825 +SHA1: 91255a887e6d2c535ebcb7bb161374e216863cd2 +MD5sum: b2087b0d5536e0e1e3ac8f65c54ee41d Description: AMD System Management libraries Maintainer: AMD-SMILib Support -Provides: amd-smi6.2.2 Recommends: python3-argcomplete, libdrm-dev, python3-yaml -Version: 24.6.3.60202-116~20.04 -Installed-Size: 7700 +Version: 24.7.1.60301-48~20.04 +Installed-Size: 7910 Package: comgr Architecture: amd64 -Depends: libtinfo-dev, rocm-core +Depends: libtinfo-dev, rocm-core, libzstd1, zlib1g, libc6, libstdc++6, libgcc-s1 Priority: optional Section: devel -Filename: pool/main/c/comgr/comgr_2.8.0.60202-116~20.04_amd64.deb -Size: 54876024 -SHA256: 7dc8edaca45ee7633ed664032696e29286a86943993282c4005194bb7b197b36 -SHA1: 8a7b546de79b4036c1dda68d968b6d656ed270d0 -MD5sum: 3e88146422d537a187c51e5bc2f09b9c +Filename: pool/main/c/comgr/comgr_2.8.0.60301-48~20.04_amd64.deb +Size: 54956562 +SHA256: 0276706d29e816b717d564fe2695b7aec23ef49aae348f97efe73f9bdefb61e2 +SHA1: 862d6350656bb0898867bceb43e5e62f1d2c12c8 +MD5sum: 5df27ffd31f9a4fb478174d34a22a5c4 Description: Library to provide support functions for ROCm code objects. -Homepage: https://github.com/RadeonOpenCompute/ROCm-CompilerSupport +Homepage: https://github.com/ROCm/llvm-project/tree/amd-staging/amd/comgr Maintainer: ROCm Compiler Support -Version: 2.8.0.60202-116~20.04 -Installed-Size: 447714 - -Package: comgr-asan -Architecture: amd64 -Depends: libtinfo-dev, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/c/comgr-asan/comgr-asan_2.8.0.60202-116~20.04_amd64.deb -Size: 55329874 -SHA256: ce572dfaeb839b8d63c46635187bb9b5d9734a477a7b0c8858ad0a2afb6e92c5 -SHA1: 733b197bf930891e91fb33e095b973f8356fba33 -MD5sum: 5082b34bb4b033b172e0f7e66c97f58b -Description: AddressSanitizer Instrumented Libraries to provide support functions for ROCm code objects. -Homepage: https://github.com/RadeonOpenCompute/ROCm-CompilerSupport -Maintainer: ROCm Compiler Support -Version: 2.8.0.60202-116~20.04 -Installed-Size: 450576 - -Package: comgr-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 008bbe3657c9a924022f341b3b49e46ae3aff60b -Depends: comgr-asan (= 2.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/c/comgr-asan-dbgsym/comgr-asan-dbgsym_2.8.0.60202-116~20.04_amd64.deb -Size: 6679774 -SHA256: d6b23d10868d11386384815ba518b9d4391fa13a5741e4a599d51ebb09e06eea -SHA1: 6711a1669fa0b6627b3e0358cc135ba72650e949 -MD5sum: 4c8694bf9796cded4485495184020680 -Description: debug symbols for comgr-asan -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 2.8.0.60202-116~20.04 -Installed-Size: 32182 - -Package: comgr-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 008bbe3657c9a924022f341b3b49e46ae3aff60b -Depends: comgr-asan-rpath6.2.2 (= 2.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/c/comgr-asan-dbgsym-rpath6.2.2/comgr-asan-dbgsym-rpath6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 4272876 -SHA256: 0734a6e4d514394bd6df1405a557d87c12b35c024c991d2600a237b9f487309c -SHA1: 3abb2bd14b0c3f4780c0f8f472d402a289e30da3 -MD5sum: 4e69e8ef1076c97f88fe6d0c1d38e242 -Description: debug symbols for comgr-asan -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 2.8.0.60202-116~20.04 -Installed-Size: 32182 - -Package: comgr-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 008bbe3657c9a924022f341b3b49e46ae3aff60b -Depends: comgr-asan6.2.2 (= 2.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/c/comgr-asan-dbgsym6.2.2/comgr-asan-dbgsym6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 4272148 -SHA256: fb3c3c731ff45360a6e22a87b0b764d69cd06219f5cebeffd359def19a684808 -SHA1: eefdc80548990e1c6a4f116a433138e6116e29c9 -MD5sum: b724dc430545a33a600783d88baecb16 -Description: debug symbols for comgr-asan -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 2.8.0.60202-116~20.04 -Installed-Size: 32182 - -Package: comgr-asan-rpath6.2.2 -Architecture: amd64 -Depends: libtinfo-dev, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/comgr-asan-rpath6.2.2/comgr-asan-rpath6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 37831024 -SHA256: 152d5f7087fa0a8124af3ccfcd3c978484ae92158c95290165b4dab1a80b00e0 -SHA1: 18cac0966dd98109afe68391c66a844bf851ac97 -MD5sum: e2a4e18715bc07c02a5ab7aeacae362a -Description: AddressSanitizer Instrumented Libraries to provide support functions for ROCm code objects. -Homepage: https://github.com/RadeonOpenCompute/ROCm-CompilerSupport -Maintainer: ROCm Compiler Support -Version: 2.8.0.60202-116~20.04 -Installed-Size: 450576 - -Package: comgr-asan6.2.2 -Architecture: amd64 -Depends: libtinfo-dev, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/comgr-asan6.2.2/comgr-asan6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 37842816 -SHA256: 274ed7e8d41a0fb70bb619abbfc945c778d3bd23fb8132c678a778475daeffb2 -SHA1: b489b29d1e32bf41fd26ab8a9e8f40210e1fa1d1 -MD5sum: ec8dd2683f6047964715b36fd7b6f3c1 -Description: AddressSanitizer Instrumented Libraries to provide support functions for ROCm code objects. -Homepage: https://github.com/RadeonOpenCompute/ROCm-CompilerSupport -Maintainer: ROCm Compiler Support -Version: 2.8.0.60202-116~20.04 -Installed-Size: 450576 +Version: 2.8.0.60301-48~20.04 +Installed-Size: 448531 Package: comgr-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: a9b54f2f44db5fddfac4d350040c5c36b5fbf311 -Depends: comgr (= 2.8.0.60202-116~20.04) +Build-Ids: c05be62ef7e28d85093d7984d45dd52c985d42c4 +Depends: comgr (= 2.8.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/c/comgr-dbgsym/comgr-dbgsym_2.8.0.60202-116~20.04_amd64.deb -Size: 15159082 -SHA256: e5e539ff8ed8e6a340fc85b0a363e6c113c4ce1e242e59a7d01810cbb724584c -SHA1: 8d15ab5b131b245e86054af541f6c2e96cc76097 -MD5sum: 1e342557b748d4606fac6d241475ffac +Filename: pool/main/c/comgr-dbgsym/comgr-dbgsym_2.8.0.60301-48~20.04_amd64.deb +Size: 15191666 +SHA256: 813dcd089f33e150b48755e4d355f67afc75eca7387b85c8bd67cabb0afdbcba +SHA1: c8f4515998a30bf8d28791101689331e963e228c +MD5sum: 1468af9aaeb50dcdf985a8d27d5243d0 Description: debug symbols for comgr Maintainer: ROCm Compiler Support Package-Type: ddeb -Version: 2.8.0.60202-116~20.04 -Installed-Size: 57307 +Version: 2.8.0.60301-48~20.04 +Installed-Size: 57596 -Package: comgr-dbgsym-rpath6.2.2 +Package: comgr-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: a9b54f2f44db5fddfac4d350040c5c36b5fbf311 -Depends: comgr-rpath6.2.2 (= 2.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/c/comgr-dbgsym-rpath6.2.2/comgr-dbgsym-rpath6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 9137176 -SHA256: 641e633b1fc368e12931c00519548d97674dfe4ce47ed5caffb7675dc3afeaaf -SHA1: d912ccf037e87c91441701aa742940ee83f4351b -MD5sum: 36f0ab38288f81c6d2bdecd7fd061724 -Description: debug symbols for comgr -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 2.8.0.60202-116~20.04 -Installed-Size: 57307 - -Package: comgr-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: a9b54f2f44db5fddfac4d350040c5c36b5fbf311 -Depends: comgr6.2.2 (= 2.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/c/comgr-dbgsym6.2.2/comgr-dbgsym6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 9135488 -SHA256: fd1ed269d29a61561048d307bb97ccf6350a33d5f714b8f39f1b13cf7c138e07 -SHA1: 1514dc600055fc887a7495f89061be0fc6998fcc -MD5sum: f3881f358e0c00f1f28b8e037a22aed1 -Description: debug symbols for comgr -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 2.8.0.60202-116~20.04 -Installed-Size: 57307 - -Package: comgr-rpath6.2.2 -Architecture: amd64 -Depends: libtinfo-dev, rocm-core-rpath6.2.2 +Depends: libtinfo-dev, rocm-core-rpath6.3.1, libzstd1, zlib1g, libc6, libstdc++6, libgcc-s1 Priority: optional Section: devel -Filename: pool/main/c/comgr-rpath6.2.2/comgr-rpath6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 37565584 -SHA256: 22cfedff4796e366b57cb29bf115a8d3b02467079df356f55f2bf15a0c238e6d -SHA1: 929f0c504b3e746bee3f5b1f1d9b5d81bfbc8a24 -MD5sum: 9464cdd3e43ef7b61c8be91e952b4896 +Filename: pool/main/c/comgr-rpath6.3.1/comgr-rpath6.3.1_2.8.0.60301-48~20.04_amd64.deb +Size: 37693784 +SHA256: 1b3d7379c158119fe6457e26da87c5f4fcbd2288960592a7180b1479962d06a5 +SHA1: 84db1dc11d4f012764b729a2a0b3d3f37475138f +MD5sum: 33473f4beee56182fddcb791c7041dc6 Description: Library to provide support functions for ROCm code objects. -Homepage: https://github.com/RadeonOpenCompute/ROCm-CompilerSupport +Homepage: https://github.com/ROCm/llvm-project/tree/amd-staging/amd/comgr Maintainer: ROCm Compiler Support -Version: 2.8.0.60202-116~20.04 -Installed-Size: 447714 +Version: 2.8.0.60301-48~20.04 +Installed-Size: 448531 -Package: comgr6.2.2 +Package: comgr6.3.1 Architecture: amd64 -Depends: libtinfo-dev, rocm-core6.2.2 +Depends: libtinfo-dev, rocm-core6.3.1, libzstd1, zlib1g, libc6, libstdc++6, libgcc-s1 Priority: optional Section: devel -Filename: pool/main/c/comgr6.2.2/comgr6.2.2_2.8.0.60202-116~20.04_amd64.deb -Size: 37562240 -SHA256: 20654ba990c1956155310cfb22c7a0c5d7157a4122bb6dc7a92e73f2cac85fed -SHA1: 0fe3dbff4f62d01a433074d9d7764a266ef9712d -MD5sum: 1c406e50ce49a7f3b983cf5074338df5 +Filename: pool/main/c/comgr6.3.1/comgr6.3.1_2.8.0.60301-48~20.04_amd64.deb +Size: 37693596 +SHA256: 953215224e9e62f276af9c9f236dfaaf6b09eeaf2ffa209a0f0e6dad87763acd +SHA1: 0f8a583cb3ef6828e1b9e0291acbe0784b03843c +MD5sum: 01c1ef54df8b086a6c9a0660d3a665b6 Description: Library to provide support functions for ROCm code objects. -Homepage: https://github.com/RadeonOpenCompute/ROCm-CompilerSupport +Homepage: https://github.com/ROCm/llvm-project/tree/amd-staging/amd/comgr Maintainer: ROCm Compiler Support -Version: 2.8.0.60202-116~20.04 -Installed-Size: 447714 +Version: 2.8.0.60301-48~20.04 +Installed-Size: 448531 -Package: composablekernel-ckprofiler_gfx10 +Package: composablekernel-ckprofiler Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx10/composablekernel-ckprofiler_gfx10_1.1.0.60202-116~20.04_amd64.deb -Size: 12608880 -SHA256: 9f69d24760a76cdf02b7f359b5ca08a72d201d825f9020ddf63dcf0aeb6e47ff -SHA1: 4fa2aa954530b2550c3b64d4a5089f605ca5520c -MD5sum: 4ea936582b317cfab1ce48d94e55d311 +Filename: pool/main/c/composablekernel-ckprofiler/composablekernel-ckprofiler_1.1.0.60301-48~20.04_amd64.deb +Size: 390773092 +SHA256: 72c6b7f2bafa8cb56eb7b7f4c0742fec75349cd265b5ef2a5275e13e68444d21 +SHA1: dbb4711d4aad9a31378cc5f04c819962a316fdc7 +MD5sum: 7be01e5fd58d35d934696865d2399955 Description: High Performance Composable Kernel for AMD GPUs Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 296617 +Version: 1.1.0.60301-48~20.04 +Installed-Size: 1019954 -Package: composablekernel-ckprofiler_gfx10-rpath6.2.2 +Package: composablekernel-ckprofiler-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx10-rpath6.2.2/composablekernel-ckprofiler_gfx10-rpath6.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 12596148 -SHA256: 53ee7766af90d589844aac358af5131ee43d650c13bfd82ea4f498a30681120f -SHA1: d58492c1188e8267bdbf2b6e186be76e16aee4f3 -MD5sum: 50ed5136474e54e1e4e5b7345f21c7bf +Filename: pool/main/c/composablekernel-ckprofiler-rpath6.3.1/composablekernel-ckprofiler-rpath6.3.1_1.1.0.60301-48~20.04_amd64.deb +Size: 390766392 +SHA256: f56d3322aa702c6896f44cbc34f37ec2d1be765bb5f3d815bf5a9a5120163bf7 +SHA1: a87929e25b0b47d1d4e3f50621f891bce187e692 +MD5sum: bf1d7b1ab8e7cb29e9d835f25474738c Description: High Performance Composable Kernel for AMD GPUs Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 296617 +Version: 1.1.0.60301-48~20.04 +Installed-Size: 1019954 -Package: composablekernel-ckprofiler_gfx106.2.2 +Package: composablekernel-ckprofiler6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx106.2.2/composablekernel-ckprofiler_gfx106.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 12596380 -SHA256: 856138ba947b8cf9250a3fafe49d6f1e6b9935218c97075c4e285c7cc741f4b7 -SHA1: e09fb5c327c7a95ce37a311e39f597e09b4c20c4 -MD5sum: 0bae26ce6662c9261d0201a21ca7101e +Filename: pool/main/c/composablekernel-ckprofiler6.3.1/composablekernel-ckprofiler6.3.1_1.1.0.60301-48~20.04_amd64.deb +Size: 390764844 +SHA256: f83e1ef7e49835f48fc98ca5d58ff0b5c82457b898e6f381407ac808ec2dfc47 +SHA1: e255fede9d0f61cc528e54bf8ffda8e12e5741ab +MD5sum: a9e0d44297eede0ac44214c514950c90 Description: High Performance Composable Kernel for AMD GPUs Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 296617 - -Package: composablekernel-ckprofiler_gfx11 -Architecture: amd64 -Depends: rocm-core -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx11/composablekernel-ckprofiler_gfx11_1.1.0.60202-116~20.04_amd64.deb -Size: 28675578 -SHA256: 6ac95e750706588756fc17d75b0f1330bd335ae2d39da71b696f6d2b4a9bf969 -SHA1: 0c5439bdf732d0ce08b44d94b56e0a4deed76b25 -MD5sum: de3aeec04fadd43e2b39dd131095cd73 -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 790278 - -Package: composablekernel-ckprofiler_gfx11-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx11-rpath6.2.2/composablekernel-ckprofiler_gfx11-rpath6.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 28703832 -SHA256: 23648d0f8bdf60b71ff96700a3a6bd9e09332bc7da388ff9a1c7db4b89d51328 -SHA1: 320a6ec05d87deb6aee2420c822b74f4b145740f -MD5sum: 7ef6ab91cb6b13c6a9ddaaba6e406d2d -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 790278 - -Package: composablekernel-ckprofiler_gfx116.2.2 -Architecture: amd64 -Depends: rocm-core6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx116.2.2/composablekernel-ckprofiler_gfx116.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 28703796 -SHA256: c3c3017365a49031cda2dd80b23c4bc7d6e1d55e67100b96b9d69fd63ee90e14 -SHA1: 3b511fd4559aff0b726a24ad041d321f6993854e -MD5sum: f20885f3135141023640dda51439934b -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 790278 - -Package: composablekernel-ckprofiler_gfx90 -Architecture: amd64 -Depends: rocm-core -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx90/composablekernel-ckprofiler_gfx90_1.1.0.60202-116~20.04_amd64.deb -Size: 97689952 -SHA256: f14fafe63f6a861d768c7539f90fbec9d9e5136e4e7e55bee5bb6fd967819612 -SHA1: 98be9286ef2fdf2a89e515da74e2209d63e8b845 -MD5sum: eb188d14d5a488f9e68d289b3d73438e -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 2017912 - -Package: composablekernel-ckprofiler_gfx90-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx90-rpath6.2.2/composablekernel-ckprofiler_gfx90-rpath6.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 97681168 -SHA256: 24f79fb1e667a0276740eb9615d98d893ffc9d782bfb06fb73615f384f7a76c5 -SHA1: 8497df40e7c93125df539eb1cf2da167daac18d1 -MD5sum: ba6a761686b9d68f06a06e427e06e247 -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 2017912 - -Package: composablekernel-ckprofiler_gfx906.2.2 -Architecture: amd64 -Depends: rocm-core6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx906.2.2/composablekernel-ckprofiler_gfx906.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 97684368 -SHA256: 27024d367cb56565e907da9bfe4d26d0b52c03aebd284ec5b2bd3f30de4ead71 -SHA1: 8a89fc20cd61f96f13a18dbe598c019d2999afc5 -MD5sum: 71f2985490516f555300f89d578bf7dc -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 2017912 - -Package: composablekernel-ckprofiler_gfx94 -Architecture: amd64 -Depends: rocm-core -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx94/composablekernel-ckprofiler_gfx94_1.1.0.60202-116~20.04_amd64.deb -Size: 59066938 -SHA256: db404b876705188ee3f310bdb1cd91060c365524f4463b3db63c54497a7268ff -SHA1: 0ce552701b5e6f6fcaf3394726a4aefd2451933d -MD5sum: 6c7f8716a667430f66538309aa4a7836 -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 2139356 - -Package: composablekernel-ckprofiler_gfx94-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx94-rpath6.2.2/composablekernel-ckprofiler_gfx94-rpath6.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 59011936 -SHA256: 972d3e32aca69a9c092f2eb04ddc26cdfe2fc7942b8fa873220beb6f614a11b9 -SHA1: 3fba495ebfb185b5187f9ec3879bf2494eb72e7c -MD5sum: 926a41fb67b2a4be0236ddddbdaca2f5 -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 2139356 - -Package: composablekernel-ckprofiler_gfx946.2.2 -Architecture: amd64 -Depends: rocm-core6.2.2 -Priority: optional -Section: devel -Filename: pool/main/c/composablekernel-ckprofiler_gfx946.2.2/composablekernel-ckprofiler_gfx946.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 59017448 -SHA256: 9424d5379f35fef946bcff98f0731ad8d9b6c0e5768ef7dfbfaefa3d35ea56dd -SHA1: ef810227393c9b616aaf5bbb8f92001d99519a03 -MD5sum: 7ff2e6a9bfacf49f0877e1768d0e29dd -Description: High Performance Composable Kernel for AMD GPUs -Maintainer: MIOpen Kernels Dev Team -Version: 1.1.0.60202-116~20.04 -Installed-Size: 2139356 +Version: 1.1.0.60301-48~20.04 +Installed-Size: 1019954 Package: composablekernel-dev Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/c/composablekernel-dev/composablekernel-dev_1.1.0.60202-116~20.04_amd64.deb -Size: 198770410 -SHA256: 1e70bf8040ca0fdfed7f0c64d6b7d5a6bb705e93904c32a1e4cdd2a32f56fbd9 -SHA1: 7baa56a77589554964ed2cfa647f8344028b1069 -MD5sum: 54ccf8f151e0fd0ee15d2897d9396563 +Filename: pool/main/c/composablekernel-dev/composablekernel-dev_1.1.0.60301-48~20.04_amd64.deb +Size: 521207310 +SHA256: 16a91d0761b5d7b2e38f07a1e9a32dd986e10415961e84b7a95e464487c020dc +SHA1: 5029ef073682c60ff9dcc770712bf509f1334690 +MD5sum: 270ab1d477de6fa9790892731b913d4c Description: High Performance Composable Kernel for AMD GPUs Maintainer: MIOpen Kernels Dev Team -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, composablekernel (= 1.1.0.60202) -Version: 1.1.0.60202-116~20.04 -Installed-Size: 5639543 +Provides: composablekernel (= 1.1.0.60301) +Version: 1.1.0.60301-48~20.04 +Installed-Size: 2317195 -Package: composablekernel-dev-rpath6.2.2 +Package: composablekernel-dev-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/c/composablekernel-dev-rpath6.2.2/composablekernel-dev-rpath6.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 198757340 -SHA256: caedf4ece5744a61f64c9b4a5f46977512c57b9928f68f253a16ea23df32d6c5 -SHA1: 128e4db01084711811f9ecd4410725d811f31e51 -MD5sum: 7f3b3e231949a8b940d2da93c5ad2fd5 +Filename: pool/main/c/composablekernel-dev-rpath6.3.1/composablekernel-dev-rpath6.3.1_1.1.0.60301-48~20.04_amd64.deb +Size: 521196964 +SHA256: 884f2e6bcc69ccba3c7ec5ed012ce91a530d7548f662e005bc379b64f05a9329 +SHA1: 3215626a5a7509021726442a04287a9a8b330cc7 +MD5sum: 39fe8d457112f34f96842384b569e534 Description: High Performance Composable Kernel for AMD GPUs Maintainer: MIOpen Kernels Dev Team -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, composablekernel-rpath6.2.2 (= 1.1.0.60202) -Version: 1.1.0.60202-116~20.04 -Installed-Size: 5639543 +Provides: composablekernel-rpath6.3.1 (= 1.1.0.60301) +Version: 1.1.0.60301-48~20.04 +Installed-Size: 2317195 -Package: composablekernel-dev6.2.2 +Package: composablekernel-dev6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/c/composablekernel-dev6.2.2/composablekernel-dev6.2.2_1.1.0.60202-116~20.04_amd64.deb -Size: 198757288 -SHA256: 0dbf03b791e202308e5ebb3ca19c1d4c2575e5854fb9dc7a50d5237d0bb71fe1 -SHA1: c4dcd2fbadb1869a6960ed232807908998946950 -MD5sum: eac6e5c916af23d9b03faa25d9db6d29 +Filename: pool/main/c/composablekernel-dev6.3.1/composablekernel-dev6.3.1_1.1.0.60301-48~20.04_amd64.deb +Size: 521196984 +SHA256: b2adaafc4488f23c45868c14351b628303250258e59a438b5cf3ff7b66aa6219 +SHA1: 989d34ac6233af7adea4f763e89448f3b8811450 +MD5sum: 047c0192384eecb472b28bef5a69274c Description: High Performance Composable Kernel for AMD GPUs Maintainer: MIOpen Kernels Dev Team -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, composablekernel6.2.2 (= 1.1.0.60202) -Version: 1.1.0.60202-116~20.04 -Installed-Size: 5639543 +Provides: composablekernel6.3.1 (= 1.1.0.60301) +Version: 1.1.0.60301-48~20.04 +Installed-Size: 2317195 Package: half Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/h/half/half_1.12.0.60202-116~20.04_amd64.deb -Size: 19528 -SHA256: 38fa841f58199d778a5e18b2986ee8447049e771a43899bc827b02fa22833058 -SHA1: d91d6ee4720f426cce5bfd965c5aeac7ef893e6e -MD5sum: 4f89ad4227fe4285c43af7bbcef037cf +Filename: pool/main/h/half/half_1.12.0.60301-48~20.04_amd64.deb +Size: 19642 +SHA256: be0f3350a63762d63b5576438779f0f367bed37c4a4e97b171eb985fd9657ae1 +SHA1: 67e93a538c4a734a65cc6efb2c62877b71032f3b +MD5sum: 757afd2660a55973f6e383640afa4559 Description: HALF-PRECISION FLOATING POINT LIBRARY Maintainer: Paul Fultz II -Version: 1.12.0.60202-116~20.04 +Version: 1.12.0.60301-48~20.04 Installed-Size: 175 -Package: half-rpath6.2.2 +Package: half-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/half-rpath6.2.2/half-rpath6.2.2_1.12.0.60202-116~20.04_amd64.deb -Size: 19788 -SHA256: 387fc9d8085dca765ff9c2813e7d4cb73ac87a5dfec26f36e84fb8d59e7cdc96 -SHA1: 22cf3e7e2e8da583cd48f6b785d4f010cca82361 -MD5sum: 8cf2d5fdc06dd727eb8823951a41b687 +Filename: pool/main/h/half-rpath6.3.1/half-rpath6.3.1_1.12.0.60301-48~20.04_amd64.deb +Size: 19800 +SHA256: 9357f567d353265d3358d4f57a62ef957acfaeddf38292673f4dbe68489e50de +SHA1: 6b92cc57b011e0dac11dfa0e569526133ef22dd0 +MD5sum: ec7c55fb1a5cf7281583180780966deb Description: HALF-PRECISION FLOATING POINT LIBRARY Maintainer: Paul Fultz II -Version: 1.12.0.60202-116~20.04 +Version: 1.12.0.60301-48~20.04 Installed-Size: 175 -Package: half6.2.2 +Package: half6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/half6.2.2/half6.2.2_1.12.0.60202-116~20.04_amd64.deb -Size: 19764 -SHA256: 82c681235783cec80ffb4e6a6a9110b9c76ce2c2ae735c09dcb52887f24970fa -SHA1: 3a81edf987a03545e46acc82cc57192de8e69df7 -MD5sum: 62bc240c35fd24be9c1faf20a2c5e5e0 +Filename: pool/main/h/half6.3.1/half6.3.1_1.12.0.60301-48~20.04_amd64.deb +Size: 19812 +SHA256: b2d7e09affd3e302ce12b1c5a52a80d276be755e37edddf705b0d6f6d7a31a47 +SHA1: 13b15b12701f8b8c356579c22f94a692afa18bc5 +MD5sum: db6eb152cf31959fd28f8fd61e30dae4 Description: HALF-PRECISION FLOATING POINT LIBRARY Maintainer: Paul Fultz II -Version: 1.12.0.60202-116~20.04 +Version: 1.12.0.60301-48~20.04 Installed-Size: 175 Package: hip-dev @@ -690,104 +273,104 @@ Architecture: amd64 Depends: perl (>= 5.0), libfile-copy-recursive-perl, libfile-listing-perl, libfile-which-perl, liburi-perl, libc6, file, hip-runtime-amd, rocm-llvm, rocm-core, hsa-rocr-dev Priority: optional Section: devel -Filename: pool/main/h/hip-dev/hip-dev_6.2.41134.60202-116~20.04_amd64.deb -Size: 307026 -SHA256: da0d6433a6e110067decd42c5e781cdd11ac44ae25861846ef6b63a0369cf0ee -SHA1: 3a62ff03d7adf6c8780b3d36d5ba44f5c970efb0 -MD5sum: 197b6b5dab426c799abf000a4ba72761 +Filename: pool/main/h/hip-dev/hip-dev_6.3.42133.60301-48~20.04_amd64.deb +Size: 315636 +SHA256: ef6ee04206eb8dfc1ca0a17398510f3a5185e2fccf717e31efd2f5ea573f57b0 +SHA1: 901dd39e2c1ccaa60f01cc406c59a787c16cdc6d +MD5sum: 62e5fcbc4b80ee185980aa7aac17d215 Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [DEVELOPMENT] Maintainer: HIP Support Provides: hip-base Replaces: hip-base -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 2276 +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 2371 -Package: hip-dev-rpath6.2.2 +Package: hip-dev-rpath6.3.1 Architecture: amd64 -Depends: perl (>= 5.0), libfile-copy-recursive-perl, libfile-listing-perl, libfile-which-perl, liburi-perl, libc6, file, hip-runtime-amd-rpath6.2.2, rocm-llvm-rpath6.2.2, rocm-core-rpath6.2.2, hsa-rocr-dev-rpath6.2.2 +Depends: perl (>= 5.0), libfile-copy-recursive-perl, libfile-listing-perl, libfile-which-perl, liburi-perl, libc6, file, hip-runtime-amd-rpath6.3.1, rocm-llvm-rpath6.3.1, rocm-core-rpath6.3.1, hsa-rocr-dev-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-dev-rpath6.2.2/hip-dev-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 222952 -SHA256: d92aaf6d0539df285ea600224d07ea01a1f1e19b989f2bce21114ac2ad3beadd -SHA1: 25368c30ddc82847e3a826d8e98e700e75d82da0 -MD5sum: e9ff002824f1c07358cc122c3fd07e56 +Filename: pool/main/h/hip-dev-rpath6.3.1/hip-dev-rpath6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 229172 +SHA256: ffe819164595e294fd3b1adab5a34a66d2c9279e2312263b2391add9e7011cd8 +SHA1: f39e7a345f22db8df8587fec779b4ce9a664ce78 +MD5sum: 5da04aedd36c452e5ede044944675d95 Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [DEVELOPMENT] Maintainer: HIP Support -Provides: hip-base-rpath6.2.2 -Replaces: hip-base-rpath6.2.2 -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 2276 +Provides: hip-base-rpath6.3.1 +Replaces: hip-base-rpath6.3.1 +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 2371 -Package: hip-dev6.2.2 +Package: hip-dev6.3.1 Architecture: amd64 -Depends: perl (>= 5.0), libfile-copy-recursive-perl, libfile-listing-perl, libfile-which-perl, liburi-perl, libc6, file, hip-runtime-amd6.2.2, rocm-llvm6.2.2, rocm-core6.2.2, hsa-rocr-dev6.2.2 +Depends: perl (>= 5.0), libfile-copy-recursive-perl, libfile-listing-perl, libfile-which-perl, liburi-perl, libc6, file, hip-runtime-amd6.3.1, rocm-llvm6.3.1, rocm-core6.3.1, hsa-rocr-dev6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-dev6.2.2/hip-dev6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 222940 -SHA256: 2a3fbcb03e0fd500b193960b67feaf0f011455f5496b6691691dc313ed1cae20 -SHA1: d29dec0bded767f47f95ce8049b96ddb6c9d2770 -MD5sum: 62ada02978dd93957e3c898bfb1d6eef +Filename: pool/main/h/hip-dev6.3.1/hip-dev6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 229156 +SHA256: 051f45b61db09d700084130b3a0fb2a7912476c8ec491198c72fbb7089afbffc +SHA1: 2a7d94db9e56feca176102a79f5a1b89a177b946 +MD5sum: 1484faed923eea28a40acd11d1d497ce Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [DEVELOPMENT] Maintainer: HIP Support -Provides: hip-base6.2.2 -Replaces: hip-base6.2.2 -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 2276 +Provides: hip-base6.3.1 +Replaces: hip-base6.3.1 +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 2371 Package: hip-doc Architecture: amd64 -Depends: hip-dev (= 6.2.41134.60202-116~20.04), rocm-core +Depends: hip-dev (= 6.3.42133.60301-48~20.04), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hip-doc/hip-doc_6.2.41134.60202-116~20.04_amd64.deb -Size: 89098 -SHA256: d0e92efd6e27b1e275f4e78bd4fa889ade9854f47da862ba2ac10747ab55dc68 -SHA1: d7b8510314e9af1d06e2739e9e15d8fcd2b5dcd3 -MD5sum: 1fc26a3749b8915c349752735329f811 +Filename: pool/main/h/hip-doc/hip-doc_6.3.42133.60301-48~20.04_amd64.deb +Size: 89106 +SHA256: a69fd42b872a74b2a05a493b5b1795812c5c53dbdcce328054ebeb311949d3a0 +SHA1: c14b6fd977cc7eeb057c41e3d1a786d6f1770163 +MD5sum: 6c08e89eca44fc30fd42a3de5b7a47b0 Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [DOCUMENTATION] Maintainer: HIP Support Provides: hip-doc -Version: 6.2.41134.60202-116~20.04 +Version: 6.3.42133.60301-48~20.04 Installed-Size: 294 -Package: hip-doc-rpath6.2.2 +Package: hip-doc-rpath6.3.1 Architecture: amd64 -Depends: hip-dev-rpath6.2.2 (= 6.2.41134.60202-116~20.04), rocm-core-rpath6.2.2 +Depends: hip-dev-rpath6.3.1 (= 6.3.42133.60301-48~20.04), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-doc-rpath6.2.2/hip-doc-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb +Filename: pool/main/h/hip-doc-rpath6.3.1/hip-doc-rpath6.3.1_6.3.42133.60301-48~20.04_amd64.deb Size: 79172 -SHA256: 01d3bc6e99f1d708b16904e6467e7a87814d031fa512146e8c68c59da76571ee -SHA1: 7ef0bdd027f6b832b1c73cafa3f1d90a861aa0ed -MD5sum: aeaa0289613430970fc15ff1d2b8666b +SHA256: 256245293c150c97b843995a7558faf3a0b443ebcd7a7708217e9294c1f85d20 +SHA1: 63b88c0660b7fe15a59836a7a654b3da828c99cf +MD5sum: ddb27c4415f50de1def1a68d79654df5 Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [DOCUMENTATION] Maintainer: HIP Support -Provides: hip-doc-rpath6.2.2 -Version: 6.2.41134.60202-116~20.04 +Provides: hip-doc-rpath6.3.1 +Version: 6.3.42133.60301-48~20.04 Installed-Size: 294 -Package: hip-doc6.2.2 +Package: hip-doc6.3.1 Architecture: amd64 -Depends: hip-dev6.2.2 (= 6.2.41134.60202-116~20.04), rocm-core6.2.2 +Depends: hip-dev6.3.1 (= 6.3.42133.60301-48~20.04), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-doc6.2.2/hip-doc6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 79168 -SHA256: c31fa0c0f90bf9322f8f7bf6ed88ba82891a60c80c6c3c182293fa7ae3fd7834 -SHA1: 54affe81369dc4948a7eb8aae0893acfe02d1084 -MD5sum: 029507a6dda15bd98f2c5dd4e86c3056 +Filename: pool/main/h/hip-doc6.3.1/hip-doc6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 79160 +SHA256: 88214e24f537bff736a2595f17942595049e1fe7cfdfb8b7575b6c5be7594739 +SHA1: f4565c7926c98cd70cb7183f1eb106854d9fbede +MD5sum: 32b4792be55a4f655b4b128bfa02722e Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [DOCUMENTATION] Maintainer: HIP Support -Provides: hip-doc6.2.2 -Version: 6.2.41134.60202-116~20.04 +Provides: hip-doc6.3.1 +Version: 6.3.42133.60301-48~20.04 Installed-Size: 294 Package: hip-runtime-amd @@ -795,263 +378,125 @@ Architecture: amd64 Depends: hsa-rocr, rocminfo, comgr, rocm-core, rocprofiler-register, libnuma1, libstdc++6, libgcc-s1, libc6 Priority: optional Section: devel -Filename: pool/main/h/hip-runtime-amd/hip-runtime-amd_6.2.41134.60202-116~20.04_amd64.deb -Size: 13955042 -SHA256: 62a5e057fb25cdfabbbb403046475ad7720a97d009f9c1df3ee1d34f020d6334 -SHA1: 194357db52942e179bfc95fb2e0845851835d63d -MD5sum: 40c23d03c9a591fef0ab507d9f7a0521 +Filename: pool/main/h/hip-runtime-amd/hip-runtime-amd_6.3.42133.60301-48~20.04_amd64.deb +Size: 14001834 +SHA256: 35cc91fdccf6ea2b3f42750ec0d36e69147e36bf3f64cf349aa26d73ef4fae2c +SHA1: d80134c0b212710eeb20cb98d45ed541b227a560 +MD5sum: df226a6587e9feb6eb063f954dc5f1ae Description: HIP:Heterogenous-computing Interface for Portability HIP:Heterogenous-computing Interface for Portability [RUNTIME - AMD] Maintainer: HIP Support -Provides: hip-rocclr (= 6.2.41134.60202) -Replaces: hip-rocclr (= 6.2.41134.60202) -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 81182 - -Package: hip-runtime-amd-asan -Architecture: amd64 -Depends: hsa-rocr-asan, rocminfo, comgr-asan, rocm-llvm, rocm-core-asan, libnuma1, libstdc++6, libgcc-s1, libc6 -Priority: optional -Section: devel -Filename: pool/main/h/hip-runtime-amd-asan/hip-runtime-amd-asan_6.2.41134.60202-116~20.04_amd64.deb -Size: 15865878 -SHA256: dfa661e6c44986ba76f906b752f713c14e0722f83d07f0f825846517ad6cace0 -SHA1: 333eef1bfb72d0c8f3fcc1ac5d8a81afb9b8115e -MD5sum: 680c3fd0f1947f9f048bd82af911087f -Description: HIP:Heterogenous-computing Interface for Portability - HIP:Heterogenous-computing Interface for Portability [AddressSanitizer libraries] -Maintainer: HIP Support -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 104286 - -Package: hip-runtime-amd-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: dd18b13ba7768e31327b7aef08357ca3e7d1ca88 ce9dd10c3da8036813e32a2ed87f5e2243a414da 73809b3d19c0d591feb9202c10e82881ca47a8b6 -Depends: hip-runtime-amd-asan (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hip-runtime-amd-asan-dbgsym/hip-runtime-amd-asan-dbgsym_6.2.41134.60202-116~20.04_amd64.deb -Size: 16386384 -SHA256: 9fcc160b656d12c923937194bef6ab081c7f7b9f7da4802dc92ad0155f80b29d -SHA1: de7592fb42e81f9b89da7858fc3c0925889d1fd9 -MD5sum: c46d657de9a7fd44c24f0a239b8e40de -Description: debug symbols for hip-runtime-amd-asan -Maintainer: HIP Support -Package-Type: ddeb -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 51595 - -Package: hip-runtime-amd-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: dd18b13ba7768e31327b7aef08357ca3e7d1ca88 ce9dd10c3da8036813e32a2ed87f5e2243a414da 73809b3d19c0d591feb9202c10e82881ca47a8b6 -Depends: hip-runtime-amd-asan-rpath6.2.2 (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hip-runtime-amd-asan-dbgsym-rpath6.2.2/hip-runtime-amd-asan-dbgsym-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 9515604 -SHA256: 8f3f2453cba29ab0a4ecbfbcdfa187b12956e51c3231dc29e6570c26ca57e3fc -SHA1: 94967426a6ebe4820518dc8ed21d3d810cbfe37a -MD5sum: 08f26a296c15c558de475f0f6f5a35a4 -Description: debug symbols for hip-runtime-amd-asan -Maintainer: HIP Support -Package-Type: ddeb -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 51595 - -Package: hip-runtime-amd-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: dd18b13ba7768e31327b7aef08357ca3e7d1ca88 ce9dd10c3da8036813e32a2ed87f5e2243a414da 73809b3d19c0d591feb9202c10e82881ca47a8b6 -Depends: hip-runtime-amd-asan6.2.2 (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hip-runtime-amd-asan-dbgsym6.2.2/hip-runtime-amd-asan-dbgsym6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 9515136 -SHA256: 3d57e6ce53e5b041aa2d5c31b9b78ae978b8712f51b1c24c21fdd00ec2d5a3e4 -SHA1: ae6b81a2a2c82e72178a8bf2d1204385e8cd5db0 -MD5sum: a41bfcde1b5d5e917d256775eefcc988 -Description: debug symbols for hip-runtime-amd-asan -Maintainer: HIP Support -Package-Type: ddeb -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 51595 - -Package: hip-runtime-amd-asan-rpath6.2.2 -Architecture: amd64 -Depends: hsa-rocr-asan-rpath6.2.2, rocminfo, comgr-asan-rpath6.2.2, rocm-llvm, rocm-core-asan-rpath6.2.2, libnuma1, libstdc++6, libgcc-s1, libc6 -Priority: optional -Section: devel -Filename: pool/main/h/hip-runtime-amd-asan-rpath6.2.2/hip-runtime-amd-asan-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 11611476 -SHA256: 4da7c16c66815b1c24dc74348ec06de747c81b500770db0cd5900576e1f4ddcd -SHA1: 9dd0e1b4b10ef9e710eec80d70befa1e79707d6c -MD5sum: e8eaa0b09b7c40adcd369e6f382118f9 -Description: HIP:Heterogenous-computing Interface for Portability - HIP:Heterogenous-computing Interface for Portability [AddressSanitizer libraries] -Maintainer: HIP Support -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 104286 - -Package: hip-runtime-amd-asan6.2.2 -Architecture: amd64 -Depends: hsa-rocr-asan6.2.2, rocminfo, comgr-asan6.2.2, rocm-llvm, rocm-core-asan6.2.2, libnuma1, libstdc++6, libgcc-s1, libc6 -Priority: optional -Section: devel -Filename: pool/main/h/hip-runtime-amd-asan6.2.2/hip-runtime-amd-asan6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 11610460 -SHA256: 0714b00b9a50d7481c3b8d95b5c699a3ce708ca2ed89151e9f5170f7e4da6351 -SHA1: 971dc916b29e614f0ef1dc33120abb9be4188b0e -MD5sum: 6a732c3cf04c19c25bf73e13dfd7514b -Description: HIP:Heterogenous-computing Interface for Portability - HIP:Heterogenous-computing Interface for Portability [AddressSanitizer libraries] -Maintainer: HIP Support -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 104286 +Provides: hip-rocclr (= 6.3.42133.60301) +Replaces: hip-rocclr (= 6.3.42133.60301) +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 81651 Package: hip-runtime-amd-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: db3df50ab7491c7957c70874e1c97f110e37e130 18f18c89fda46b6b126803b84e3bf66325a64160 0af4a1de7da3c798fdc68e42f607bae1e8df3bc3 -Depends: hip-runtime-amd (= 6.2.41134.60202-116~20.04) +Build-Ids: aa95938ca3bdaad0fd12d1bdd39221be2b3a60e4 7366c61b3f88ae747a43c9a003860d66be2dab6f 424c9f943f9a5796eb8badecada61a9d00f5e17f +Depends: hip-runtime-amd (= 6.3.42133.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hip-runtime-amd-dbgsym/hip-runtime-amd-dbgsym_6.2.41134.60202-116~20.04_amd64.deb -Size: 32278788 -SHA256: b53dfc87fcaa8c6ef80fa97295c6fb7b159f1178d1b3dfd59b985c139508410e -SHA1: c4bdc808c017732c9386981303ff1f2015b50055 -MD5sum: 7d8a848e3d62eb341f6beb16e30162c8 +Filename: pool/main/h/hip-runtime-amd-dbgsym/hip-runtime-amd-dbgsym_6.3.42133.60301-48~20.04_amd64.deb +Size: 32784052 +SHA256: 8655d7aa830f6b4efe10d96767775df9c1b551d4ab05b0e74088dc61b07af0b7 +SHA1: 2ec53ea636fe9da6d7792db0a678acb090308910 +MD5sum: bb0e1e7c12c1ccbe86320e0d8997ebd0 Description: debug symbols for hip-runtime-amd Maintainer: HIP Support Package-Type: ddeb -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 115402 +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 116944 -Package: hip-runtime-amd-dbgsym-rpath6.2.2 +Package: hip-runtime-amd-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: db3df50ab7491c7957c70874e1c97f110e37e130 18f18c89fda46b6b126803b84e3bf66325a64160 0af4a1de7da3c798fdc68e42f607bae1e8df3bc3 -Depends: hip-runtime-amd-rpath6.2.2 (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hip-runtime-amd-dbgsym-rpath6.2.2/hip-runtime-amd-dbgsym-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 20418612 -SHA256: 13c1f0e0dc875632bc9d4c981c960d537ea5b7726fcba293b56e61eafb729cc4 -SHA1: 9769c7a7f0391c01e242fd29d8ac13d433c687b0 -MD5sum: 400e5f861d6de0bb11d00a3bf5a07ec1 -Description: debug symbols for hip-runtime-amd -Maintainer: HIP Support -Package-Type: ddeb -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 115402 - -Package: hip-runtime-amd-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: db3df50ab7491c7957c70874e1c97f110e37e130 18f18c89fda46b6b126803b84e3bf66325a64160 0af4a1de7da3c798fdc68e42f607bae1e8df3bc3 -Depends: hip-runtime-amd6.2.2 (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hip-runtime-amd-dbgsym6.2.2/hip-runtime-amd-dbgsym6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 20413640 -SHA256: 29bff99cca7c614659505a198bc95395884f68e72de7942af4410f0cf5b96270 -SHA1: 23d6cb4e10b1e12d56a6158c1e6507361a7fa3a0 -MD5sum: b25c12cdfbfaf98c5a4683dccd6d6a98 -Description: debug symbols for hip-runtime-amd -Maintainer: HIP Support -Package-Type: ddeb -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 115402 - -Package: hip-runtime-amd-rpath6.2.2 -Architecture: amd64 -Depends: hsa-rocr-rpath6.2.2, rocminfo-rpath6.2.2, comgr-rpath6.2.2, rocm-core-rpath6.2.2, rocprofiler-register-rpath6.2.2, libnuma1, libstdc++6, libgcc-s1, libc6 +Depends: hsa-rocr-rpath6.3.1, rocminfo-rpath6.3.1, comgr-rpath6.3.1, rocm-core-rpath6.3.1, rocprofiler-register-rpath6.3.1, libnuma1, libstdc++6, libgcc-s1, libc6 Priority: optional Section: devel -Filename: pool/main/h/hip-runtime-amd-rpath6.2.2/hip-runtime-amd-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 10540464 -SHA256: cc405c7dd1883e89c0915f5f48d6dd2085ad294907e372c3ec36ae5f8f505fc0 -SHA1: 3b197a21beb8bcea3ccbc51bb2324b93f9f1d321 -MD5sum: 254ceec124a9546da272630e42a728a8 +Filename: pool/main/h/hip-runtime-amd-rpath6.3.1/hip-runtime-amd-rpath6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 10559856 +SHA256: c74229b0174862ca5b0ddeb67aa2d2d7b2637d85c79e79f190c384ac3ebe3cc2 +SHA1: 25aec3335d9f2d3cac74e8cd90644fdfe26bf6ce +MD5sum: b06cc0ffd32759b853122c77de50eb83 Description: HIP:Heterogenous-computing Interface for Portability HIP:Heterogenous-computing Interface for Portability [RUNTIME - AMD] Maintainer: HIP Support -Provides: hip-rocclr-rpath6.2.2 (= 6.2.41134.60202) -Replaces: hip-rocclr-rpath6.2.2 (= 6.2.41134.60202) -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 81182 +Provides: hip-rocclr-rpath6.3.1 (= 6.3.42133.60301) +Replaces: hip-rocclr-rpath6.3.1 (= 6.3.42133.60301) +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 81651 -Package: hip-runtime-amd6.2.2 +Package: hip-runtime-amd6.3.1 Architecture: amd64 -Depends: hsa-rocr6.2.2, rocminfo6.2.2, comgr6.2.2, rocm-core6.2.2, rocprofiler-register6.2.2, libnuma1, libstdc++6, libgcc-s1, libc6 +Depends: hsa-rocr6.3.1, rocminfo6.3.1, comgr6.3.1, rocm-core6.3.1, rocprofiler-register6.3.1, libnuma1, libstdc++6, libgcc-s1, libc6 Priority: optional Section: devel -Filename: pool/main/h/hip-runtime-amd6.2.2/hip-runtime-amd6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 10544072 -SHA256: 9b48d2f8b282dffbf6e5e9306f174db7e40efa2a2c18f360a0b3f1648884238a -SHA1: cc1db30599d213c7329c2623803f6c51a1cbdc5f -MD5sum: 449ccb89de522ed31b697558a97c8735 +Filename: pool/main/h/hip-runtime-amd6.3.1/hip-runtime-amd6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 10561328 +SHA256: c9ffe5a116c4af408e6d8262671e0868b1539bdd233dd0771f30649ffacd5d85 +SHA1: ba7bb88590d48a861ae6c6752a9c1620b3621b00 +MD5sum: b1bcf7450d9f00e782caaff7893ae5ce Description: HIP:Heterogenous-computing Interface for Portability HIP:Heterogenous-computing Interface for Portability [RUNTIME - AMD] Maintainer: HIP Support -Provides: hip-rocclr6.2.2 (= 6.2.41134.60202) -Replaces: hip-rocclr6.2.2 (= 6.2.41134.60202) -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 81182 +Provides: hip-rocclr6.3.1 (= 6.3.42133.60301) +Replaces: hip-rocclr6.3.1 (= 6.3.42133.60301) +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 81651 Package: hip-runtime-nvidia Architecture: amd64 Depends: cuda (>= 7.5), rocm-core, hipcc-nvidia Priority: optional Section: devel -Filename: pool/main/h/hip-runtime-nvidia/hip-runtime-nvidia_6.2.41134.60202-116~20.04_amd64.deb -Size: 694 -SHA256: d53d8632e8ba6c8e0de299e8c6f313e4c2907be511ddf3dd301f44008e9acde8 -SHA1: 5963f5a25260175958aeb14b24a9f02171fb9e14 -MD5sum: 09c100e2df8b451fbe5c1307fb1d8616 +Filename: pool/main/h/hip-runtime-nvidia/hip-runtime-nvidia_6.3.42133.60301-48~20.04_amd64.deb +Size: 692 +SHA256: 96536aa3e03cad6eeef1d7c3c31886b4005c7c60299eada86542dffac0947eb2 +SHA1: 39190ac984dfd8a92a8fa3c64ed2b26b4d9999ee +MD5sum: 926a08e55c5d2ba391f75fba184a1e97 Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [RUNTIME-NVIDIA] Maintainer: HIP Support Provides: hip-nvcc Replaces: hip-nvcc -Version: 6.2.41134.60202-116~20.04 +Version: 6.3.42133.60301-48~20.04 Installed-Size: 8 -Package: hip-runtime-nvidia-rpath6.2.2 +Package: hip-runtime-nvidia-rpath6.3.1 Architecture: amd64 -Depends: cuda (>= 7.5), rocm-core-rpath6.2.2, hipcc-nvidia-rpath6.2.2 +Depends: cuda (>= 7.5), rocm-core-rpath6.3.1, hipcc-nvidia-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-runtime-nvidia-rpath6.2.2/hip-runtime-nvidia-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 916 -SHA256: da4627f0e65e77f25a83b0d325d1e266c6f7c5eed2321ad151852c327cf63903 -SHA1: e91fc21d85537b54366c1fecc437d26eb8d42b3f -MD5sum: 15bd4698e53ec5df0be4fc3478b3d239 +Filename: pool/main/h/hip-runtime-nvidia-rpath6.3.1/hip-runtime-nvidia-rpath6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 912 +SHA256: 921465afb29655fa0a0d0c8b3d8bdc717ae4a62dc9ba3452bb0eb06aa510444a +SHA1: 50a4aa7ad3ea7afcd8dd763b73021892fddb8e8c +MD5sum: d2180cce1f46db603b852833f6179751 Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [RUNTIME-NVIDIA] Maintainer: HIP Support -Provides: hip-nvcc-rpath6.2.2 -Replaces: hip-nvcc-rpath6.2.2 -Version: 6.2.41134.60202-116~20.04 +Provides: hip-nvcc-rpath6.3.1 +Replaces: hip-nvcc-rpath6.3.1 +Version: 6.3.42133.60301-48~20.04 Installed-Size: 8 -Package: hip-runtime-nvidia6.2.2 +Package: hip-runtime-nvidia6.3.1 Architecture: amd64 -Depends: cuda (>= 7.5), rocm-core6.2.2, hipcc-nvidia6.2.2 +Depends: cuda (>= 7.5), rocm-core6.3.1, hipcc-nvidia6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-runtime-nvidia6.2.2/hip-runtime-nvidia6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 904 -SHA256: ab577b987460cab11a3559eba7310d564ffd2d30a25526639f96a6aa8313f08c -SHA1: 4b9394d3c8a5cd38e947905898cc060dda4fb470 -MD5sum: e9f03a1c2d88c86d21c9bcc56bb988d5 +Filename: pool/main/h/hip-runtime-nvidia6.3.1/hip-runtime-nvidia6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 908 +SHA256: 255da5a8666ad3bed3b6e4fab63b94ce07e16324e758ecf757454e1aed6fc8c4 +SHA1: 575351b50d188a6ec04435a3fa41392d177c9733 +MD5sum: 2c120abcb744c87f09d562c9a57fb9d3 Description: HIP:Heterogenous-computing Interface for Portability HIP: Heterogenous-computing Interface for Portability [RUNTIME-NVIDIA] Maintainer: HIP Support -Provides: hip-nvcc6.2.2 -Replaces: hip-nvcc6.2.2 -Version: 6.2.41134.60202-116~20.04 +Provides: hip-nvcc6.3.1 +Replaces: hip-nvcc6.3.1 +Version: 6.3.42133.60301-48~20.04 Installed-Size: 8 Package: hip-samples @@ -1059,948 +504,606 @@ Architecture: amd64 Depends: rocm-core, hip-dev, hipcc Priority: optional Section: devel -Filename: pool/main/h/hip-samples/hip-samples_6.2.41134.60202-116~20.04_amd64.deb -Size: 51330 -SHA256: 4b49f2cebb134db46a87ef8514d63574d9b2e3361647d89699635939833d602f -SHA1: cedea8a6f9ff345bea29253f278ff8c43faf6598 -MD5sum: e705b4557375c27ba9ff8e51cb4dc127 +Filename: pool/main/h/hip-samples/hip-samples_6.3.42133.60301-48~20.04_amd64.deb +Size: 51700 +SHA256: 9ff0a25e95a138d2fbe6178084f3f5dc77884936fa5cb8ccd745f0db25eb36ba +SHA1: 998a182e4d79177055e00c8063a0c0fe00eea360 +MD5sum: 74882a2dcd7d80fe51479a8ba2c344f2 Description: HIP: Heterogenous-computing Interface for Portability [HIP SAMPLES] HIP: Heterogenous-computing Interface for Portability [HIP SAMPLES] Maintainer: HIP Support Provides: hip-samples -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 461 +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 462 -Package: hip-samples-rpath6.2.2 +Package: hip-samples-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, hip-dev-rpath6.2.2, hipcc-rpath6.2.2 +Depends: rocm-core-rpath6.3.1, hip-dev-rpath6.3.1, hipcc-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-samples-rpath6.2.2/hip-samples-rpath6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 38912 -SHA256: f315226e740cb962a40f4336fcb8bf0f5a52b239a8619497bf23ba182e66d236 -SHA1: 7d0b2397203ee5087b80d0edd62208bf4be76729 -MD5sum: ba6b3f7acbd9d0b73cdd0a5047936c3f +Filename: pool/main/h/hip-samples-rpath6.3.1/hip-samples-rpath6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 39120 +SHA256: a8abf24681ea88fa8f0da972be021d45df3663d5f89e2b7070edcc6af1d5b972 +SHA1: 63438325d00ad9e7884005049d400c0a85659db4 +MD5sum: 039f3c324aa4125327cc435bb428eb49 Description: HIP: Heterogenous-computing Interface for Portability [HIP SAMPLES] HIP: Heterogenous-computing Interface for Portability [HIP SAMPLES] Maintainer: HIP Support -Provides: hip-samples-rpath6.2.2 -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 461 +Provides: hip-samples-rpath6.3.1 +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 462 -Package: hip-samples6.2.2 +Package: hip-samples6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, hip-dev6.2.2, hipcc6.2.2 +Depends: rocm-core6.3.1, hip-dev6.3.1, hipcc6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hip-samples6.2.2/hip-samples6.2.2_6.2.41134.60202-116~20.04_amd64.deb -Size: 38916 -SHA256: 36e09abb304ba331b493efc43f41a22ccae171662593c8379683a0155657a224 -SHA1: 284273e309e646cebd6bdb525166be822e8509fb -MD5sum: fccf128eec72130a71fb78a01058f6f6 +Filename: pool/main/h/hip-samples6.3.1/hip-samples6.3.1_6.3.42133.60301-48~20.04_amd64.deb +Size: 39124 +SHA256: aecf98536c17c5a0d2d0a668e601de61f3a1d051a3f8541562cd4f61ec027b83 +SHA1: 639b4a60bf70bc5488cf6d779894bb639730d6d5 +MD5sum: 5d03836d0d9001ee9bf54b59c222ca66 Description: HIP: Heterogenous-computing Interface for Portability [HIP SAMPLES] HIP: Heterogenous-computing Interface for Portability [HIP SAMPLES] Maintainer: HIP Support -Provides: hip-samples6.2.2 -Version: 6.2.41134.60202-116~20.04 -Installed-Size: 461 +Provides: hip-samples6.3.1 +Version: 6.3.42133.60301-48~20.04 +Installed-Size: 462 Package: hipblas Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocm-core +Depends: rocblas (>= 4.3.0), rocsolver (>= 3.27.0), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipblas/hipblas_2.2.0.60202-116~20.04_amd64.deb -Size: 134530 -SHA256: 5dd490b88214cba7c4d2a0c9a4eddefa608870ee494f21d3a588949287f3acba -SHA1: dd49da385b47a726d26f846d8367ec596f947fd9 -MD5sum: 1d3be0c44eff9838a62776a9c2c468b9 +Filename: pool/main/h/hipblas/hipblas_2.3.0.60301-48~20.04_amd64.deb +Size: 153796 +SHA256: c918d35a3e2fabd43b5a995b400810345e1bb068c28b1123ce2e0ce82cf2d7ff +SHA1: e312c9f0ba6f77285fa345f645e1e4840b9cdfc7 +MD5sum: 4be4144491b9a2565246729201a6d833 Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLAS Maintainer -Recommends: hipblas-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 2090 +Recommends: hipblas-dev (>=2.3.0.60301) +Version: 2.3.0.60301-48~20.04 +Installed-Size: 2380 -Package: hipblas-asan +Package: hipblas-common-dev Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocm-core-asan +Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipblas-asan/hipblas-asan_2.2.0.60202-116~20.04_amd64.deb -Size: 215342 -SHA256: a6aac687c50bf44eacada4c45fd02b1a27dd71bd9167c16d160e6151e9ce4ef7 -SHA1: af01543fbee42a4eb19c0f0eb29daa4b28023633 -MD5sum: 7d787719c1dc9a6b2d7aa01c58258d7a -Description: Radeon Open Compute BLAS marshalling library +Filename: pool/main/h/hipblas-common-dev/hipblas-common-dev_1.0.0.60301-48~20.04_amd64.deb +Size: 5766 +SHA256: acf1095251751195f6c0331da255b8d25f4f37943abe242ffa8028f08e179617 +SHA1: 06411a1b9ceae81279bde39d3566d022cc455843 +MD5sum: f566943e07c93e3cb7b5ce40da776d53 +Description: Common files for hipBLAS libraries Maintainer: hipBLAS Maintainer -Recommends: hipblas-asan-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 4850 +Provides: hipblas-common (= 1.0.0.60301) +Version: 1.0.0.60301-48~20.04 +Installed-Size: 57 -Package: hipblas-asan-dbgsym +Package: hipblas-common-dev-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3babd0aecde14c20ce237f7892725bcb72ab085f -Depends: hipblas-asan (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipblas-asan-dbgsym/hipblas-asan-dbgsym_2.2.0.60202-116~20.04_amd64.deb -Size: 636452 -SHA256: a3555bd29dbc026c1150cdb83da03e20fab5af4f8f36d38d5d82de2a466fcbce -SHA1: 05264b7c440a5d653ccf7336c08901a861c52269 -MD5sum: bb64dfe1d27ef797828a8258b9c4959f -Description: debug symbols for hipblas-asan -Maintainer: hipBLAS Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 1202 - -Package: hipblas-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3babd0aecde14c20ce237f7892725bcb72ab085f -Depends: hipblas-asan-rpath6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipblas-asan-dbgsym-rpath6.2.2/hipblas-asan-dbgsym-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 636392 -SHA256: d66494819a0b8e8e7ba9738bd348c3c55b22a070b911ffa51a0ffe4c17368fe9 -SHA1: cc7d44be11cb72c5b0aac345768232cac1f2bd8d -MD5sum: 0135b30d3850e6de57ff0936d1e42167 -Description: debug symbols for hipblas-asan -Maintainer: hipBLAS Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 1202 - -Package: hipblas-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3babd0aecde14c20ce237f7892725bcb72ab085f -Depends: hipblas-asan6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipblas-asan-dbgsym6.2.2/hipblas-asan-dbgsym6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 637280 -SHA256: 9c975dc6ef690bee5cd67030a2bb842da5e55675b0db47bae22b38dd5f2c493a -SHA1: 7af773bca8544859dbd4e39f5e3510867d8e9b4e -MD5sum: d3a1d165f6a5f1fdd63dfed3da755ee4 -Description: debug symbols for hipblas-asan -Maintainer: hipBLAS Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 1202 - -Package: hipblas-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocm-core-asan-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipblas-asan-rpath6.2.2/hipblas-asan-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 215080 -SHA256: c2f0a48bff54ec3512198c40a328f36e9f0a42bf13af342909a0064ff786fa0c -SHA1: 507d9b3ab9a1a8595a815b4be17f564e77b2bba3 -MD5sum: c9e5e6fa22d72bc9e65be3cbab69a8b7 -Description: Radeon Open Compute BLAS marshalling library +Filename: pool/main/h/hipblas-common-dev-rpath6.3.1/hipblas-common-dev-rpath6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 5908 +SHA256: 86464cf27dfab22d904bf82af090fd139a222ce8ff06e1363744843200ef2303 +SHA1: 71a9ab8cf9f1c90f015d80701eea087498f571ea +MD5sum: 492b05be93c450fcf269254806c600f3 +Description: Common files for hipBLAS libraries Maintainer: hipBLAS Maintainer -Recommends: hipblas-asan-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 4850 +Provides: hipblas-common-rpath6.3.1 (= 1.0.0.60301) +Version: 1.0.0.60301-48~20.04 +Installed-Size: 57 -Package: hipblas-asan6.2.2 +Package: hipblas-common-dev6.3.1 Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocm-core-asan6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipblas-asan6.2.2/hipblas-asan6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 214744 -SHA256: 13212b8058d5356546d131f20406172840a4e8c7fd70e039b2f4fef119c6eb0d -SHA1: 8c0183a1d951cf7cb1717b3c6dc411b80409c0b5 -MD5sum: 842569f53e02dfb51e01d013a77464d4 -Description: Radeon Open Compute BLAS marshalling library +Filename: pool/main/h/hipblas-common-dev6.3.1/hipblas-common-dev6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 5900 +SHA256: e72049361c13a49f42f83b288dd3686a296eccec73f725f145f9e253225eef87 +SHA1: a3e9a55678ecf6ccecea72c3a27a28faf8ad5068 +MD5sum: 06cd1e899d0d8556b807dc4d47028810 +Description: Common files for hipBLAS libraries Maintainer: hipBLAS Maintainer -Recommends: hipblas-asan-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 4850 +Provides: hipblas-common6.3.1 (= 1.0.0.60301) +Version: 1.0.0.60301-48~20.04 +Installed-Size: 57 Package: hipblas-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: eb99e1e65a906b3d017151d7c5d149e038ed188f -Depends: hipblas (= 2.2.0.60202-116~20.04) +Build-Ids: aeccec9a71cadf8856172e7d52262daebc464fb9 +Depends: hipblas (= 2.3.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hipblas-dbgsym/hipblas-dbgsym_2.2.0.60202-116~20.04_amd64.deb -Size: 706714 -SHA256: 15add6b537b773b6ebc74d4b90a6bf18fef5a42a2c3233529f1702ec6a0d7bb5 -SHA1: ef3e9b073c2040dbd48cfd63175364d0a331b771 -MD5sum: a7a152079082aea713e7c06ea36dca42 +Filename: pool/main/h/hipblas-dbgsym/hipblas-dbgsym_2.3.0.60301-48~20.04_amd64.deb +Size: 806004 +SHA256: 19d55c099a2ce1d77938d3ce4219b9924ecdfca8239edf530cfbc79f01c4d574 +SHA1: 1ced3c7e40382950a756f984cf06a61661624118 +MD5sum: 5e4f35a4446693838db1bb180af3c27d Description: debug symbols for hipblas Maintainer: hipBLAS Maintainer Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 5208 - -Package: hipblas-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eb99e1e65a906b3d017151d7c5d149e038ed188f -Depends: hipblas-rpath6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipblas-dbgsym-rpath6.2.2/hipblas-dbgsym-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 703676 -SHA256: a0be30abcb54e769d63ae5cdd160517d6ae3cc7812b5b9a3b198ef7dcb657bac -SHA1: f8d3d4432da23f3d0c700e12a3005cdb2f8d49d1 -MD5sum: 7d1b8f3ded781f2f15f52bd7bd6ae750 -Description: debug symbols for hipblas -Maintainer: hipBLAS Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 5208 - -Package: hipblas-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eb99e1e65a906b3d017151d7c5d149e038ed188f -Depends: hipblas6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipblas-dbgsym6.2.2/hipblas-dbgsym6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 703532 -SHA256: f0cd5f503afb75b9e991301c4437002d0c3a23afa0a36e6d84eb6486828ee20e -SHA1: fed9ae16bd041949a4874a725bad7689bda2cc14 -MD5sum: 5a9291b1824831b7df659a8c6ea66301 -Description: debug symbols for hipblas -Maintainer: hipBLAS Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 5208 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 6035 Package: hipblas-dev Architecture: amd64 -Depends: hipblas (>= 2.2.0.60202) +Depends: hipblas-common-dev (>= 1.0.0), hipblas (>= 2.3.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipblas-dev/hipblas-dev_2.2.0.60202-116~20.04_amd64.deb -Size: 89416 -SHA256: 25ecec4bf2e9bbe2d60136641132afc49e6be06d1a83f6883c52d13885a46002 -SHA1: 7ecb381c8d89f0b8f977145ee6531e6c3218cbc9 -MD5sum: 9db2de104fbfcd2ec77938bda09fc997 +Filename: pool/main/h/hipblas-dev/hipblas-dev_2.3.0.60301-48~20.04_amd64.deb +Size: 98288 +SHA256: 55cf6e3c18d205f2ae6fcd7a689fc7a0ebe0294604e297e39afebba3d395d486 +SHA1: 79054a61453efe7322d64046ce6615b98eb471f1 +MD5sum: 4abf2ddb715cf04807199e8a4ed3fa3e Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLAS Maintainer -Version: 2.2.0.60202-116~20.04 -Installed-Size: 2784 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 3213 -Package: hipblas-dev-rpath6.2.2 +Package: hipblas-dev-rpath6.3.1 Architecture: amd64 -Depends: hipblas-rpath6.2.2 (>= 2.2.0.60202) +Depends: hipblas-common-dev-rpath6.3.1 (>= 1.0.0), hipblas-rpath6.3.1 (>= 2.3.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipblas-dev-rpath6.2.2/hipblas-dev-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 89624 -SHA256: 34737a96ca2e099e3c84646310c4f450ce9835f436fc0ee72d22f43f2eb62261 -SHA1: da44632441be319455c1f7e504d0442373f4f2e3 -MD5sum: 05c2f9108977f8d4f5de7881e31714a5 +Filename: pool/main/h/hipblas-dev-rpath6.3.1/hipblas-dev-rpath6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 98360 +SHA256: 09ba53623e85a4ff60814d2cc3218f3df8aef1c23a646cd60958432b18ae22a3 +SHA1: fdae55aa4291c783c1464f4feb7979a7723b58f4 +MD5sum: f13de49f74d0bddf60117c605b0964bc Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLAS Maintainer -Version: 2.2.0.60202-116~20.04 -Installed-Size: 2784 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 3213 -Package: hipblas-dev6.2.2 +Package: hipblas-dev6.3.1 Architecture: amd64 -Depends: hipblas6.2.2 (>= 2.2.0.60202) +Depends: hipblas-common-dev6.3.1 (>= 1.0.0), hipblas6.3.1 (>= 2.3.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipblas-dev6.2.2/hipblas-dev6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 89668 -SHA256: 2cc54906cc9bdecebbacd6d4c5c4aa0f3f6e63e6e272f70267b1c78331f05eb8 -SHA1: b2c89b73dd8fc4ae8783356a65947cec45c8a4a6 -MD5sum: 1ded48be4a8e7377853210819765dfe1 +Filename: pool/main/h/hipblas-dev6.3.1/hipblas-dev6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 98356 +SHA256: 818e841785e822ef56ceb1428e13f57491d1f724e0aa4c6b85b6919003092dde +SHA1: ce7b90d7b4a37330d6032551316395adaa6fd9bc +MD5sum: 826450694351d026298c2e75e3483719 Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLAS Maintainer -Version: 2.2.0.60202-116~20.04 -Installed-Size: 2784 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 3213 -Package: hipblas-rpath6.2.2 +Package: hipblas-rpath6.3.1 Architecture: amd64 -Depends: rocblas-rpath6.2.2 (>= 4.2.0), rocsolver-rpath6.2.2 (>= 3.26.0), rocm-core-rpath6.2.2 +Depends: rocblas-rpath6.3.1 (>= 4.3.0), rocsolver-rpath6.3.1 (>= 3.27.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipblas-rpath6.2.2/hipblas-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 132892 -SHA256: 3a651c331a77f55859a079caa78376d1d008d5f67f322ac2c920f4aa5358bced -SHA1: 8bbc4dcc9f9e81fa697fa7613c2ecf2cec1dc9d1 -MD5sum: ee43e8978dc2a478505b04d0811f2674 +Filename: pool/main/h/hipblas-rpath6.3.1/hipblas-rpath6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 153224 +SHA256: 6e4477c4329be3f7a3b408a562e9fb0be225d1d3502198c3a3618ee135274557 +SHA1: e2b8595d302af38cad28ddb97b9bb2345f83d2b6 +MD5sum: c699467e815237fd4e1263141eabfe63 Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLAS Maintainer -Recommends: hipblas-dev-rpath6.2.2 (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 2090 +Recommends: hipblas-dev-rpath6.3.1 (>=2.3.0.60301) +Version: 2.3.0.60301-48~20.04 +Installed-Size: 2380 -Package: hipblas6.2.2 +Package: hipblas6.3.1 Architecture: amd64 -Depends: rocblas6.2.2 (>= 4.2.0), rocsolver6.2.2 (>= 3.26.0), rocm-core6.2.2 +Depends: rocblas6.3.1 (>= 4.3.0), rocsolver6.3.1 (>= 3.27.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipblas6.2.2/hipblas6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 134752 -SHA256: 207fe52dfb750da3add2f3c40e3e9f80aa6ce39d49e93458d830786f180741d0 -SHA1: 9bf61d0ec17743640459af9503454cf16066b907 -MD5sum: f4b400f1235740b2773aa468a91f8bd5 +Filename: pool/main/h/hipblas6.3.1/hipblas6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 152600 +SHA256: 09a9b967b097465b2d02fbb75b0d35868529d3c3590f091036159bb8874406a9 +SHA1: 195b87d68e7331233b76b6e836c4477a8c2ca1db +MD5sum: 2155c925596d15f901313fa77f86f178 Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLAS Maintainer -Recommends: hipblas-dev6.2.2 (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 2090 +Recommends: hipblas-dev6.3.1 (>=2.3.0.60301) +Version: 2.3.0.60301-48~20.04 +Installed-Size: 2380 Package: hipblaslt Architecture: amd64 -Depends: hipblas (>= 0.50.0), rocm-core +Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipblaslt/hipblaslt_0.8.0.60202-116~20.04_amd64.deb -Size: 994274 -SHA256: 24751862eebcb346b87fff2fd26565ce7d04d8c847f9bd927e1d13afc6a4f581 -SHA1: 1348a47e9d48e8d30256f190b33e29c3ecdfa609 -MD5sum: 82ae5fdf5324234f2a47e811131ed623 +Filename: pool/main/h/hipblaslt/hipblaslt_0.10.0.60301-48~20.04_amd64.deb +Size: 328526456 +SHA256: c132fa397fa8ee15755f403d5d3793c7fd2ee87a48e42bc56c15e5bf54191eee +SHA1: 1270c3e6cd51c4a8fe0fc3297bf1bf46aff9eb93 +MD5sum: c6bbce7c9bdc7b83bff0af6ae8ecdb53 Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLASLt Maintainer -Recommends: hipblaslt-dev (>=0.8.0.60202) -Version: 0.8.0.60202-116~20.04 -Installed-Size: 20243 - -Package: hipblaslt-asan -Architecture: amd64 -Depends: hipblas (>= 0.50.0), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hipblaslt-asan/hipblaslt-asan_0.8.0.60202-116~20.04_amd64.deb -Size: 18059948 -SHA256: ad922f8aff6dec0228ce12c485e2e950a4f7cd87f71ae8d31a4555cfa82acd94 -SHA1: f4dd183498e432948375562c8e57e7075f03465b -MD5sum: 23fe7e66af4c046a00d3f171faa1f0c9 -Description: Radeon Open Compute BLAS marshalling library -Maintainer: hipBLASLt Maintainer -Recommends: hipblaslt-asan-dev (>=0.8.0.60202) -Version: 0.8.0.60202-116~20.04 -Installed-Size: 69407 - -Package: hipblaslt-asan-rpath6.2.2 -Architecture: amd64 -Depends: hipblas (>= 0.50.0), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipblaslt-asan-rpath6.2.2/hipblaslt-asan-rpath6.2.2_0.8.0.60202-116~20.04_amd64.deb -Size: 18060020 -SHA256: 34b10a71e9e6c3a20c67bfdcf935be62bb06ed0b0b60f1e6a128487ba972ec1e -SHA1: 71249408a8bbabc902a5bf992675daabaae77227 -MD5sum: fd1ee6824c842dd77c278d78c4f017e7 -Description: Radeon Open Compute BLAS marshalling library -Maintainer: hipBLASLt Maintainer -Recommends: hipblaslt-asan-dev (>=0.8.0.60202) -Version: 0.8.0.60202-116~20.04 -Installed-Size: 69407 - -Package: hipblaslt-asan6.2.2 -Architecture: amd64 -Depends: hipblas (>= 0.50.0), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipblaslt-asan6.2.2/hipblaslt-asan6.2.2_0.8.0.60202-116~20.04_amd64.deb -Size: 18059960 -SHA256: 61b33743faa019761b182604e0bb921b26ceda50026ce000bc0f7ffa3f47f315 -SHA1: 399f0252080d1a6c95eeab93058b744024926685 -MD5sum: 8bd506ca868321309666298378d15f6b -Description: Radeon Open Compute BLAS marshalling library -Maintainer: hipBLASLt Maintainer -Recommends: hipblaslt-asan-dev (>=0.8.0.60202) -Version: 0.8.0.60202-116~20.04 -Installed-Size: 69407 +Recommends: hipblaslt-dev (>=0.10.0.60301) +Version: 0.10.0.60301-48~20.04 +Installed-Size: 11114075 Package: hipblaslt-dev Architecture: amd64 -Depends: hipblaslt (>= 0.8.0.60202) +Depends: hipblas-common-dev (>= 1.0.0), hipblaslt (>= 0.10.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipblaslt-dev/hipblaslt-dev_0.8.0.60202-116~20.04_amd64.deb -Size: 171387994 -SHA256: 7486bf1129c6333f68e6fd48b1f9b5df9d9f2d7c6f3ec98cc04c886a935f52e8 -SHA1: 659e65ab9af5c874e5abc776dbb0ee67e1b7f409 -MD5sum: 15066f00f1ae21fefb5f2f8fae50809b +Filename: pool/main/h/hipblaslt-dev/hipblaslt-dev_0.10.0.60301-48~20.04_amd64.deb +Size: 27040 +SHA256: fae09aefe473e4c0273e81c60b31d881a637825fdacd93e3735ee72d7b3bde45 +SHA1: 8fd075b1c3ffdb9d017aa252583c03324bacd3f3 +MD5sum: e0cf98040f5202204bafaecfe1081c55 Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLASLt Maintainer -Version: 0.8.0.60202-116~20.04 -Installed-Size: 4938335 +Version: 0.10.0.60301-48~20.04 +Installed-Size: 231 -Package: hipblaslt-dev-rpath6.2.2 +Package: hipblaslt-dev-rpath6.3.1 Architecture: amd64 -Depends: hipblaslt-rpath6.2.2 (>= 0.8.0.60202) +Depends: hipblas-common-dev-rpath6.3.1 (>= 1.0.0), hipblaslt-rpath6.3.1 (>= 0.10.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipblaslt-dev-rpath6.2.2/hipblaslt-dev-rpath6.2.2_0.8.0.60202-116~20.04_amd64.deb -Size: 171288008 -SHA256: 2f441b4ce6b40462203097d16a25392519569258d5cdf4b4f2f4992f1f133f4d -SHA1: 26c50c9b024252dd342ffa980973466828eb0d7c -MD5sum: d023939e6de70e3c21e101fbdc6e8d00 +Filename: pool/main/h/hipblaslt-dev-rpath6.3.1/hipblaslt-dev-rpath6.3.1_0.10.0.60301-48~20.04_amd64.deb +Size: 27180 +SHA256: 4752c456f6a235be11a7906650414be0b54b4128f8f460947f48435a35b4bb2c +SHA1: 209d68339f5b2df92b246dcd9319e2c0b1640da7 +MD5sum: 5d058449bdb619791f4d732537e0a49d Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLASLt Maintainer -Version: 0.8.0.60202-116~20.04 -Installed-Size: 4938335 +Version: 0.10.0.60301-48~20.04 +Installed-Size: 231 -Package: hipblaslt-dev6.2.2 +Package: hipblaslt-dev6.3.1 Architecture: amd64 -Depends: hipblaslt6.2.2 (>= 0.8.0.60202) +Depends: hipblas-common-dev6.3.1 (>= 1.0.0), hipblaslt6.3.1 (>= 0.10.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipblaslt-dev6.2.2/hipblaslt-dev6.2.2_0.8.0.60202-116~20.04_amd64.deb -Size: 171286732 -SHA256: 3a434de1322644862bee15e030983eeaa6e0f25626ac8b7a82f25fd906f0b163 -SHA1: ea91ccb2b767af019d0710f54d6c917e93e1e89a -MD5sum: 93fb778155675e995e8bd03d74b90231 +Filename: pool/main/h/hipblaslt-dev6.3.1/hipblaslt-dev6.3.1_0.10.0.60301-48~20.04_amd64.deb +Size: 27164 +SHA256: 7b574cf63bc0f5ecf4824b7f2ebf204dbc95db4a2ddd1cca7b8c056968496b6a +SHA1: 4ba92b3e62746740ea0cee1d6139f7e4d66a5ad9 +MD5sum: a87706f54895c18da766f529c1ee841c Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLASLt Maintainer -Version: 0.8.0.60202-116~20.04 -Installed-Size: 4938335 +Version: 0.10.0.60301-48~20.04 +Installed-Size: 231 -Package: hipblaslt-rpath6.2.2 +Package: hipblaslt-rpath6.3.1 Architecture: amd64 -Depends: hipblas-rpath6.2.2 (>= 0.50.0), rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipblaslt-rpath6.2.2/hipblaslt-rpath6.2.2_0.8.0.60202-116~20.04_amd64.deb -Size: 995648 -SHA256: 8a8ebd940cdfa230e62f8734c034d0b0f78d529676d89758b526a7f54d581186 -SHA1: 3145fd940a004a5de419773705d740be45c4c21e -MD5sum: 95dbdff627835dc65860950dffd9ccd0 +Filename: pool/main/h/hipblaslt-rpath6.3.1/hipblaslt-rpath6.3.1_0.10.0.60301-48~20.04_amd64.deb +Size: 328537504 +SHA256: d23b9834a73dc380882a2f9f733f26d21dbe2c3c912ca5b45e64bdb376dd4315 +SHA1: 4af730ea3e2824b22e219b7da197b8b7e51efc66 +MD5sum: 984c26397e2dfdf4f7fd94bcb7a02bac Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLASLt Maintainer -Recommends: hipblaslt-dev-rpath6.2.2 (>=0.8.0.60202) -Version: 0.8.0.60202-116~20.04 -Installed-Size: 20243 +Recommends: hipblaslt-dev-rpath6.3.1 (>=0.10.0.60301) +Version: 0.10.0.60301-48~20.04 +Installed-Size: 11114075 -Package: hipblaslt6.2.2 +Package: hipblaslt6.3.1 Architecture: amd64 -Depends: hipblas6.2.2 (>= 0.50.0), rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipblaslt6.2.2/hipblaslt6.2.2_0.8.0.60202-116~20.04_amd64.deb -Size: 995504 -SHA256: 619802a36e574228288712ee31f272805c90eb994367ff2e2d7a3f2f690c7ee2 -SHA1: 24c8bc4e4626366019696ea923d3513d9754838d -MD5sum: 1b5a286e8a4379a414188618dfc47190 +Filename: pool/main/h/hipblaslt6.3.1/hipblaslt6.3.1_0.10.0.60301-48~20.04_amd64.deb +Size: 328538256 +SHA256: 8857e3fad2e80c975f7e31b4a9b1f7673362f84dfaca943bd7748d55762a0d6b +SHA1: bbdceb46ac641ee0a0a823dbe03660eda4c2ad25 +MD5sum: fcee74f34ab9b8b356859730dcee8a3b Description: Radeon Open Compute BLAS marshalling library Maintainer: hipBLASLt Maintainer -Recommends: hipblaslt-dev6.2.2 (>=0.8.0.60202) -Version: 0.8.0.60202-116~20.04 -Installed-Size: 20243 +Recommends: hipblaslt-dev6.3.1 (>=0.10.0.60301) +Version: 0.10.0.60301-48~20.04 +Installed-Size: 11114075 Package: hipcc Architecture: amd64 -Depends: perl (>= 5.0), hip-dev, rocm-core, rocm-llvm +Depends: hip-dev, rocm-core, rocm-llvm Priority: optional Section: devel -Filename: pool/main/h/hipcc/hipcc_1.1.1.60202-116~20.04_amd64.deb -Size: 231062 -SHA256: c1fae6d1c71c55ce072cf62de4c78b0cb67f5cd5cb2c85217acf0e8676d7109e -SHA1: 236dae6f5496cac69e15f9fa36ddb5a67bb10d06 -MD5sum: 1a9b012d7141f383e90f807cdb4f2630 +Filename: pool/main/h/hipcc/hipcc_1.1.1.60301-48~20.04_amd64.deb +Size: 227622 +SHA256: 863d0c0ff60a89bd53d0d847b9c2d0a7a69bd8d0f4623bfee9d41fcc5f2cc2cf +SHA1: f8ac4d03b25055828dd0a0bcd00f3318f9a2f6ca +MD5sum: 3914ad221d3f9bfd59df00c6dccf2aa2 Description: hipcc built using CMake Homepage: https://github.com/ROCm-Developer-Tools/HIPCC Maintainer: ROCm Compiler Support -Version: 1.1.1.60202-116~20.04 -Installed-Size: 602 +Recommends: perl (>= 5.0) +Version: 1.1.1.60301-48~20.04 +Installed-Size: 597 Package: hipcc-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 -Depends: hipcc (= 1.1.1.60202-116~20.04) +Build-Ids: 363d3370184dca86a2ab574cddd05fa7189eb0eb 363d3370184dca86a2ab574cddd05fa7189eb0eb +Depends: hipcc (= 1.1.1.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hipcc-dbgsym/hipcc-dbgsym_1.1.1.60202-116~20.04_amd64.deb -Size: 1540018 -SHA256: d3680b53d9a7a6336651e0eebd6cae4e046de776c266ce8fb10f47c4d811597a -SHA1: f61513e702cf1bf3c50c95f7d28d1095264687c5 -MD5sum: e27b66a7945fe340833d4fd4a4bbe7eb +Filename: pool/main/h/hipcc-dbgsym/hipcc-dbgsym_1.1.1.60301-48~20.04_amd64.deb +Size: 1527736 +SHA256: cf356e43e0078fa3d5894a75c9927d294808a0ea6047b05153c2898952c6f765 +SHA1: d2c4b0bc8fabd287e6a2420b12f36c58c80c8b21 +MD5sum: 67504c017489aeaa0a50a1a398bcdf1a Description: debug symbols for hipcc Maintainer: ROCm Compiler Support Package-Type: ddeb -Version: 1.1.1.60202-116~20.04 -Installed-Size: 6951 - -Package: hipcc-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 -Depends: hipcc-rpath6.2.2 (= 1.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipcc-dbgsym-rpath6.2.2/hipcc-dbgsym-rpath6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 1068604 -SHA256: 99bf2230e9d1a82a700580de393e2b89a0ffa9bc090f7a5dcafb973fcaade5c7 -SHA1: 336dc331a14bd38f6015137af55d13204918da8f -MD5sum: 523c5d90bdc6fc02a9a1a9e1c2ad33d5 -Description: debug symbols for hipcc -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 1.1.1.60202-116~20.04 -Installed-Size: 6951 - -Package: hipcc-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 -Depends: hipcc6.2.2 (= 1.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipcc-dbgsym6.2.2/hipcc-dbgsym6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 1068964 -SHA256: 7b5bdccb12877643813fe5f95d604532f61af3f4c0f8d9c3457d209b7a4f66fc -SHA1: b9479a3bd96a0c6c69efedc21aea821e21f28e31 -MD5sum: fa27f545c07a6c2142ce45d8f8f37e12 -Description: debug symbols for hipcc -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 1.1.1.60202-116~20.04 -Installed-Size: 6951 +Version: 1.1.1.60301-48~20.04 +Installed-Size: 6856 Package: hipcc-nvidia Architecture: amd64 -Depends: perl (>= 5.0), hip-dev, rocm-core +Depends: hip-dev, rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipcc-nvidia/hipcc-nvidia_1.1.1.60202-116~20.04_amd64.deb -Size: 231066 -SHA256: 4285573933b35bb7bd33e851cc696bf5f6c66098ac5da939658d09fc045687ae -SHA1: 30f390d52a725581577a9c4b0e80d691ecd4f754 -MD5sum: 1936c1fe5151c9234ddde550802cccec +Filename: pool/main/h/hipcc-nvidia/hipcc-nvidia_1.1.1.60301-48~20.04_amd64.deb +Size: 227624 +SHA256: 308f7ff055db18ecef6a3134afccd7230b8e33f1c192bc18a8797fd7f4b7958a +SHA1: 72de5dd8b6f5b89f2145d86924a8bbe8ee52c967 +MD5sum: 438026e973797d213571cf72ffdbf39e Description: hipcc built using CMake Homepage: https://github.com/ROCm-Developer-Tools/HIPCC Maintainer: ROCm Compiler Support -Version: 1.1.1.60202-116~20.04 -Installed-Size: 602 +Recommends: perl (>= 5.0) +Version: 1.1.1.60301-48~20.04 +Installed-Size: 597 Package: hipcc-nvidia-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 -Depends: hipcc-nvidia (= 1.1.1.60202-116~20.04) +Build-Ids: 363d3370184dca86a2ab574cddd05fa7189eb0eb 363d3370184dca86a2ab574cddd05fa7189eb0eb +Depends: hipcc-nvidia (= 1.1.1.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hipcc-nvidia-dbgsym/hipcc-nvidia-dbgsym_1.1.1.60202-116~20.04_amd64.deb -Size: 1540024 -SHA256: e16b1c2315a93de958639425f556a3694353287e6cd7d143f525eafed72d880c -SHA1: 9e7af5392d8111176c6f103bb781d6f371e2c0f7 -MD5sum: 63b8d80b1b225c2238e0cde0fa6f4074 +Filename: pool/main/h/hipcc-nvidia-dbgsym/hipcc-nvidia-dbgsym_1.1.1.60301-48~20.04_amd64.deb +Size: 1527748 +SHA256: 7b507df697df2a220773e167b65ced919f145e3d635e65d2cb2aebfc24f0eda0 +SHA1: 61cd1d18040b6fbe3e9cb830e55349ba4d855296 +MD5sum: 1033525a31f88219aef6843f1d7f758f Description: debug symbols for hipcc-nvidia Maintainer: ROCm Compiler Support Package-Type: ddeb -Version: 1.1.1.60202-116~20.04 -Installed-Size: 6951 +Version: 1.1.1.60301-48~20.04 +Installed-Size: 6856 -Package: hipcc-nvidia-dbgsym-rpath6.2.2 +Package: hipcc-nvidia-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 -Depends: hipcc-nvidia-rpath6.2.2 (= 1.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipcc-nvidia-dbgsym-rpath6.2.2/hipcc-nvidia-dbgsym-rpath6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 1070020 -SHA256: ac4774cae5771db1be75452f16c76644a180188c739a590e0d49238ad37f9f85 -SHA1: 42f04d8937fab84594cb3903935942ef19bb78a3 -MD5sum: 3a7cb6278a7defc6586bd49a926b5e99 -Description: debug symbols for hipcc-nvidia -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 1.1.1.60202-116~20.04 -Installed-Size: 6951 - -Package: hipcc-nvidia-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 5666e2a9aaf860e3f0d84a2fabcac37c4d8d2110 -Depends: hipcc-nvidia6.2.2 (= 1.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipcc-nvidia-dbgsym6.2.2/hipcc-nvidia-dbgsym6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 1069396 -SHA256: 3b50f92c0b87c5ac730d11538f00d4fccff6268d85134d668d4cfa4fb52035f5 -SHA1: 8d8778fb8ce3b61fa63492f5e2f02cad598d77ca -MD5sum: 55941ac0e3a29006e890c0373c7fda5e -Description: debug symbols for hipcc-nvidia -Maintainer: ROCm Compiler Support -Package-Type: ddeb -Version: 1.1.1.60202-116~20.04 -Installed-Size: 6951 - -Package: hipcc-nvidia-rpath6.2.2 -Architecture: amd64 -Depends: perl (>= 5.0), hip-dev-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: hip-dev-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipcc-nvidia-rpath6.2.2/hipcc-nvidia-rpath6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 98572 -SHA256: 0e0e8a1b3df0e7ab6b9ba764f388f1d6cbf67df4cc5466ccd4e2aa9255761077 -SHA1: 945f9f2820ed01d5dd2abee09dc75fa402e8cbb4 -MD5sum: c342474baac048179104c40ae92cd0c5 +Filename: pool/main/h/hipcc-nvidia-rpath6.3.1/hipcc-nvidia-rpath6.3.1_1.1.1.60301-48~20.04_amd64.deb +Size: 97128 +SHA256: 6b3fb727ce5f3b2d78d139d1ebd785f8b96e9a0b1c98d1c26105edd7c907ac40 +SHA1: 1944cc17cafdf887cdc1c522f3c8d3cf7db6223d +MD5sum: e0cb399f19397c11c439bdb5ff6bd4db Description: hipcc built using CMake Homepage: https://github.com/ROCm-Developer-Tools/HIPCC Maintainer: ROCm Compiler Support -Version: 1.1.1.60202-116~20.04 -Installed-Size: 602 +Recommends: perl (>= 5.0) +Version: 1.1.1.60301-48~20.04 +Installed-Size: 597 -Package: hipcc-nvidia6.2.2 +Package: hipcc-nvidia6.3.1 Architecture: amd64 -Depends: perl (>= 5.0), hip-dev6.2.2, rocm-core6.2.2 +Depends: hip-dev6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipcc-nvidia6.2.2/hipcc-nvidia6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 98568 -SHA256: 011cbaa7abec55ee2b86faf15d5c6f939140cba01a73a2048731cab9c0757faa -SHA1: bb10a33db7c8ffe32453d205d05fe2b6d148244e -MD5sum: 180b3314ca221113f875bbe5c7089205 +Filename: pool/main/h/hipcc-nvidia6.3.1/hipcc-nvidia6.3.1_1.1.1.60301-48~20.04_amd64.deb +Size: 97220 +SHA256: 8b15cfb02db78e79609f2a732da532dde3bdd965581434a4b6bffca638f082e4 +SHA1: 0becbc1391eeb6318cd3990dd8d6e9efc2dbff37 +MD5sum: 294a4abef2b9d7aa943a8d4882aa0a4c Description: hipcc built using CMake Homepage: https://github.com/ROCm-Developer-Tools/HIPCC Maintainer: ROCm Compiler Support -Version: 1.1.1.60202-116~20.04 -Installed-Size: 602 +Recommends: perl (>= 5.0) +Version: 1.1.1.60301-48~20.04 +Installed-Size: 597 -Package: hipcc-rpath6.2.2 +Package: hipcc-rpath6.3.1 Architecture: amd64 -Depends: perl (>= 5.0), hip-dev-rpath6.2.2, rocm-core-rpath6.2.2, rocm-llvm-rpath6.2.2 +Depends: hip-dev-rpath6.3.1, rocm-core-rpath6.3.1, rocm-llvm-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipcc-rpath6.2.2/hipcc-rpath6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 98612 -SHA256: 01ae9f26d6735a9209c62304ae64111f5166026099711dd84a57156b894161d2 -SHA1: fe49c35970bedef9df34b5ab234da41eb93801a9 -MD5sum: a57c0a675865e8465379f28423c9cf87 +Filename: pool/main/h/hipcc-rpath6.3.1/hipcc-rpath6.3.1_1.1.1.60301-48~20.04_amd64.deb +Size: 97232 +SHA256: 0dcd3e006a27651348884c1aaf4edf1222da0b97f7d2644b3fdd448eb5376205 +SHA1: a44694e6a61acd15b1010f53cdc58812604ed4f9 +MD5sum: 04a495bb69dc7641b31ba21635a1ab9f Description: hipcc built using CMake Homepage: https://github.com/ROCm-Developer-Tools/HIPCC Maintainer: ROCm Compiler Support -Version: 1.1.1.60202-116~20.04 -Installed-Size: 602 +Recommends: perl (>= 5.0) +Version: 1.1.1.60301-48~20.04 +Installed-Size: 597 -Package: hipcc6.2.2 +Package: hipcc6.3.1 Architecture: amd64 -Depends: perl (>= 5.0), hip-dev6.2.2, rocm-core6.2.2, rocm-llvm6.2.2 +Depends: hip-dev6.3.1, rocm-core6.3.1, rocm-llvm6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipcc6.2.2/hipcc6.2.2_1.1.1.60202-116~20.04_amd64.deb -Size: 98556 -SHA256: 849385b9cb8835907c6bfc11edacf469b9271c0c36c7f704fa889abaef55072e -SHA1: f98843cd1beb3d43f37cff9b63bccadefc59ee84 -MD5sum: 49fd57bf38e944e269e038c455a1f91d +Filename: pool/main/h/hipcc6.3.1/hipcc6.3.1_1.1.1.60301-48~20.04_amd64.deb +Size: 97272 +SHA256: 67263e86071b426ac3c6a647a9bbb81f4c854d367593e4a7cfebbe20433669a9 +SHA1: e273124edf4de5b199ee74cc8a7a7035a9ba32ad +MD5sum: 3e23eaff3ceaaf52efc654b555536406 Description: hipcc built using CMake Homepage: https://github.com/ROCm-Developer-Tools/HIPCC Maintainer: ROCm Compiler Support -Version: 1.1.1.60202-116~20.04 -Installed-Size: 602 +Recommends: perl (>= 5.0) +Version: 1.1.1.60301-48~20.04 +Installed-Size: 597 Package: hipcub-dev Architecture: amd64 Depends: rocprim-dev (>= 2.10.1), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipcub-dev/hipcub-dev_3.2.0.60202-116~20.04_amd64.deb -Size: 73346 -SHA256: 5d8e2d36fe81dea8677f383d54f6bc009e9209ae7bfeb6ad607a41fef3f53b80 -SHA1: c7fd9f8156927c3300add45a08dbfe8c7e64ba46 -MD5sum: 5f2ead12042bb586778b8b153c5d5f2a +Filename: pool/main/h/hipcub-dev/hipcub-dev_3.3.0.60301-48~20.04_amd64.deb +Size: 74532 +SHA256: f026c8fa4ffda54c0303cf4a490a4bf9509eeced7e0b4222f8e69a2340b098ce +SHA1: 9b3fd6454e95823d476fa720ac67b733e1ba80f9 +MD5sum: 48dcc852297f5ad3a2b43787a84be4fd Description: hipCUB (rocPRIM backend) Maintainer: hipcub-maintainer@amd.com -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, hipcub (= 3.2.0.60202) +Provides: hipcub (= 3.3.0.60301) Replaces: cub-hip -Version: 3.2.0.60202-116~20.04 -Installed-Size: 1253 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1265 -Package: hipcub-dev-rpath6.2.2 +Package: hipcub-dev-rpath6.3.1 Architecture: amd64 -Depends: rocprim-dev-rpath6.2.2 (>= 2.10.1), rocm-core-rpath6.2.2 +Depends: rocprim-dev-rpath6.3.1 (>= 2.10.1), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipcub-dev-rpath6.2.2/hipcub-dev-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 73012 -SHA256: 0c5e645fd966a41653d6dc5d829c360328234ae517b65202fecd337884438dfc -SHA1: 83287cebb8101678c101014ef86ef0e369f67129 -MD5sum: de0edc9d9792f251bf9c67cb9d5fc26c +Filename: pool/main/h/hipcub-dev-rpath6.3.1/hipcub-dev-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 74164 +SHA256: fd72fddc5634c738333cafb387a5bc3e582cb41f9100de72b089c3e9aa1a1dda +SHA1: 85078f04d21380b83cf2f00f3bd63ef296e8acd5 +MD5sum: 443f8d753770f5e4c5ae88f685e2e121 Description: hipCUB (rocPRIM backend) Maintainer: hipcub-maintainer@amd.com -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, hipcub-rpath6.2.2 (= 3.2.0.60202) -Replaces: cub-hip-rpath6.2.2 -Version: 3.2.0.60202-116~20.04 -Installed-Size: 1253 +Provides: hipcub-rpath6.3.1 (= 3.3.0.60301) +Replaces: cub-hip-rpath6.3.1 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1265 -Package: hipcub-dev6.2.2 +Package: hipcub-dev6.3.1 Architecture: amd64 -Depends: rocprim-dev6.2.2 (>= 2.10.1), rocm-core6.2.2 +Depends: rocprim-dev6.3.1 (>= 2.10.1), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipcub-dev6.2.2/hipcub-dev6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 73016 -SHA256: b9b56570650852dac180e8d097f00387c6036c92fe2840a7621eb291adbd5d2e -SHA1: 9253e9475b381b90bed22db76ca5d7ae16aff891 -MD5sum: b7102c08a61d9feac5649b816d919d0d +Filename: pool/main/h/hipcub-dev6.3.1/hipcub-dev6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 74168 +SHA256: 275a256b217852c0ea3933271a8239719aab3f19bfec6696d6377deeec582a83 +SHA1: e0c43f7a1744ef896dcead3775f91635467efa6e +MD5sum: c5bcadfc6665dbb407594cb4cd276c46 Description: hipCUB (rocPRIM backend) Maintainer: hipcub-maintainer@amd.com -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, hipcub6.2.2 (= 3.2.0.60202) -Replaces: cub-hip6.2.2 -Version: 3.2.0.60202-116~20.04 -Installed-Size: 1253 +Provides: hipcub6.3.1 (= 3.3.0.60301) +Replaces: cub-hip6.3.1 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1265 Package: hipfft Architecture: amd64 Depends: rocfft (>= 1.0.21), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipfft/hipfft_1.0.15.60202-116~20.04_amd64.deb -Size: 25048 -SHA256: a3f380fe3ec90fbc2bbaf9e2f2108e035fda8d18381e352f16261f27a222d771 -SHA1: 6974f8ef863df505634d64dd2b9220e3e513441d -MD5sum: 4fce443ba5f41ffa00854ddf2f608ce8 +Filename: pool/main/h/hipfft/hipfft_1.0.17.60301-48~20.04_amd64.deb +Size: 25690 +SHA256: 149fb2e23e74af8ef5658b61519f6dd8e7190cd04a6c9fa80d255b8571eb5707 +SHA1: 54cef89e5aad94663b796115fc6d453e98ae0e3b +MD5sum: 6c1b6cc9eff277a2983b8b8cf3028672 Description: ROCm FFT marshalling library Maintainer: hipfft-maintainer@amd.com -Recommends: hipfft-dev (>=1.0.15.60202) -Version: 1.0.15.60202-116~20.04 -Installed-Size: 151 - -Package: hipfft-asan -Architecture: amd64 -Depends: rocfft (>= 1.0.21), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hipfft-asan/hipfft-asan_1.0.15.60202-116~20.04_amd64.deb -Size: 45298 -SHA256: 19e16e0fc96447657cfbd1a42079f5de66aa5b1a4fc405f633220f18a56d5aa4 -SHA1: b8bf0e1781a57cc45a169b2b9d96a23b946568c8 -MD5sum: 3601f05a4b7dceef89d162fa68dfa84f -Description: ROCm FFT marshalling library -Maintainer: hipfft-maintainer@amd.com -Recommends: hipfft-asan-dev (>=1.0.15.60202) -Version: 1.0.15.60202-116~20.04 -Installed-Size: 302 - -Package: hipfft-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 03284ab0799a05cd11fa6166be4c247c7371a5ed -Depends: hipfft-asan (= 1.0.15.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipfft-asan-dbgsym/hipfft-asan-dbgsym_1.0.15.60202-116~20.04_amd64.deb -Size: 176280 -SHA256: 7d0cc20533557256cd7c1f4735ad3a152804d60732d36732b6bb4851f1e079f8 -SHA1: 142cb9f4929e59fd880f2b5891cea40f122ba7d7 -MD5sum: 425333cd840dabd478eeaf1934add69e -Description: debug symbols for hipfft-asan -Maintainer: hipfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.15.60202-116~20.04 -Installed-Size: 230 - -Package: hipfft-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 03284ab0799a05cd11fa6166be4c247c7371a5ed -Depends: hipfft-asan-rpath6.2.2 (= 1.0.15.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipfft-asan-dbgsym-rpath6.2.2/hipfft-asan-dbgsym-rpath6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 176460 -SHA256: 6bab120d359cdf415830e41f274da44c26e76f81b7c7b29c9c8ee4d93246f4cd -SHA1: 90b4b4ec17c13c9265e607636626dca9551abb34 -MD5sum: 1b0e60d21f122be0e67a59886eacdd60 -Description: debug symbols for hipfft-asan -Maintainer: hipfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.15.60202-116~20.04 -Installed-Size: 230 - -Package: hipfft-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 03284ab0799a05cd11fa6166be4c247c7371a5ed -Depends: hipfft-asan6.2.2 (= 1.0.15.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipfft-asan-dbgsym6.2.2/hipfft-asan-dbgsym6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 176444 -SHA256: 3682d5e6e33e1897a295c29f75dc4d49e03a094fcf266bd6ea3cbef191248a63 -SHA1: 0a59163ca93f042bf506f330fa0a17af8d739afa -MD5sum: 793e62e3d511de05c5b7a8632bf0011c -Description: debug symbols for hipfft-asan -Maintainer: hipfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.15.60202-116~20.04 -Installed-Size: 230 - -Package: hipfft-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocfft (>= 1.0.21), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipfft-asan-rpath6.2.2/hipfft-asan-rpath6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 45572 -SHA256: 49821a40ad8d71ea0c5b0ce527a8ad2b4c3f94f38c46e3281f4d6d090101e7ec -SHA1: bdfda146d3aca002976ead3b034805a44f550dfe -MD5sum: 803ad095c32a1e7d6e3f5f0f9ef033d1 -Description: ROCm FFT marshalling library -Maintainer: hipfft-maintainer@amd.com -Recommends: hipfft-asan-dev (>=1.0.15.60202) -Version: 1.0.15.60202-116~20.04 -Installed-Size: 302 - -Package: hipfft-asan6.2.2 -Architecture: amd64 -Depends: rocfft (>= 1.0.21), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipfft-asan6.2.2/hipfft-asan6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 45448 -SHA256: 7113c35e055369a476e45006f1034b6b71c718a437cd889e94b5bf8105011d81 -SHA1: f86300ff7dfd614456011604b4303f0bd13c187f -MD5sum: b87e91fa357338dbbebbdec6873b5d50 -Description: ROCm FFT marshalling library -Maintainer: hipfft-maintainer@amd.com -Recommends: hipfft-asan-dev (>=1.0.15.60202) -Version: 1.0.15.60202-116~20.04 -Installed-Size: 302 +Recommends: hipfft-dev (>=1.0.17.60301) +Version: 1.0.17.60301-48~20.04 +Installed-Size: 153 Package: hipfft-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: b685e0badb0e4eca6d9ecae28edb4ccef036a4f3 -Depends: hipfft (= 1.0.15.60202-116~20.04) +Build-Ids: 2e97f846846429dba1c538eafd33f76273ed9e81 +Depends: hipfft (= 1.0.17.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hipfft-dbgsym/hipfft-dbgsym_1.0.15.60202-116~20.04_amd64.deb -Size: 101504 -SHA256: ee66b31fbed6e6d1589bc30e548bd649b8b46e3c5852f1496b39c462f6ed493c -SHA1: 41ac0e3f082c3b78805c2b00aee5345c9c7ec7b2 -MD5sum: 35fc4fd61330234049acc4f6f5e6ceba +Filename: pool/main/h/hipfft-dbgsym/hipfft-dbgsym_1.0.17.60301-48~20.04_amd64.deb +Size: 101752 +SHA256: 0a1ac965dc39408623ef43107b9ce7505e6789b194c1331ac38d4d8542fe0f44 +SHA1: 5088090eb949bd1b7b4021c5be6c63184fa0c262 +MD5sum: 0f9fcbec93bc02b55a446dea6f1f4b5c Description: debug symbols for hipfft Maintainer: hipfft-maintainer@amd.com Package-Type: ddeb -Version: 1.0.15.60202-116~20.04 -Installed-Size: 387 - -Package: hipfft-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: b685e0badb0e4eca6d9ecae28edb4ccef036a4f3 -Depends: hipfft-rpath6.2.2 (= 1.0.15.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipfft-dbgsym-rpath6.2.2/hipfft-dbgsym-rpath6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 101796 -SHA256: 7c3464b6ef537d0275fcf206fafa7a7315ca74708227431d5fc46c50002e8a2c -SHA1: d407d6359efdfb0499f24c929613861241a5c569 -MD5sum: 4830233036b961032a4b0173cb5a3d30 -Description: debug symbols for hipfft -Maintainer: hipfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.15.60202-116~20.04 -Installed-Size: 387 - -Package: hipfft-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: b685e0badb0e4eca6d9ecae28edb4ccef036a4f3 -Depends: hipfft6.2.2 (= 1.0.15.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipfft-dbgsym6.2.2/hipfft-dbgsym6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 101736 -SHA256: 3fb48689b5841e70e3388d357d3fbf25317aee7234e2334865deba5ce7dcf1e5 -SHA1: c8082c8ef94f896e435a0d7d614005fecddde0ab -MD5sum: f4310028015eaaa9a0b76bb8a5ce9712 -Description: debug symbols for hipfft -Maintainer: hipfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.15.60202-116~20.04 -Installed-Size: 387 +Version: 1.0.17.60301-48~20.04 +Installed-Size: 386 Package: hipfft-dev Architecture: amd64 -Depends: hipfft (>= 1.0.15.60202) +Depends: hipfft (>= 1.0.17.60301) Priority: optional Section: devel -Filename: pool/main/h/hipfft-dev/hipfft-dev_1.0.15.60202-116~20.04_amd64.deb -Size: 11154 -SHA256: 45f5f41a0d72526fcf3daf7874967e6c7d066bfdc1bfeae56a159b48e6f74150 -SHA1: b979c6adc6e3a40128b4e43c3b21e581d381ff8f -MD5sum: ceebb9aa330f1a951fd02ec562d259e1 +Filename: pool/main/h/hipfft-dev/hipfft-dev_1.0.17.60301-48~20.04_amd64.deb +Size: 11204 +SHA256: 466fd736b5e64c6f94602290ca718d3b27efc3c310d01e9b284490f3659f7012 +SHA1: bddcaa0195ff10a07f195bcac97b00ff4034421a +MD5sum: 37ad88338a2ea06eb7f9eb4c0184f2bc Description: ROCm FFT marshalling library Maintainer: hipfft-maintainer@amd.com -Version: 1.0.15.60202-116~20.04 +Version: 1.0.17.60301-48~20.04 Installed-Size: 90 -Package: hipfft-dev-rpath6.2.2 +Package: hipfft-dev-rpath6.3.1 Architecture: amd64 -Depends: hipfft-rpath6.2.2 (>= 1.0.15.60202) +Depends: hipfft-rpath6.3.1 (>= 1.0.17.60301) Priority: optional Section: devel -Filename: pool/main/h/hipfft-dev-rpath6.2.2/hipfft-dev-rpath6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 11304 -SHA256: 7487fda025ca62c42498419a2fbec5efcb7c8108e61e915209bbc1d358e41567 -SHA1: 0b891e76127f34430a5f40fbe3556118d5287e28 -MD5sum: aeb3825665c1d76b0cc410cdb6a8b3ee +Filename: pool/main/h/hipfft-dev-rpath6.3.1/hipfft-dev-rpath6.3.1_1.0.17.60301-48~20.04_amd64.deb +Size: 11356 +SHA256: baeedf4ccdd0db36dcf224cac8266c7e70147976a39ff747aa0d0b8548e13987 +SHA1: bc3def3a81a84496cd4109c5937b6711d280c44c +MD5sum: 792de9b2552fd0ad71c3623616f14c10 Description: ROCm FFT marshalling library Maintainer: hipfft-maintainer@amd.com -Version: 1.0.15.60202-116~20.04 +Version: 1.0.17.60301-48~20.04 Installed-Size: 90 -Package: hipfft-dev6.2.2 +Package: hipfft-dev6.3.1 Architecture: amd64 -Depends: hipfft6.2.2 (>= 1.0.15.60202) +Depends: hipfft6.3.1 (>= 1.0.17.60301) Priority: optional Section: devel -Filename: pool/main/h/hipfft-dev6.2.2/hipfft-dev6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 11300 -SHA256: 70d73d653f8691b76b32198d9c12a52b242c9dd4eb2c4f0d3feb5a77bb61b07a -SHA1: 3cf9ae3d2f7234d02968eca52f2210c943bf533a -MD5sum: 156b71d95eb53e442ce172b712013f3d +Filename: pool/main/h/hipfft-dev6.3.1/hipfft-dev6.3.1_1.0.17.60301-48~20.04_amd64.deb +Size: 11352 +SHA256: c4c280ccd77fa9b0d88b0cf61417f668a5ca8f172dab18091d6bd064ccda9c29 +SHA1: 63f6bed3a86c3b7e06dd2bd09a9f307310eee1b2 +MD5sum: 4b3a54f35df7e0a7f5c9aa41bcbbd98a Description: ROCm FFT marshalling library Maintainer: hipfft-maintainer@amd.com -Version: 1.0.15.60202-116~20.04 +Version: 1.0.17.60301-48~20.04 Installed-Size: 90 -Package: hipfft-rpath6.2.2 +Package: hipfft-rpath6.3.1 Architecture: amd64 -Depends: rocfft-rpath6.2.2 (>= 1.0.21), rocm-core-rpath6.2.2 +Depends: rocfft-rpath6.3.1 (>= 1.0.21), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipfft-rpath6.2.2/hipfft-rpath6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 25232 -SHA256: 7fa3c5940f92c04408228e984bd2597d59bf7a597fc9c88fe04028ed3a8a5e0b -SHA1: 933609b8f6f10acd3eb32783491ec2c39d948338 -MD5sum: e63d2aa5e679d436c924709291c5936c +Filename: pool/main/h/hipfft-rpath6.3.1/hipfft-rpath6.3.1_1.0.17.60301-48~20.04_amd64.deb +Size: 25864 +SHA256: 395ee68ca60f95d917b5f15d26307c91a8582074f112607da17249da8cc93514 +SHA1: cdebba0aadd12e57ab7de0fdc3e28cba0faf295c +MD5sum: bf96add7fdfc837f21f14efbb8a826fa Description: ROCm FFT marshalling library Maintainer: hipfft-maintainer@amd.com -Recommends: hipfft-dev-rpath6.2.2 (>=1.0.15.60202) -Version: 1.0.15.60202-116~20.04 -Installed-Size: 151 +Recommends: hipfft-dev-rpath6.3.1 (>=1.0.17.60301) +Version: 1.0.17.60301-48~20.04 +Installed-Size: 153 -Package: hipfft6.2.2 +Package: hipfft6.3.1 Architecture: amd64 -Depends: rocfft6.2.2 (>= 1.0.21), rocm-core6.2.2 +Depends: rocfft6.3.1 (>= 1.0.21), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipfft6.2.2/hipfft6.2.2_1.0.15.60202-116~20.04_amd64.deb -Size: 25208 -SHA256: 7588d82e82b3f27f4ea6b95e9449aed37493377c0900a3bf1b1110d91c9c6b29 -SHA1: 93ccf509e4b67fa3da61b1a6c273b31105df5227 -MD5sum: fd2d36ed1612fb33979653b175b1a6f1 +Filename: pool/main/h/hipfft6.3.1/hipfft6.3.1_1.0.17.60301-48~20.04_amd64.deb +Size: 25884 +SHA256: a4f8e81f063d99778993c4db8303df4fd73f14108c62a04b8400b6178d93ead7 +SHA1: 05003ff6ee449bc5326df70e1a26b62f4965f859 +MD5sum: 84a5687b50f5b68bd647c94122b8b411 Description: ROCm FFT marshalling library Maintainer: hipfft-maintainer@amd.com -Recommends: hipfft-dev6.2.2 (>=1.0.15.60202) -Version: 1.0.15.60202-116~20.04 -Installed-Size: 151 +Recommends: hipfft-dev6.3.1 (>=1.0.17.60301) +Version: 1.0.17.60301-48~20.04 +Installed-Size: 153 Package: hipfort-dev Architecture: amd64 @@ -2008,847 +1111,433 @@ Conflicts: hipfort Depends: hip-runtime-amd (>= 4.5.0), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipfort-dev/hipfort-dev_0.4.0.60202-116~20.04_amd64.deb -Size: 6667782 -SHA256: f98fe59b8e27da23f0cca2bff6b4f0e56af0194d1a0b933603a265bca4a75d73 -SHA1: 5dd08debeb07698af43d0b43044558d70781f580 -MD5sum: b62dd4b6c47eb8d9e43732e860fb9ffc +Filename: pool/main/h/hipfort-dev/hipfort-dev_0.5.0.60301-48~20.04_amd64.deb +Size: 6661170 +SHA256: 5570e5b32f2ef0af38a5f89f49e04d92bfb6c3f4c74403048fbec3c5cfb28c99 +SHA1: 78e095ec23d186258c3e4f7630b8990f2c54b1ce +MD5sum: 82e601bd22fa88d9431d12dca1da3635 Description: Fortran Interface For GPU Kernel Libraries Maintainer: Hipfort maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, hipfort (= 0.4.0.60202) +Provides: hipfort, hipfort (= 0.5.0.60301) Replaces: hipfort -Version: 0.4.0.60202-116~20.04 -Installed-Size: 88514 +Version: 0.5.0.60301-48~20.04 +Installed-Size: 88429 -Package: hipfort-dev-rpath6.2.2 +Package: hipfort-dev-rpath6.3.1 Architecture: amd64 -Conflicts: hipfort-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2 (>= 4.5.0), rocm-core-rpath6.2.2 +Conflicts: hipfort-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1 (>= 4.5.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipfort-dev-rpath6.2.2/hipfort-dev-rpath6.2.2_0.4.0.60202-116~20.04_amd64.deb -Size: 6669468 -SHA256: 81f912dcd563f8850270a4756aff883296bd05b6ad48c5801c70291cfd3c2a07 -SHA1: 0e07d90ede7ef8254e80270c3050c6badeaac89d -MD5sum: fd5e7310aa3809b59b716741c322d67e +Filename: pool/main/h/hipfort-dev-rpath6.3.1/hipfort-dev-rpath6.3.1_0.5.0.60301-48~20.04_amd64.deb +Size: 6659552 +SHA256: 3e0a5b18b9577b2114cbd8aede3d67e36d98678cd7d8b3bdc517c31dc1183a66 +SHA1: 35f702c50d63a2381f755bdf702bf9b8ef3a34da +MD5sum: 84625f180353d08b2f58925bdad73b24 Description: Fortran Interface For GPU Kernel Libraries Maintainer: Hipfort maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, hipfort-rpath6.2.2 (= 0.4.0.60202) -Replaces: hipfort-rpath6.2.2 -Version: 0.4.0.60202-116~20.04 -Installed-Size: 88514 +Provides: hipfort-rpath6.3.1, hipfort-rpath6.3.1 (= 0.5.0.60301) +Replaces: hipfort-rpath6.3.1 +Version: 0.5.0.60301-48~20.04 +Installed-Size: 88429 -Package: hipfort-dev6.2.2 +Package: hipfort-dev6.3.1 Architecture: amd64 -Conflicts: hipfort6.2.2 -Depends: hip-runtime-amd6.2.2 (>= 4.5.0), rocm-core6.2.2 +Conflicts: hipfort6.3.1 +Depends: hip-runtime-amd6.3.1 (>= 4.5.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipfort-dev6.2.2/hipfort-dev6.2.2_0.4.0.60202-116~20.04_amd64.deb -Size: 6667776 -SHA256: 0c0f1a02bd683819507567c785225d4851798eaab3b1f383a025e9e6773377a0 -SHA1: 3babf807b2bb683bd7fb34b22857112bc3da491e -MD5sum: 6b87a6d862dc6e06f25c0e2c0abbc2d4 +Filename: pool/main/h/hipfort-dev6.3.1/hipfort-dev6.3.1_0.5.0.60301-48~20.04_amd64.deb +Size: 6659832 +SHA256: c0f0903df79c967a52dd8d59125fbd2a135d5605d9d0c672b03a0d15caad4caa +SHA1: f4fb052f0897615493d6e282a80fa230f9ba946b +MD5sum: 1a3697c1dbfea788268a147d2e038747 Description: Fortran Interface For GPU Kernel Libraries Maintainer: Hipfort maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, hipfort6.2.2 (= 0.4.0.60202) -Replaces: hipfort6.2.2 -Version: 0.4.0.60202-116~20.04 -Installed-Size: 88514 +Provides: hipfort6.3.1, hipfort6.3.1 (= 0.5.0.60301) +Replaces: hipfort6.3.1 +Version: 0.5.0.60301-48~20.04 +Installed-Size: 88429 Package: hipify-clang Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipify-clang/hipify-clang_18.0.0.60202-116~20.04_amd64.deb -Size: 21049282 -SHA256: e969771c5bbba984f1bb03cf123ffea02b2b095ca9b34af99003030ec78b0428 -SHA1: e72f385f9c6783b2ec395c7788c78515c96c1923 -MD5sum: d6a6ab4294a2cedb7dfff7cd0d65e0b4 +Filename: pool/main/h/hipify-clang/hipify-clang_18.0.0.60301-48~20.04_amd64.deb +Size: 21113418 +SHA256: abba22d6e7ddbd8fc4fdda310c05a14c3a5a15cdd58c9739974fd70fa5231f07 +SHA1: 4acc1d455dea9515469810121e9a87926d754fed +MD5sum: 024b17711b156ac547240f2c5dd8a588 Description: Hipify CUDA source This tool translates CUDA source code into portable HIP C++ automatically Maintainer: ROCm Compiler Support -Version: 18.0.0.60202-116~20.04 -Installed-Size: 53971 +Version: 18.0.0.60301-48~20.04 +Installed-Size: 54292 -Package: hipify-clang-rpath6.2.2 +Package: hipify-clang-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipify-clang-rpath6.2.2/hipify-clang-rpath6.2.2_18.0.0.60202-116~20.04_amd64.deb -Size: 14659584 -SHA256: 37240891d8490b6f16d09300d96af93d5055d6d533ea6ba6364f30b96d31bf1d -SHA1: ad44ef4a237d50235c843f62bedddcfbac261658 -MD5sum: 62b5259256f578705d34ee77ffa007ca +Filename: pool/main/h/hipify-clang-rpath6.3.1/hipify-clang-rpath6.3.1_18.0.0.60301-48~20.04_amd64.deb +Size: 14698196 +SHA256: fb24e4ada23b92b6c2ad7f599bd59a9fbcad925e756496d00355fcb55b8d6332 +SHA1: fde660c6cb7621bcffbe4499c292220a71545ed6 +MD5sum: 5086a2a3bc0d24ef7138e2a42dbd5b49 Description: Hipify CUDA source This tool translates CUDA source code into portable HIP C++ automatically Maintainer: ROCm Compiler Support -Version: 18.0.0.60202-116~20.04 -Installed-Size: 53971 +Version: 18.0.0.60301-48~20.04 +Installed-Size: 54292 -Package: hipify-clang6.2.2 +Package: hipify-clang6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipify-clang6.2.2/hipify-clang6.2.2_18.0.0.60202-116~20.04_amd64.deb -Size: 14657860 -SHA256: 9dd2921f64f76da2ee524e96ad6c1e0e60da0553f56307f149cfbbfa43d686eb -SHA1: 36c22ca8db9e8edb14e656588b85ff06708572a8 -MD5sum: 5498db682b916aadbf2b61710a46685b +Filename: pool/main/h/hipify-clang6.3.1/hipify-clang6.3.1_18.0.0.60301-48~20.04_amd64.deb +Size: 14696188 +SHA256: 79ee85eb608866793ed7d0f293bafff9bda553407c23ca90f44fb7b5642c38f1 +SHA1: ddb218d13611ba12c69105ddefba1b156ebc568c +MD5sum: 26d0d1dd84cfd54ad2cf6e9492277fa4 Description: Hipify CUDA source This tool translates CUDA source code into portable HIP C++ automatically Maintainer: ROCm Compiler Support -Version: 18.0.0.60202-116~20.04 -Installed-Size: 53971 +Version: 18.0.0.60301-48~20.04 +Installed-Size: 54292 Package: hiprand Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/h/hiprand/hiprand_2.11.0.60202-116~20.04_amd64.deb -Size: 5010 -SHA256: 56071d9e2d196320dfadda147f7a54a2a3185f91b7ef8db556682b57db01f936 -SHA1: 33b263c701db4deb3e919916f15e60d395439268 -MD5sum: b804581175ccbce1463c3ac2623b7349 +Filename: pool/main/h/hiprand/hiprand_2.11.1.60301-48~20.04_amd64.deb +Size: 5012 +SHA256: 537c511d92c675b850bcc263cd884ab40b51f2492ee2caee592f0d3cda68db24 +SHA1: 58616cf48dd7bc57f4615ac15dfe0d2f50ae089c +MD5sum: 122b8c179de8474cfacef1d036bd28e4 Description: Radeon Open Compute RAND library Maintainer: hipRAND Maintainer -Recommends: hiprand-dev (>=2.11.0.60202) -Version: 2.11.0.60202-116~20.04 +Recommends: hiprand-dev (>=2.11.1.60301) +Version: 2.11.1.60301-48~20.04 Installed-Size: 54 -Package: hiprand-asan -Architecture: amd64 -Depends: rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hiprand-asan/hiprand-asan_2.11.0.60202-116~20.04_amd64.deb -Size: 7024 -SHA256: d4de9f14fab0f6acbd3b395c76321a894dbba8e0535b0a0268b66ebf50e44af4 -SHA1: ad6852d35932022f0c3f66be1f3aa49097eb8560 -MD5sum: 8dd2e7f51014128d62a426da1c480fb4 -Description: Radeon Open Compute RAND library -Maintainer: hipRAND Maintainer -Recommends: hiprand-asan-dev (>=2.11.0.60202) -Version: 2.11.0.60202-116~20.04 -Installed-Size: 81 - -Package: hiprand-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3e0e788c6b0f28e3ce580247f480f34cd0adf599 -Depends: hiprand-asan (= 2.11.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hiprand-asan-dbgsym/hiprand-asan-dbgsym_2.11.0.60202-116~20.04_amd64.deb -Size: 30658 -SHA256: c7a9454aa50738f31c42c2d55653467342d8d5f35c396d557d2d5fe83366c292 -SHA1: 86421a647b82688fcd5c318027cebcedd376415e -MD5sum: ec0eb81dcade92918f0b2bd6c224bd50 -Description: debug symbols for hiprand-asan -Maintainer: hipRAND Maintainer -Package-Type: ddeb -Version: 2.11.0.60202-116~20.04 -Installed-Size: 74 - -Package: hiprand-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3e0e788c6b0f28e3ce580247f480f34cd0adf599 -Depends: hiprand-asan-rpath6.2.2 (= 2.11.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hiprand-asan-dbgsym-rpath6.2.2/hiprand-asan-dbgsym-rpath6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 30812 -SHA256: add021a036a19623564cf40107996cb4d0a0d6b6a3fe918c73ead802eae21dad -SHA1: e6f53c0b1d06356e1759e00e32e9d4bffc7483bb -MD5sum: 528dc8e52beea41157152e78f7d80b56 -Description: debug symbols for hiprand-asan -Maintainer: hipRAND Maintainer -Package-Type: ddeb -Version: 2.11.0.60202-116~20.04 -Installed-Size: 74 - -Package: hiprand-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3e0e788c6b0f28e3ce580247f480f34cd0adf599 -Depends: hiprand-asan6.2.2 (= 2.11.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hiprand-asan-dbgsym6.2.2/hiprand-asan-dbgsym6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 30800 -SHA256: 503ac0f36106bed5af5878255c5750f9f6ae57f1fe9fd663033c698c17714424 -SHA1: 08eeef8dfc28f34b5e8dafc9da76eed7ded3d925 -MD5sum: 8c2d13fe31b4710928cef7c5ea6fe384 -Description: debug symbols for hiprand-asan -Maintainer: hipRAND Maintainer -Package-Type: ddeb -Version: 2.11.0.60202-116~20.04 -Installed-Size: 74 - -Package: hiprand-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hiprand-asan-rpath6.2.2/hiprand-asan-rpath6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 7216 -SHA256: f01be0a94896a92ac599c29348aaef1e8ec01fba4cc9034018c2072a683acf42 -SHA1: 4146a17f7f889cb6e2016294ec513d4bb0ae2dff -MD5sum: f6928d152e866d0019d407bc9be27884 -Description: Radeon Open Compute RAND library -Maintainer: hipRAND Maintainer -Recommends: hiprand-asan-dev (>=2.11.0.60202) -Version: 2.11.0.60202-116~20.04 -Installed-Size: 81 - -Package: hiprand-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hiprand-asan6.2.2/hiprand-asan6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 7216 -SHA256: 2effe215673412409875ce18f0cf8c11da4f1198f5d26fba923a55b8d000efd1 -SHA1: acad109674734c659e1ff8e75c499751f09b66cb -MD5sum: 1b9d182cb75ead8c5a1ca01d932f5b9d -Description: Radeon Open Compute RAND library -Maintainer: hipRAND Maintainer -Recommends: hiprand-asan-dev (>=2.11.0.60202) -Version: 2.11.0.60202-116~20.04 -Installed-Size: 81 - Package: hiprand-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 7956f482ff0ff40e592f82dd54121daccf4c6742 -Depends: hiprand (= 2.11.0.60202-116~20.04) +Build-Ids: 862a13b532ad309a06f1823d6ef39431711fc258 +Depends: hiprand (= 2.11.1.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hiprand-dbgsym/hiprand-dbgsym_2.11.0.60202-116~20.04_amd64.deb -Size: 18214 -SHA256: af174f57050a55c409e5998b38735789e1788daff087bcdc77386673f5608669 -SHA1: beaa71a43d2e87061be29715728bdd251b2f3cac -MD5sum: b1c41eafbed1e1b8c7a7d31966b9ec48 +Filename: pool/main/h/hiprand-dbgsym/hiprand-dbgsym_2.11.1.60301-48~20.04_amd64.deb +Size: 18160 +SHA256: 985587a82b3bc28cc56cc4fa74f77e442f72fb977ab6125b78832d345e4d7e93 +SHA1: a584a6a64277016780e581ebf90e2cdaa39e7fcd +MD5sum: b22d1350e202ab304f99566455f03ecf Description: debug symbols for hiprand Maintainer: hipRAND Maintainer Package-Type: ddeb -Version: 2.11.0.60202-116~20.04 -Installed-Size: 77 - -Package: hiprand-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 7956f482ff0ff40e592f82dd54121daccf4c6742 -Depends: hiprand-rpath6.2.2 (= 2.11.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hiprand-dbgsym-rpath6.2.2/hiprand-dbgsym-rpath6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 18340 -SHA256: acf688611d5defd5938e5ce2f0fb8026c7bf5d6bbdf870a0c0ce9792ad23c7a7 -SHA1: 64e28c5b88e2c1dc7748d915005343815d4bb5dc -MD5sum: b559d9591a325d42097aaead1e045aef -Description: debug symbols for hiprand -Maintainer: hipRAND Maintainer -Package-Type: ddeb -Version: 2.11.0.60202-116~20.04 -Installed-Size: 77 - -Package: hiprand-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 7956f482ff0ff40e592f82dd54121daccf4c6742 -Depends: hiprand6.2.2 (= 2.11.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hiprand-dbgsym6.2.2/hiprand-dbgsym6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 18324 -SHA256: 56a8699f74d5b4bec032d900732a87710ed08e260b206286be93c419de38700e -SHA1: 238f1b0648747e081770ef5e68057335b90213a0 -MD5sum: bfa4bc8fb0df7e044566ea6913b96252 -Description: debug symbols for hiprand -Maintainer: hipRAND Maintainer -Package-Type: ddeb -Version: 2.11.0.60202-116~20.04 +Version: 2.11.1.60301-48~20.04 Installed-Size: 77 Package: hiprand-dev Architecture: amd64 -Depends: hiprand (>= 2.11.0.60202) +Depends: hiprand (>= 2.11.1.60301) Priority: optional Section: devel -Filename: pool/main/h/hiprand-dev/hiprand-dev_2.11.0.60202-116~20.04_amd64.deb -Size: 21152 -SHA256: 86200e35925b658988bf15fb7d1964e220ce44a8b25e65cbcc95b389aad4ebb2 -SHA1: 996fd66a37459eb314cdce8db18b337bc976f3b9 -MD5sum: 5c6ae528c260db088d5d3a8e9e1700a2 +Filename: pool/main/h/hiprand-dev/hiprand-dev_2.11.1.60301-48~20.04_amd64.deb +Size: 21172 +SHA256: 15927b336ff2dad9be5540777d1c125283725860456307b4cc8570e53e4408b0 +SHA1: f7b009032ed3c814e4f1b084ea458f82984420bf +MD5sum: 8a71321cf41b6a28771ba9d0ab17c340 Description: Radeon Open Compute RAND library Maintainer: hipRAND Maintainer -Version: 2.11.0.60202-116~20.04 +Version: 2.11.1.60301-48~20.04 Installed-Size: 209 -Package: hiprand-dev-rpath6.2.2 +Package: hiprand-dev-rpath6.3.1 Architecture: amd64 -Depends: hiprand-rpath6.2.2 (>= 2.11.0.60202) +Depends: hiprand-rpath6.3.1 (>= 2.11.1.60301) Priority: optional Section: devel -Filename: pool/main/h/hiprand-dev-rpath6.2.2/hiprand-dev-rpath6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 21284 -SHA256: 3f8e8bda103ec7b61c6b2cfb1672e28504ea23bcaed6a3402d1cfcbcc77fa3d4 -SHA1: 6f2e49f4f5624fcea24b1b78660007ee64166c4f -MD5sum: 13901163c5e29b26f95ac44ff1654462 +Filename: pool/main/h/hiprand-dev-rpath6.3.1/hiprand-dev-rpath6.3.1_2.11.1.60301-48~20.04_amd64.deb +Size: 21308 +SHA256: dda16d0ca81cf9868c10a42da52e93b36523b0839216841cfe054a18451c28d6 +SHA1: fcc22ef2484aa4fa05abcf5ed55f656e99769dcf +MD5sum: 0415672fa98b05918e5dbe08641fffa3 Description: Radeon Open Compute RAND library Maintainer: hipRAND Maintainer -Version: 2.11.0.60202-116~20.04 +Version: 2.11.1.60301-48~20.04 Installed-Size: 209 -Package: hiprand-dev6.2.2 +Package: hiprand-dev6.3.1 Architecture: amd64 -Depends: hiprand6.2.2 (>= 2.11.0.60202) +Depends: hiprand6.3.1 (>= 2.11.1.60301) Priority: optional Section: devel -Filename: pool/main/h/hiprand-dev6.2.2/hiprand-dev6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 21284 -SHA256: 1886446172f6b965501e900bd31ab85461fbf7e197c95904d1d4869d1aa170ac -SHA1: f7a9778314e278f2a4f45c167b30a00ef1587c14 -MD5sum: d67cf206c746e3bf5319766cebe128f2 +Filename: pool/main/h/hiprand-dev6.3.1/hiprand-dev6.3.1_2.11.1.60301-48~20.04_amd64.deb +Size: 21316 +SHA256: 067fbd8fb2c8536156cb9a75895938f9986a316a79fd2f4a665d0698cbde9cbe +SHA1: 0d91b8fecef92d3475588138932f3ff5898e746e +MD5sum: fe5a945ba6634d7a3da6830fd901c1d0 Description: Radeon Open Compute RAND library Maintainer: hipRAND Maintainer -Version: 2.11.0.60202-116~20.04 +Version: 2.11.1.60301-48~20.04 Installed-Size: 209 -Package: hiprand-rpath6.2.2 +Package: hiprand-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hiprand-rpath6.2.2/hiprand-rpath6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 5164 -SHA256: 587c7717d5b6c144c8caab3558f1e0397b69c540abeaa53317554db34d3d3413 -SHA1: 38d457819ff26a43e121808aabc5fce07f87111b -MD5sum: 833fc7826035fc102a6b89f967c56fc7 +Filename: pool/main/h/hiprand-rpath6.3.1/hiprand-rpath6.3.1_2.11.1.60301-48~20.04_amd64.deb +Size: 5168 +SHA256: 14769bc6aa274607c38168ed38b8aedeb9613de983e105a88a756d2464772c7e +SHA1: 0acedd326e11e2a850e6225bfda4c7de403f5a3f +MD5sum: fea32509132085c11f7dad4cc849327e Description: Radeon Open Compute RAND library Maintainer: hipRAND Maintainer -Recommends: hiprand-dev-rpath6.2.2 (>=2.11.0.60202) -Version: 2.11.0.60202-116~20.04 +Recommends: hiprand-dev-rpath6.3.1 (>=2.11.1.60301) +Version: 2.11.1.60301-48~20.04 Installed-Size: 54 -Package: hiprand6.2.2 +Package: hiprand6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hiprand6.2.2/hiprand6.2.2_2.11.0.60202-116~20.04_amd64.deb -Size: 5156 -SHA256: fa234de790bb525d4a7a6dc6ea1de788b69cf9e739baf2a41a5be865e4f30e1b -SHA1: f33cf37c1e4512d5e51a874450e4b0da5c993f76 -MD5sum: 1b6c4ffddef168d5fb6c001341bc99ad +Filename: pool/main/h/hiprand6.3.1/hiprand6.3.1_2.11.1.60301-48~20.04_amd64.deb +Size: 5172 +SHA256: 74ef24d03a11569f5bec1a7f893afdbe1ba4026bc8748656c4b759a9d93c3e27 +SHA1: b9eda540041e95455535da35cde46e8b82f028ff +MD5sum: fe240ff332efbe7c68ebe8c718b1aad1 Description: Radeon Open Compute RAND library Maintainer: hipRAND Maintainer -Recommends: hiprand-dev6.2.2 (>=2.11.0.60202) -Version: 2.11.0.60202-116~20.04 +Recommends: hiprand-dev6.3.1 (>=2.11.1.60301) +Version: 2.11.1.60301-48~20.04 Installed-Size: 54 Package: hipsolver Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocsparse (>= 2.3.0), libcholmod3, libsuitesparseconfig5, rocm-core +Depends: rocblas (>= 4.2.0), rocsolver (>= 3.27.0), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipsolver/hipsolver_2.2.0.60202-116~20.04_amd64.deb -Size: 56286 -SHA256: 3feaa120ebb7ebbccf397b02590ef1afcf0a8db59c0f588e2abb7c6df52573e5 -SHA1: 34d373fac67c809b1f69312a3f7a84cf258d96f8 -MD5sum: 3d0bd719b2bb8a561f24edf395f11deb +Filename: pool/main/h/hipsolver/hipsolver_2.3.0.60301-48~20.04_amd64.deb +Size: 53968 +SHA256: 60d30a6248f3d688a3bf600468546ffb08030bcf95723be94e8f97cd1db8fd12 +SHA1: 15ca500749020ddcc32f83206d2a2e5724801ffd +MD5sum: 15cd713a651a23bbec22f3b2dce55de1 Description: Radeon Open Compute LAPACK marshalling library Maintainer: hipSOLVER Maintainer -Recommends: hipsolver-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 715 - -Package: hipsolver-asan -Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocsparse (>= 2.3.0), libcholmod3, libsuitesparseconfig5, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hipsolver-asan/hipsolver-asan_2.2.0.60202-116~20.04_amd64.deb -Size: 78042 -SHA256: 3e24594b883c1ddbc47563d390815079f5055fbd9dfa8812eb53b58b8539da27 -SHA1: 4e7fad90393ae1fcc37e1570e2b4e631cdfe2026 -MD5sum: dceccab90cbde0ee0e878dc4f6589e02 -Description: Radeon Open Compute LAPACK marshalling library -Maintainer: hipSOLVER Maintainer -Recommends: hipsolver-asan-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 900 - -Package: hipsolver-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 064cb87f7499b241f15e49bce029c597f13a735e -Depends: hipsolver-asan (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsolver-asan-dbgsym/hipsolver-asan-dbgsym_2.2.0.60202-116~20.04_amd64.deb -Size: 288266 -SHA256: f6ddedfda331d211347b89bcb0eb8473877341a66620231f4c4d0c7c163339a6 -SHA1: 1efb5c2f8fe36fecb9c1b0bf75a5117c45e0e0b4 -MD5sum: 8e13f5728f926ac584b0fcb37a159171 -Description: debug symbols for hipsolver-asan -Maintainer: hipSOLVER Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 373 - -Package: hipsolver-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 064cb87f7499b241f15e49bce029c597f13a735e -Depends: hipsolver-asan-rpath6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsolver-asan-dbgsym-rpath6.2.2/hipsolver-asan-dbgsym-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 288260 -SHA256: 7e136fa9502b07348c9f5fac00d175e6d120e68b866ea39619abbe97560feb40 -SHA1: 932e3c435579bee270402c1d938f8c412490f6f6 -MD5sum: 27d416a0fd36ad09dd381f3fa83defbc -Description: debug symbols for hipsolver-asan -Maintainer: hipSOLVER Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 373 - -Package: hipsolver-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 064cb87f7499b241f15e49bce029c597f13a735e -Depends: hipsolver-asan6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsolver-asan-dbgsym6.2.2/hipsolver-asan-dbgsym6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 288332 -SHA256: 3ed6f9c0b36b3d204c6a836487a92a651eeacf2dccbd9eee374a9411af605ad4 -SHA1: 2a6db633417d61352b00c49ac8a236788579644c -MD5sum: f1218255437195d610c5c08e0384541f -Description: debug symbols for hipsolver-asan -Maintainer: hipSOLVER Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 373 - -Package: hipsolver-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocsparse (>= 2.3.0), libcholmod3, libsuitesparseconfig5, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipsolver-asan-rpath6.2.2/hipsolver-asan-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 77872 -SHA256: 4c75c7c2bd5b325c2179352b75586a0577127edec426861b31ee8dbdfdc7e9f7 -SHA1: c15d319d354535c0ba52a8b16972f5f67fcca09e -MD5sum: 1a501d2ee40caf2614e4678d0eb8df6d -Description: Radeon Open Compute LAPACK marshalling library -Maintainer: hipSOLVER Maintainer -Recommends: hipsolver-asan-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 900 - -Package: hipsolver-asan6.2.2 -Architecture: amd64 -Depends: rocblas (>= 4.2.0), rocsolver (>= 3.26.0), rocsparse (>= 2.3.0), libcholmod3, libsuitesparseconfig5, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipsolver-asan6.2.2/hipsolver-asan6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 78308 -SHA256: c2be45246431e27ddad1d634977f7a4f161b399b704c76c415d134792047c54c -SHA1: ec1d0ff85d08b794ca9f526ca0b5be0173da5c7a -MD5sum: 77267d23bcff3020f1baf51929a71ed2 -Description: Radeon Open Compute LAPACK marshalling library -Maintainer: hipSOLVER Maintainer -Recommends: hipsolver-asan-dev (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 900 +Recommends: rocsparse, libcholmod3, libsuitesparseconfig5, hipsolver-dev (>=2.3.0.60301) +Version: 2.3.0.60301-48~20.04 +Installed-Size: 539 Package: hipsolver-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: d7a5177b35e72e8b711b6902d895887f371d0e4a -Depends: hipsolver (= 2.2.0.60202-116~20.04) +Build-Ids: a07de4a7e5c53a40ed1745cb52a50d6a0109418d +Depends: hipsolver (= 2.3.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hipsolver-dbgsym/hipsolver-dbgsym_2.2.0.60202-116~20.04_amd64.deb -Size: 189338 -SHA256: 4fb3c87a2a0e24b9660450b66e382f604ebbd926386696fd435200b5fcbe9b61 -SHA1: 1bba95fd1f90df236f7aaf2fb99a0ce696b3eac3 -MD5sum: ed839de89fdcf6440bf6492e592314f0 +Filename: pool/main/h/hipsolver-dbgsym/hipsolver-dbgsym_2.3.0.60301-48~20.04_amd64.deb +Size: 205276 +SHA256: b02f7222848e0fc5b15411af9ddbd403e2011d924fc37c06f66d25adcc70df60 +SHA1: d01c2e6f60117a4c5274da00b47a8cb693f14ff8 +MD5sum: c15f939ca97dfa9585700312552391b3 Description: debug symbols for hipsolver Maintainer: hipSOLVER Maintainer Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 756 - -Package: hipsolver-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: d7a5177b35e72e8b711b6902d895887f371d0e4a -Depends: hipsolver-rpath6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsolver-dbgsym-rpath6.2.2/hipsolver-dbgsym-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 189260 -SHA256: d53febe9a3e23648bd0003182bb9ec23a7e7d6a5515b7fd87bf44449134ef35a -SHA1: 841aa1d7c49934b68d130f2c7a83d9022f852dff -MD5sum: e1482dbf56f39060fe74db7328466ca3 -Description: debug symbols for hipsolver -Maintainer: hipSOLVER Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 756 - -Package: hipsolver-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: d7a5177b35e72e8b711b6902d895887f371d0e4a -Depends: hipsolver6.2.2 (= 2.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsolver-dbgsym6.2.2/hipsolver-dbgsym6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 189256 -SHA256: f0ae9f07a84b02cf0ded479017aa0f93c05822365895bc907f61d3f08827415c -SHA1: d97781bbc75c6657b16c010513b742284e311ce2 -MD5sum: 9346aea17561224af5b0a328cf244916 -Description: debug symbols for hipsolver -Maintainer: hipSOLVER Maintainer -Package-Type: ddeb -Version: 2.2.0.60202-116~20.04 -Installed-Size: 756 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 815 Package: hipsolver-dev Architecture: amd64 -Depends: hipsolver (>= 2.2.0.60202) +Depends: hipsolver (>= 2.3.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsolver-dev/hipsolver-dev_2.2.0.60202-116~20.04_amd64.deb -Size: 18686 -SHA256: 3b11f1f95d4db9d57a89b231c7ed41687be7a3f629dd2952dfbff6ee3fa523a7 -SHA1: 8ab2c3076f4d78f03ea34647d6d3257337a91c57 -MD5sum: cb17ce5a1bf492a9a94da54e77b5784b +Filename: pool/main/h/hipsolver-dev/hipsolver-dev_2.3.0.60301-48~20.04_amd64.deb +Size: 18890 +SHA256: 9faf059ccc915de05a86566128c5c32d00615a1a365955dff1510392d88eb74c +SHA1: 1730da9cb3764732e1d40f072c97deaefa451316 +MD5sum: 82f2896ef1da692a8eab009863f9821d Description: Radeon Open Compute LAPACK marshalling library Maintainer: hipSOLVER Maintainer -Version: 2.2.0.60202-116~20.04 -Installed-Size: 460 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 466 -Package: hipsolver-dev-rpath6.2.2 +Package: hipsolver-dev-rpath6.3.1 Architecture: amd64 -Depends: hipsolver-rpath6.2.2 (>= 2.2.0.60202) +Depends: hipsolver-rpath6.3.1 (>= 2.3.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsolver-dev-rpath6.2.2/hipsolver-dev-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 18816 -SHA256: 4ff2560201f782abdc441d2362d31e4038d6353f20742a162f7fcf4ca4dada36 -SHA1: a33ac69f29faa26a2cf4c5b8d1a871d51c295d88 -MD5sum: bbc1e5d4cfe8b5c59c570c118b50dd61 +Filename: pool/main/h/hipsolver-dev-rpath6.3.1/hipsolver-dev-rpath6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 19024 +SHA256: beff902fbe1b7aaac0d1f0a504a53228aebdf1ddaf888d6e5a9747dd72df0e8c +SHA1: 55da7c8c41488279c58cdbd75b429305e955cc9f +MD5sum: a7865b0dd35587796137545e9b2ce79f Description: Radeon Open Compute LAPACK marshalling library Maintainer: hipSOLVER Maintainer -Version: 2.2.0.60202-116~20.04 -Installed-Size: 460 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 466 -Package: hipsolver-dev6.2.2 +Package: hipsolver-dev6.3.1 Architecture: amd64 -Depends: hipsolver6.2.2 (>= 2.2.0.60202) +Depends: hipsolver6.3.1 (>= 2.3.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsolver-dev6.2.2/hipsolver-dev6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 18820 -SHA256: 7317cba16363e35363595178a918220ffe890eaa0c8d8261995176bb0c01685b -SHA1: 7e662a5cb1dcc7a3e2ad7e2b5cd9bb54e60345e2 -MD5sum: dae98e2a9618570e498762fb83c41b6d +Filename: pool/main/h/hipsolver-dev6.3.1/hipsolver-dev6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 19028 +SHA256: 7f250cba68e755e1a75d4b24b51b075f7a680739f898823de0bfdd4432aa583c +SHA1: cc2a35ea19e2c1475f83cc0322a78486a60d258d +MD5sum: 3ab535cff3bb6d1a34345e0cead4c595 Description: Radeon Open Compute LAPACK marshalling library Maintainer: hipSOLVER Maintainer -Version: 2.2.0.60202-116~20.04 -Installed-Size: 460 +Version: 2.3.0.60301-48~20.04 +Installed-Size: 466 -Package: hipsolver-rpath6.2.2 +Package: hipsolver-rpath6.3.1 Architecture: amd64 -Depends: rocblas-rpath6.2.2 (>= 4.2.0), rocsolver-rpath6.2.2 (>= 3.26.0), rocsparse-rpath6.2.2 (>= 2.3.0), libcholmod3, libsuitesparseconfig5, rocm-core-rpath6.2.2 +Depends: rocblas-rpath6.3.1 (>= 4.2.0), rocsolver-rpath6.3.1 (>= 3.27.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipsolver-rpath6.2.2/hipsolver-rpath6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 56848 -SHA256: bb3655c1b24189006d8b90839ce057595c9709664eb715e99ef7a87cf1ba02d1 -SHA1: 4a9e87cb56faab6b5f2ce81b8a98ce1abe2e6183 -MD5sum: d38e085017af916ae920ac4743ecb10d +Filename: pool/main/h/hipsolver-rpath6.3.1/hipsolver-rpath6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 54508 +SHA256: c874bebee1adb40078e0b2f474dbc41911313830c1503ed64e314e5d1e8168ae +SHA1: 1224b44a7b605873c13009a2c80403269a2f2443 +MD5sum: 701dcc277e7d88fa9dd5d03c369ef659 Description: Radeon Open Compute LAPACK marshalling library Maintainer: hipSOLVER Maintainer -Recommends: hipsolver-dev-rpath6.2.2 (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 715 +Recommends: rocsparse-rpath6.3.1, libcholmod3, libsuitesparseconfig5, hipsolver-dev-rpath6.3.1 (>=2.3.0.60301) +Version: 2.3.0.60301-48~20.04 +Installed-Size: 539 -Package: hipsolver6.2.2 +Package: hipsolver6.3.1 Architecture: amd64 -Depends: rocblas6.2.2 (>= 4.2.0), rocsolver6.2.2 (>= 3.26.0), rocsparse6.2.2 (>= 2.3.0), libcholmod3, libsuitesparseconfig5, rocm-core6.2.2 +Depends: rocblas6.3.1 (>= 4.2.0), rocsolver6.3.1 (>= 3.27.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipsolver6.2.2/hipsolver6.2.2_2.2.0.60202-116~20.04_amd64.deb -Size: 56408 -SHA256: e1894a342300ef7843378a0fd691c8336de16abac99061a1d80a086bef93ed05 -SHA1: d81f12b3525eaae98e14893342d626b321d1c6ee -MD5sum: 3781d26c57283fa70570b54255bf37ab +Filename: pool/main/h/hipsolver6.3.1/hipsolver6.3.1_2.3.0.60301-48~20.04_amd64.deb +Size: 54324 +SHA256: 02c19a1890bfb18b7832645ae2526a4fd2743fcb03992b78aaac0e647a52eaa0 +SHA1: 774fa47c7cc2bfcdf2e7ba3e51f330813a48ba48 +MD5sum: 86437379ccd6a251047194529524bd62 Description: Radeon Open Compute LAPACK marshalling library Maintainer: hipSOLVER Maintainer -Recommends: hipsolver-dev6.2.2 (>=2.2.0.60202) -Version: 2.2.0.60202-116~20.04 -Installed-Size: 715 +Recommends: rocsparse6.3.1, libcholmod3, libsuitesparseconfig5, hipsolver-dev6.3.1 (>=2.3.0.60301) +Version: 2.3.0.60301-48~20.04 +Installed-Size: 539 Package: hipsparse Architecture: amd64 Depends: rocsparse (>= 1.12.10), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipsparse/hipsparse_3.1.1.60202-116~20.04_amd64.deb -Size: 45610 -SHA256: 5c4ef7683ee74ed6d1ef98fdc770f0abf93020c1a2c8edbb6c6278191368542b -SHA1: 5d22ce11c39fce7755827c7cc25c48b74ebdca77 -MD5sum: 479f7dfae83ea91f701c2e0d452c81ba +Filename: pool/main/h/hipsparse/hipsparse_3.1.2.60301-48~20.04_amd64.deb +Size: 45386 +SHA256: ff780aeb4aa74acd15dc8003bda03df16c96ef4c02a324c14299c5ef9568d8a7 +SHA1: fedda008d9ac442a21d1fc7f646f5204df8dc6ee +MD5sum: 9da670a50fd15b1ba2cfdeea1e9b4fcb Description: ROCm SPARSE library Maintainer: hipSPARSE Maintainer -Recommends: hipsparse-dev (>=3.1.1.60202) -Version: 3.1.1.60202-116~20.04 +Recommends: hipsparse-dev (>=3.1.2.60301) +Version: 3.1.2.60301-48~20.04 Installed-Size: 518 -Package: hipsparse-asan -Architecture: amd64 -Depends: rocsparse (>= 1.12.10), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hipsparse-asan/hipsparse-asan_3.1.1.60202-116~20.04_amd64.deb -Size: 71286 -SHA256: ef766ea516e3ca06be60bc8de0c4ce46fad41c82b395f707dd99ab8996c5a7ee -SHA1: f00c41f3c3d0e82ce9fb555330d47bc8e94c4428 -MD5sum: 44ff03aae63ef022381786e0f0ea065a -Description: ROCm SPARSE library -Maintainer: hipSPARSE Maintainer -Recommends: hipsparse-asan-dev (>=3.1.1.60202) -Version: 3.1.1.60202-116~20.04 -Installed-Size: 1015 - -Package: hipsparse-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 12fad6d4bcab05473afbe7b215a8ab16abd30063 -Depends: hipsparse-asan (= 3.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsparse-asan-dbgsym/hipsparse-asan-dbgsym_3.1.1.60202-116~20.04_amd64.deb -Size: 242524 -SHA256: 3ceb3d2d97974f97d13ce3f7fdb06fff9a657ed92449bbcc6780173780438e7c -SHA1: eef9537af0069ebe4bdb3e8610785c2e13972d62 -MD5sum: 9b9b2fd9c5cb53ab704cc0a819ea431c -Description: debug symbols for hipsparse-asan -Maintainer: hipSPARSE Maintainer -Package-Type: ddeb -Version: 3.1.1.60202-116~20.04 -Installed-Size: 397 - -Package: hipsparse-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 12fad6d4bcab05473afbe7b215a8ab16abd30063 -Depends: hipsparse-asan-rpath6.2.2 (= 3.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsparse-asan-dbgsym-rpath6.2.2/hipsparse-asan-dbgsym-rpath6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 242688 -SHA256: 33b1295070700b0a1d763d8abf708a910d92559ed7257722ae92cce943f14b48 -SHA1: 066313dff559ac988817fd14f63f3faca801ae8a -MD5sum: c83a0942d0ebf72b6b4d01b3b69adb95 -Description: debug symbols for hipsparse-asan -Maintainer: hipSPARSE Maintainer -Package-Type: ddeb -Version: 3.1.1.60202-116~20.04 -Installed-Size: 397 - -Package: hipsparse-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 12fad6d4bcab05473afbe7b215a8ab16abd30063 -Depends: hipsparse-asan6.2.2 (= 3.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsparse-asan-dbgsym6.2.2/hipsparse-asan-dbgsym6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 242644 -SHA256: d8d5940ada5d026fe3db137121f01907fd8d11c8b5b532c07ed7094b0c62df04 -SHA1: b0bb5c103784221fcfd6aa3fb87fcdfda4db12a8 -MD5sum: 9acd7efb74741ab93312e6bd98bc841d -Description: debug symbols for hipsparse-asan -Maintainer: hipSPARSE Maintainer -Package-Type: ddeb -Version: 3.1.1.60202-116~20.04 -Installed-Size: 397 - -Package: hipsparse-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocsparse (>= 1.12.10), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipsparse-asan-rpath6.2.2/hipsparse-asan-rpath6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 71880 -SHA256: 2ab83d4b1d078292443974a9a8970610c7a2bc369982c4f0d9dafcd5500f20c8 -SHA1: d309ff0b94146a008039096202376f07e241d228 -MD5sum: 4f1eea7e98de1d050dd6d67899ab71b8 -Description: ROCm SPARSE library -Maintainer: hipSPARSE Maintainer -Recommends: hipsparse-asan-dev (>=3.1.1.60202) -Version: 3.1.1.60202-116~20.04 -Installed-Size: 1015 - -Package: hipsparse-asan6.2.2 -Architecture: amd64 -Depends: rocsparse (>= 1.12.10), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipsparse-asan6.2.2/hipsparse-asan6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 71964 -SHA256: 23d90e4df129175fc9632ccfab56f01253d88cd4d174dfa5ac5915f45872a074 -SHA1: b1421cac2307b948239b5bb69232cbe5c6168d38 -MD5sum: e65a7135ef4836fa886b9e21aaa11689 -Description: ROCm SPARSE library -Maintainer: hipSPARSE Maintainer -Recommends: hipsparse-asan-dev (>=3.1.1.60202) -Version: 3.1.1.60202-116~20.04 -Installed-Size: 1015 - Package: hipsparse-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 0a9eea7c035f9f30e28e0b97fbe237424930af34 -Depends: hipsparse (= 3.1.1.60202-116~20.04) +Build-Ids: b2b583e21a5448b443a0f8b0f17a009862263a45 +Depends: hipsparse (= 3.1.2.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hipsparse-dbgsym/hipsparse-dbgsym_3.1.1.60202-116~20.04_amd64.deb -Size: 178088 -SHA256: 518ce2cc2771b13332366f1c17e2166d8065c307c406abc9bfa95e07957c5253 -SHA1: 06667f4b498885f7dae45d1002c5a57ba57d2165 -MD5sum: e48ad0110f628e607056765138810dbd +Filename: pool/main/h/hipsparse-dbgsym/hipsparse-dbgsym_3.1.2.60301-48~20.04_amd64.deb +Size: 177852 +SHA256: aedb3c0705a047070548d1fcd8453099ba3c29863a5195a0743c78e9a171d3fb +SHA1: 93099628c6de978f11c6f271ba111806e2645447 +MD5sum: d91b4b888cef6ccdecedad4f9a4dbcd8 Description: debug symbols for hipsparse Maintainer: hipSPARSE Maintainer Package-Type: ddeb -Version: 3.1.1.60202-116~20.04 -Installed-Size: 1096 - -Package: hipsparse-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 0a9eea7c035f9f30e28e0b97fbe237424930af34 -Depends: hipsparse-rpath6.2.2 (= 3.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsparse-dbgsym-rpath6.2.2/hipsparse-dbgsym-rpath6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 177748 -SHA256: 689890d399304ea118b340ffe76b6d301816ec4f48854bd6ad2befca7d6287e8 -SHA1: afacfe1b3855faf9ab79b9c519ec67d20bda1ef9 -MD5sum: c6cb241da606bf7b976d099b1d31ed26 -Description: debug symbols for hipsparse -Maintainer: hipSPARSE Maintainer -Package-Type: ddeb -Version: 3.1.1.60202-116~20.04 -Installed-Size: 1096 - -Package: hipsparse-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 0a9eea7c035f9f30e28e0b97fbe237424930af34 -Depends: hipsparse6.2.2 (= 3.1.1.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hipsparse-dbgsym6.2.2/hipsparse-dbgsym6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 178564 -SHA256: 8fd11af97e2ac5c4ab29041f1f173828ecfde0570fc7c01bd027a7f8a5d2dfb2 -SHA1: e1e55b1cf4e9ce01bbe412c6952d52956cda37e1 -MD5sum: 782ffa56793bbdc610f0b983c6ab8920 -Description: debug symbols for hipsparse -Maintainer: hipSPARSE Maintainer -Package-Type: ddeb -Version: 3.1.1.60202-116~20.04 -Installed-Size: 1096 +Version: 3.1.2.60301-48~20.04 +Installed-Size: 1095 Package: hipsparse-dev Architecture: amd64 -Depends: hipsparse (>= 3.1.1.60202) +Depends: hipsparse (>= 3.1.2.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsparse-dev/hipsparse-dev_3.1.1.60202-116~20.04_amd64.deb -Size: 40932 -SHA256: 4efdf6f96a32fbbcd22eb0280e82a55aba538ec2b7ecdffcc8b4db97c80e490c -SHA1: a67127a552d4e70b64cd32a77b3e6c18f78aefcc -MD5sum: d309d44e0488ed5a6a0b5e4bbd3f62cd +Filename: pool/main/h/hipsparse-dev/hipsparse-dev_3.1.2.60301-48~20.04_amd64.deb +Size: 49078 +SHA256: 968430adc1140668fdc0268db796bdb69763f207b29a12fe2bffb2a596b6f9e8 +SHA1: 563e7dfbe12052eaeb4af08e0795ca24a12f5d6b +MD5sum: 351261670ffaa603d98dbb9d11281f95 Description: ROCm SPARSE library Maintainer: hipSPARSE Maintainer -Version: 3.1.1.60202-116~20.04 -Installed-Size: 749 +Version: 3.1.2.60301-48~20.04 +Installed-Size: 845 -Package: hipsparse-dev-rpath6.2.2 +Package: hipsparse-dev-rpath6.3.1 Architecture: amd64 -Depends: hipsparse-rpath6.2.2 (>= 3.1.1.60202) +Depends: hipsparse-rpath6.3.1 (>= 3.1.2.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsparse-dev-rpath6.2.2/hipsparse-dev-rpath6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 41092 -SHA256: a8738b858a6b25eca0a32acf1550aa9d36a2bacc858578803b4f7e9dc9809148 -SHA1: 4f6d1339239c27575ca8e538eb5e27ba2add5603 -MD5sum: 04761a8d743d66df7b9b534864794cb1 +Filename: pool/main/h/hipsparse-dev-rpath6.3.1/hipsparse-dev-rpath6.3.1_3.1.2.60301-48~20.04_amd64.deb +Size: 49196 +SHA256: bf3bdbc7ec4717d30f58a42df2703b9ae7c3f84d76dfa0a4ea8ae213548b00ab +SHA1: 7aac75a90f8d4c47db732d7bf20371ae06e08c10 +MD5sum: 3f9094dc8ba61a7dc3d6af5fe0263f4f Description: ROCm SPARSE library Maintainer: hipSPARSE Maintainer -Version: 3.1.1.60202-116~20.04 -Installed-Size: 749 +Version: 3.1.2.60301-48~20.04 +Installed-Size: 845 -Package: hipsparse-dev6.2.2 +Package: hipsparse-dev6.3.1 Architecture: amd64 -Depends: hipsparse6.2.2 (>= 3.1.1.60202) +Depends: hipsparse6.3.1 (>= 3.1.2.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsparse-dev6.2.2/hipsparse-dev6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 41068 -SHA256: 4edc6771d3a830a8329c6f156a6454a6663651cd70960d5b3a7d8640b762ca87 -SHA1: 403c969dc33a202f52e93ae874d9b885e2f3979f -MD5sum: a639f0d48ebffff5e0339fe95edd990b +Filename: pool/main/h/hipsparse-dev6.3.1/hipsparse-dev6.3.1_3.1.2.60301-48~20.04_amd64.deb +Size: 49216 +SHA256: a8e248d5a48e8f345ee0ff2b4a3d4de63c7905083e478399a10e23ef78b6d843 +SHA1: e2728b0a7ac3e031d17117ea246fedbecafffc7b +MD5sum: ad3750abcb6a4c3af247638b90b7510a Description: ROCm SPARSE library Maintainer: hipSPARSE Maintainer -Version: 3.1.1.60202-116~20.04 -Installed-Size: 749 +Version: 3.1.2.60301-48~20.04 +Installed-Size: 845 -Package: hipsparse-rpath6.2.2 +Package: hipsparse-rpath6.3.1 Architecture: amd64 -Depends: rocsparse-rpath6.2.2 (>= 1.12.10), rocm-core-rpath6.2.2 +Depends: rocsparse-rpath6.3.1 (>= 1.12.10), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipsparse-rpath6.2.2/hipsparse-rpath6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 46140 -SHA256: 441f7a0d64795bbbbc21954a727320b8a19af8096698577b5c9af2edd46c04d6 -SHA1: 0331b19d1972b95029bde870022d2f443be22abd -MD5sum: 79dd724d3785e3216e06f85e2675baf7 +Filename: pool/main/h/hipsparse-rpath6.3.1/hipsparse-rpath6.3.1_3.1.2.60301-48~20.04_amd64.deb +Size: 46116 +SHA256: 4d496506e3b927981f9f8434f94a1ac8e12d46c71e786a491e2f643e4f21bc52 +SHA1: 6da662db709e2f2f3dbf22c1d774e4e25f32c7bc +MD5sum: e3edc498f41626456dde73910f6aebb6 Description: ROCm SPARSE library Maintainer: hipSPARSE Maintainer -Recommends: hipsparse-dev-rpath6.2.2 (>=3.1.1.60202) -Version: 3.1.1.60202-116~20.04 +Recommends: hipsparse-dev-rpath6.3.1 (>=3.1.2.60301) +Version: 3.1.2.60301-48~20.04 Installed-Size: 518 -Package: hipsparse6.2.2 +Package: hipsparse6.3.1 Architecture: amd64 -Depends: rocsparse6.2.2 (>= 1.12.10), rocm-core6.2.2 +Depends: rocsparse6.3.1 (>= 1.12.10), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipsparse6.2.2/hipsparse6.2.2_3.1.1.60202-116~20.04_amd64.deb -Size: 46168 -SHA256: 0dfa5900717fcf6c146c172671dc842b232a69f85d5915a34a289dd7082fb7db -SHA1: fe36211fdc7c7057da0ce118537d4e095d292660 -MD5sum: 63e6afe64f320131b1fc11431ff8bad9 +Filename: pool/main/h/hipsparse6.3.1/hipsparse6.3.1_3.1.2.60301-48~20.04_amd64.deb +Size: 45860 +SHA256: b2f782ec24ce58cb77529d4627a572848afe2c0135bc11bf7a8670bed5a6ed97 +SHA1: 95a7596df16d0ad2f17a6307a2bb813f3ce865e1 +MD5sum: 4cf061ca9a28deb7d6b6b2711a8c6693 Description: ROCm SPARSE library Maintainer: hipSPARSE Maintainer -Recommends: hipsparse-dev6.2.2 (>=3.1.1.60202) -Version: 3.1.1.60202-116~20.04 +Recommends: hipsparse-dev6.3.1 (>=3.1.2.60301) +Version: 3.1.2.60301-48~20.04 Installed-Size: 518 Package: hipsparselt @@ -2856,384 +1545,237 @@ Architecture: amd64 Depends: hipsparse (>= 2.1.0), rocm-core Priority: optional Section: devel -Filename: pool/main/h/hipsparselt/hipsparselt_0.2.1.60202-116~20.04_amd64.deb -Size: 6542844 -SHA256: 83c384d7ca1b063099dfc93daa5b5cb0fb5566d31c3dd7d4cdc3b7bf11d75e2c -SHA1: d493e788e8ed1f2abb5e5d0e02b51c97d228bea0 -MD5sum: 48a871f944fef9fcbb57f21143dc49de +Filename: pool/main/h/hipsparselt/hipsparselt_0.2.2.60301-48~20.04_amd64.deb +Size: 10417508 +SHA256: 7a45aaec96efe20e5a6649c87d9549bddfb85f2ceefda0afb52c81b9a3d75dfa +SHA1: d43a1a8b24b2f1541ce472b9a2a8f193a707517b +MD5sum: 9390d3261d285a04a3e13b36819b339b Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library Maintainer: hipSPARSELt Maintainer -Recommends: hipsparselt-dev (>=0.2.1.60202) -Version: 0.2.1.60202-116~20.04 -Installed-Size: 232236 - -Package: hipsparselt-asan -Architecture: amd64 -Depends: hipsparse (>= 2.1.0), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hipsparselt-asan/hipsparselt-asan_0.2.1.60202-116~20.04_amd64.deb -Size: 16481500 -SHA256: 7775073b89cf1342d1fab3c1156bce866d5b3a9297daaef323e44a98127fab68 -SHA1: 000b654005e72a6ff5d59eef410ca82be4141a3e -MD5sum: 9e129960835a196678c320d5dde19a13 -Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library -Maintainer: hipSPARSELt Maintainer -Recommends: hipsparselt-asan-dev (>=0.2.1.60202) -Version: 0.2.1.60202-116~20.04 -Installed-Size: 59812 - -Package: hipsparselt-asan-rpath6.2.2 -Architecture: amd64 -Depends: hipsparse (>= 2.1.0), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipsparselt-asan-rpath6.2.2/hipsparselt-asan-rpath6.2.2_0.2.1.60202-116~20.04_amd64.deb -Size: 16482888 -SHA256: 1c8626c5e4a1acac4bb26769644cd6c1c1f45497d3654b11bc69bd48e2dbe6f7 -SHA1: 54f470ad7f86342fc8311f534e3c814cb014fce1 -MD5sum: 2eea6a2e697844570244fa5ba5c8bbd4 -Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library -Maintainer: hipSPARSELt Maintainer -Recommends: hipsparselt-asan-dev (>=0.2.1.60202) -Version: 0.2.1.60202-116~20.04 -Installed-Size: 59812 - -Package: hipsparselt-asan6.2.2 -Architecture: amd64 -Depends: hipsparse (>= 2.1.0), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hipsparselt-asan6.2.2/hipsparselt-asan6.2.2_0.2.1.60202-116~20.04_amd64.deb -Size: 16482696 -SHA256: 0535eef6e4a9c9255efa6a88b8f39ee3ec1778d54083c3c095c5d95be20ab299 -SHA1: 91a2d0576d9ba26f1bea36aa1f623b3f69d9b152 -MD5sum: 4dea0c053fc0756edeacc53221497baf -Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library -Maintainer: hipSPARSELt Maintainer -Recommends: hipsparselt-asan-dev (>=0.2.1.60202) -Version: 0.2.1.60202-116~20.04 -Installed-Size: 59812 +Recommends: hipsparselt-dev (>=0.2.2.60301) +Version: 0.2.2.60301-48~20.04 +Installed-Size: 403610 Package: hipsparselt-dev Architecture: amd64 -Depends: hipsparselt (>= 0.2.1.60202) +Depends: hipsparselt (>= 0.2.2.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsparselt-dev/hipsparselt-dev_0.2.1.60202-116~20.04_amd64.deb -Size: 11612 -SHA256: cfd39548c6614e6d3be90ad95d9ca1cae78ffb7ad1a00737ffc6251bad755645 -SHA1: be7e4fd5d82577ef45fb8a80b6c979f932ccf5c1 -MD5sum: d63a963615c5676401d02617ef48829b +Filename: pool/main/h/hipsparselt-dev/hipsparselt-dev_0.2.2.60301-48~20.04_amd64.deb +Size: 11656 +SHA256: e8a8d76c505d191666dae3e9829f040b18ddf4dd078db1c7b701efbf43292329 +SHA1: dfa0a6bc686f2e02f58990ef781d591d4e425d7c +MD5sum: 05d8f297b50cc7dab625c993b2971a52 Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library Maintainer: hipSPARSELt Maintainer -Version: 0.2.1.60202-116~20.04 +Version: 0.2.2.60301-48~20.04 Installed-Size: 94 -Package: hipsparselt-dev-rpath6.2.2 +Package: hipsparselt-dev-rpath6.3.1 Architecture: amd64 -Depends: hipsparselt-rpath6.2.2 (>= 0.2.1.60202) +Depends: hipsparselt-rpath6.3.1 (>= 0.2.2.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsparselt-dev-rpath6.2.2/hipsparselt-dev-rpath6.2.2_0.2.1.60202-116~20.04_amd64.deb -Size: 11764 -SHA256: f8cc80ac57c701c86175e6b1ad5255fd19fc97362e1813ab0b3686e7372ad351 -SHA1: b677ceb29c5508e105f088150ca6a84370d5215f -MD5sum: e2dc8cbf03d96d7f9af18dfe4ba8a7df +Filename: pool/main/h/hipsparselt-dev-rpath6.3.1/hipsparselt-dev-rpath6.3.1_0.2.2.60301-48~20.04_amd64.deb +Size: 11808 +SHA256: 3f7b2b624cf04ab8f34ba032338b4a967338d677513d2d1e3f0da75c37d6e5c6 +SHA1: 5be28c7554d5da842e6c9667b10dbc388c54d035 +MD5sum: 4b928c105d4cccfb18c73b0b31068594 Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library Maintainer: hipSPARSELt Maintainer -Version: 0.2.1.60202-116~20.04 +Version: 0.2.2.60301-48~20.04 Installed-Size: 94 -Package: hipsparselt-dev6.2.2 +Package: hipsparselt-dev6.3.1 Architecture: amd64 -Depends: hipsparselt6.2.2 (>= 0.2.1.60202) +Depends: hipsparselt6.3.1 (>= 0.2.2.60301) Priority: optional Section: devel -Filename: pool/main/h/hipsparselt-dev6.2.2/hipsparselt-dev6.2.2_0.2.1.60202-116~20.04_amd64.deb -Size: 11756 -SHA256: 432160e47268d8fc7c3540bf213b8ea4e2f264c7d4cc7be73f1b9dc358378fb8 -SHA1: 4fd879c769985c587e4a9e158d64e477278c3966 -MD5sum: 002a10072598b381f4d26cbe01e33ba3 +Filename: pool/main/h/hipsparselt-dev6.3.1/hipsparselt-dev6.3.1_0.2.2.60301-48~20.04_amd64.deb +Size: 11796 +SHA256: e8dab52b656e81cf188d488045b8756489a159ca581972b3e82210c291707f7d +SHA1: b1b4b4ad64046254eb7bd3786a6ff16345203624 +MD5sum: 449978e1190e5a46c0bff71bf81d6bef Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library Maintainer: hipSPARSELt Maintainer -Version: 0.2.1.60202-116~20.04 +Version: 0.2.2.60301-48~20.04 Installed-Size: 94 -Package: hipsparselt-rpath6.2.2 +Package: hipsparselt-rpath6.3.1 Architecture: amd64 -Depends: hipsparse-rpath6.2.2 (>= 2.1.0), rocm-core-rpath6.2.2 +Depends: hipsparse-rpath6.3.1 (>= 2.1.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipsparselt-rpath6.2.2/hipsparselt-rpath6.2.2_0.2.1.60202-116~20.04_amd64.deb -Size: 6535332 -SHA256: ac7c9fefc9bfc131b278ee00067b064a25399f374bccbb41afdaf7092bfa2bd0 -SHA1: db4bffab5199c44d5583f35892041ae8f73dde78 -MD5sum: 264be4f9cf6d8665a733717647e91fe1 +Filename: pool/main/h/hipsparselt-rpath6.3.1/hipsparselt-rpath6.3.1_0.2.2.60301-48~20.04_amd64.deb +Size: 10423084 +SHA256: 1b3a4a923079798aa2b1933dedd2c6a17a3f5a09abf29c738e74d77513b03eef +SHA1: 2a244962542fe2e592d96be1af5aee7c63093e40 +MD5sum: 476ac9127fd86e6042d12423a125af48 Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library Maintainer: hipSPARSELt Maintainer -Recommends: hipsparselt-dev-rpath6.2.2 (>=0.2.1.60202) -Version: 0.2.1.60202-116~20.04 -Installed-Size: 232236 +Recommends: hipsparselt-dev-rpath6.3.1 (>=0.2.2.60301) +Version: 0.2.2.60301-48~20.04 +Installed-Size: 403610 -Package: hipsparselt6.2.2 +Package: hipsparselt6.3.1 Architecture: amd64 -Depends: hipsparse6.2.2 (>= 2.1.0), rocm-core6.2.2 +Depends: hipsparse6.3.1 (>= 2.1.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hipsparselt6.2.2/hipsparselt6.2.2_0.2.1.60202-116~20.04_amd64.deb -Size: 6535312 -SHA256: 84b1b6e9077c4690a438739c23bec046c711a100e18eb76df63b3b6125eb457f -SHA1: 2864d358c62f53862929289da7230b33d4f89414 -MD5sum: 4725f3272f10f79f0e5fffaeb0c79a25 +Filename: pool/main/h/hipsparselt6.3.1/hipsparselt6.3.1_0.2.2.60301-48~20.04_amd64.deb +Size: 10421900 +SHA256: df88373c81ee29138a331d4c73f50abfaaffc753046392ab7450a7d770951b7e +SHA1: 8259eb434f44b1e070b4bb76cef8d53f5ba4bdd3 +MD5sum: 92bb47be174a0319357fcf924957d445 Description: Radeon Open Compute Structured Sparsity Matrix Multiplication marshalling library Maintainer: hipSPARSELt Maintainer -Recommends: hipsparselt-dev6.2.2 (>=0.2.1.60202) -Version: 0.2.1.60202-116~20.04 -Installed-Size: 232236 +Recommends: hipsparselt-dev6.3.1 (>=0.2.2.60301) +Version: 0.2.2.60301-48~20.04 +Installed-Size: 403610 Package: hiptensor Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/h/hiptensor/hiptensor_1.3.0.60202-116~20.04_amd64.deb -Size: 39764192 -SHA256: 3577bdd767fe612a6d90e8eb6225119f5d7c83dbb4bacbca9fabf7e21a807b9c -SHA1: d00c9463d803351bc2ddc0b104bbe48cc9e550f7 -MD5sum: da2ef60d51cd4538f9e504ed20fabc76 +Filename: pool/main/h/hiptensor/hiptensor_1.4.0.60301-48~20.04_amd64.deb +Size: 34182166 +SHA256: b3be0d429904ce71091fa9e7a49ab7eab0f3bb34e2640ad8d644282bdd517476 +SHA1: f598ed258bdb17fe08aa27e6c2ae0a4d9fd4460f +MD5sum: 1e6063d7274bee8809cd19f40026e86d Description: AMD high-performance HIP library for tensor primitives Maintainer: hiptensor Maintainer -Recommends: hiptensor-dev (>=1.3.0.60202) -Version: 1.3.0.60202-116~20.04 -Installed-Size: 1112023 - -Package: hiptensor-asan -Architecture: amd64 -Depends: rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hiptensor-asan/hiptensor-asan_1.3.0.60202-116~20.04_amd64.deb -Size: 1447374834 -SHA256: 7f76413a2785d88b62d4860272455fcc766e4f85429b8034fd25cfce4791c090 -SHA1: 96f27543c7b1f8cf50b526a9c165316150f6fa3c -MD5sum: 9c557c7da488176488a81fa15ee63543 -Description: AMD high-performance HIP library for tensor primitives -Maintainer: hiptensor Maintainer -Recommends: hiptensor-asan-dev (>=1.3.0.60202) -Version: 1.3.0.60202-116~20.04 -Installed-Size: 5192496 - -Package: hiptensor-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hiptensor-asan-rpath6.2.2/hiptensor-asan-rpath6.2.2_1.3.0.60202-116~20.04_amd64.deb -Size: 1447384964 -SHA256: 602c5c31caa5035bc415cfdadcd9737b5475777c150995db97e7370ba5d74abe -SHA1: 9386262275d541ddc0f09324ba6bf5e3d2b9dd81 -MD5sum: 9276ea1efed6cc67bef5089764d0fa79 -Description: AMD high-performance HIP library for tensor primitives -Maintainer: hiptensor Maintainer -Recommends: hiptensor-asan-dev (>=1.3.0.60202) -Version: 1.3.0.60202-116~20.04 -Installed-Size: 5192496 - -Package: hiptensor-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hiptensor-asan6.2.2/hiptensor-asan6.2.2_1.3.0.60202-116~20.04_amd64.deb -Size: 1447377784 -SHA256: d1f21c3ba14e737f8a75c48741077a818169c17fe2bf49dfcd313711bf9131dc -SHA1: b1fe28b883c8db5aeb4053c37b855edd8fba47c0 -MD5sum: 469e09c4b5c8ee7d1931fcbd8f541288 -Description: AMD high-performance HIP library for tensor primitives -Maintainer: hiptensor Maintainer -Recommends: hiptensor-asan-dev (>=1.3.0.60202) -Version: 1.3.0.60202-116~20.04 -Installed-Size: 5192496 +Recommends: hiptensor-dev (>=1.4.0.60301) +Version: 1.4.0.60301-48~20.04 +Installed-Size: 824122 Package: hiptensor-dev Architecture: amd64 -Depends: hiptensor (>= 1.3.0.60202) +Depends: hiptensor (>= 1.4.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hiptensor-dev/hiptensor-dev_1.3.0.60202-116~20.04_amd64.deb -Size: 12428 -SHA256: 05e09b9182266d40c145478127da2bfc813dc36c1cf15a64b9abe1eea12da711 -SHA1: 75b3987a5c1cefa0c47597a3e6d76f4dff29ba5f -MD5sum: 4ac02225b46b3de2e77507ae2f0ae76a +Filename: pool/main/h/hiptensor-dev/hiptensor-dev_1.4.0.60301-48~20.04_amd64.deb +Size: 13190 +SHA256: fc961334fdb34e7056e6c05eeb4a6246d81b5be42d59c1c951f9d9ba97ff214b +SHA1: 4e590d82d903f235c8c0ec744825c496cb100c14 +MD5sum: 0e7fa97ad5b530110a1c52c189193704 Description: AMD high-performance HIP library for tensor primitives Maintainer: hiptensor Maintainer -Version: 1.3.0.60202-116~20.04 -Installed-Size: 98 +Version: 1.4.0.60301-48~20.04 +Installed-Size: 104 -Package: hiptensor-dev-rpath6.2.2 +Package: hiptensor-dev-rpath6.3.1 Architecture: amd64 -Depends: hiptensor-rpath6.2.2 (>= 1.3.0.60202) +Depends: hiptensor-rpath6.3.1 (>= 1.4.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hiptensor-dev-rpath6.2.2/hiptensor-dev-rpath6.2.2_1.3.0.60202-116~20.04_amd64.deb -Size: 12580 -SHA256: 7e10ff746750670df839485c7759c4fa2815ed7b42a9ec7a5918bce0c4d51b67 -SHA1: ea66168c36c2b30b274b7ecc93a72f01478ee1dc -MD5sum: b594afd710116b71279b4ec4f7c6eb73 +Filename: pool/main/h/hiptensor-dev-rpath6.3.1/hiptensor-dev-rpath6.3.1_1.4.0.60301-48~20.04_amd64.deb +Size: 13320 +SHA256: 1fe653597763afbbd893b4aa9252304ed429a22bbf271299a2f1208da7576198 +SHA1: 581f4daf639d48d76d640ee13305e6e1650d98b4 +MD5sum: 3f20316bbff428a8677333164ada4e6a Description: AMD high-performance HIP library for tensor primitives Maintainer: hiptensor Maintainer -Version: 1.3.0.60202-116~20.04 -Installed-Size: 98 +Version: 1.4.0.60301-48~20.04 +Installed-Size: 104 -Package: hiptensor-dev6.2.2 +Package: hiptensor-dev6.3.1 Architecture: amd64 -Depends: hiptensor6.2.2 (>= 1.3.0.60202) +Depends: hiptensor6.3.1 (>= 1.4.0.60301) Priority: optional Section: devel -Filename: pool/main/h/hiptensor-dev6.2.2/hiptensor-dev6.2.2_1.3.0.60202-116~20.04_amd64.deb -Size: 12564 -SHA256: 6adc2508deee0d0d7822e2520ee6ba4fa4da8d0d6fcd55764e38c45a7d483a96 -SHA1: b49d2aec5c866f315ae9d8d4703258467a2d7531 -MD5sum: d7b2f27a1691bade6f5b534ad689afb4 +Filename: pool/main/h/hiptensor-dev6.3.1/hiptensor-dev6.3.1_1.4.0.60301-48~20.04_amd64.deb +Size: 13320 +SHA256: 81da2b3879774b68db1278b0ae82bb2415276baf27f1810d9fee940d26eab226 +SHA1: f188d9a1f4f785c5927a3b48b56699e6740cd65a +MD5sum: 85a7778c7b2e1eedf7c600e3b4f81233 Description: AMD high-performance HIP library for tensor primitives Maintainer: hiptensor Maintainer -Version: 1.3.0.60202-116~20.04 -Installed-Size: 98 +Version: 1.4.0.60301-48~20.04 +Installed-Size: 104 -Package: hiptensor-rpath6.2.2 +Package: hiptensor-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hiptensor-rpath6.2.2/hiptensor-rpath6.2.2_1.3.0.60202-116~20.04_amd64.deb -Size: 39772448 -SHA256: a4d8064c448533431e43d2c2469aa135383f4e9e1463ff1a2a2a605465ede36b -SHA1: 4b92f89490aa787f5e96c8afeeafb9c9eab02322 -MD5sum: 7fa799a431b1ba4bd135c05b01c369d2 +Filename: pool/main/h/hiptensor-rpath6.3.1/hiptensor-rpath6.3.1_1.4.0.60301-48~20.04_amd64.deb +Size: 34183084 +SHA256: 4e8b64d461561a1d06c6240275fa0c8deb2789c83eefc613cb259d7938cd8183 +SHA1: 1c279a88bb4137304b2c930743d75d298290c921 +MD5sum: 8cb3fa3e8c55ced245bd0217f85ee1fd Description: AMD high-performance HIP library for tensor primitives Maintainer: hiptensor Maintainer -Recommends: hiptensor-dev-rpath6.2.2 (>=1.3.0.60202) -Version: 1.3.0.60202-116~20.04 -Installed-Size: 1112023 +Recommends: hiptensor-dev-rpath6.3.1 (>=1.4.0.60301) +Version: 1.4.0.60301-48~20.04 +Installed-Size: 824122 -Package: hiptensor6.2.2 +Package: hiptensor6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hiptensor6.2.2/hiptensor6.2.2_1.3.0.60202-116~20.04_amd64.deb -Size: 39759296 -SHA256: 47429337f076dbe7a98c4d5fedc371979b33a8af296fd38ec45ba1f8a88474fa -SHA1: a1b0090327add2d3749a6c37cbe96091987ff1b9 -MD5sum: 870263ccee2ab674cbd8bb7c7cd3f380 +Filename: pool/main/h/hiptensor6.3.1/hiptensor6.3.1_1.4.0.60301-48~20.04_amd64.deb +Size: 34183060 +SHA256: 271f290167bf4cfb1d8cbb9398dbcfc4fc9b2caad9cd1b44e3a2d972e273ed91 +SHA1: 09ea8c1def78ca7b577f15f3fdd1067cff45fdb3 +MD5sum: 93b47ff5fa695c51000bd3b9bb35bef1 Description: AMD high-performance HIP library for tensor primitives Maintainer: hiptensor Maintainer -Recommends: hiptensor-dev6.2.2 (>=1.3.0.60202) -Version: 1.3.0.60202-116~20.04 -Installed-Size: 1112023 +Recommends: hiptensor-dev6.3.1 (>=1.4.0.60301) +Version: 1.4.0.60301-48~20.04 +Installed-Size: 824122 Package: hsa-amd-aqlprofile Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/h/hsa-amd-aqlprofile/hsa-amd-aqlprofile_1.0.0.60202.60202-116~20.04_amd64.deb -Size: 459174 -SHA256: f89c02d187dd20b8142fcf33c235746cc0c5ede58e240dbff2424a8b8f04fbe9 -SHA1: a9cd7aff4b428c3c5568e39faebc452c850b2fc6 -MD5sum: f1d460690ebcb9f3fdee4bb797da1e87 +Filename: pool/main/h/hsa-amd-aqlprofile/hsa-amd-aqlprofile_1.0.0.60301-48~20.04_amd64.deb +Size: 482520 +SHA256: 76b129345a1a7caa04859fd738e0ba5bfa6f7bc1ad11171f1a7b2d46e0c0b158 +SHA1: 3e3a41989dec3df8ef1480206de433ec6948f672 +MD5sum: 1f80c1e664ed69aa1ff15796040e76e7 Description: AQLPROFILE library for AMD HSA runtime API extension support Dynamic libraries for the AQLProfile Homepage: https://github.com/RadeonOpenCompute/HSA-AqlProfile-AMD-extension Maintainer: ROCm Profiler Support -Version: 1.0.0.60202.60202-116~20.04 -Installed-Size: 2748 +Version: 1.0.0.60301-48~20.04 +Installed-Size: 2947 -Package: hsa-amd-aqlprofile-asan +Package: hsa-amd-aqlprofile-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-asan +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hsa-amd-aqlprofile-asan/hsa-amd-aqlprofile-asan_1.0.0.60202.60202-116~20.04_amd64.deb -Size: 6428678 -SHA256: e28b2c0feaff4708e216806b08c6d5280f1d52de7dd7d9d6a09614b5b2ff36ed -SHA1: e511eb261ddc1b32dd05ed36b93907b9d38dca47 -MD5sum: 702646c130b037ec3d55d240224cc953 -Description: AQLPROFILE library for AMD HSA runtime API extension support - ASAN libraries for the AQLProfile -Homepage: https://github.com/RadeonOpenCompute/HSA-AqlProfile-AMD-extension -Maintainer: ROCm Profiler Support -Version: 1.0.0.60202.60202-116~20.04 -Installed-Size: 30650 - -Package: hsa-amd-aqlprofile-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsa-amd-aqlprofile-asan-rpath6.2.2/hsa-amd-aqlprofile-asan-rpath6.2.2_1.0.0.60202.60202-116~20.04_amd64.deb -Size: 3816684 -SHA256: 36a49e1b02e9b9fed8411ca7ea91884df89fc9733d9d9746edcb4c411a2091c0 -SHA1: d7ef2e5f2d3e739833f7af0257ab91153c91da2d -MD5sum: f62af78c5156ab417e7a64d9dd0e65b9 -Description: AQLPROFILE library for AMD HSA runtime API extension support - ASAN libraries for the AQLProfile -Homepage: https://github.com/RadeonOpenCompute/HSA-AqlProfile-AMD-extension -Maintainer: ROCm Profiler Support -Version: 1.0.0.60202.60202-116~20.04 -Installed-Size: 30650 - -Package: hsa-amd-aqlprofile-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsa-amd-aqlprofile-asan6.2.2/hsa-amd-aqlprofile-asan6.2.2_1.0.0.60202.60202-116~20.04_amd64.deb -Size: 3816168 -SHA256: 3c3706f9ab203062530188e7d0f671a93ad1c8c96aa133f801d376e57ef3e2b4 -SHA1: ccfe9187fbed2200856e773b48d5c3d200ed694a -MD5sum: 68ea573ef6d882a37ec85d5f7a059235 -Description: AQLPROFILE library for AMD HSA runtime API extension support - ASAN libraries for the AQLProfile -Homepage: https://github.com/RadeonOpenCompute/HSA-AqlProfile-AMD-extension -Maintainer: ROCm Profiler Support -Version: 1.0.0.60202.60202-116~20.04 -Installed-Size: 30650 - -Package: hsa-amd-aqlprofile-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsa-amd-aqlprofile-rpath6.2.2/hsa-amd-aqlprofile-rpath6.2.2_1.0.0.60202.60202-116~20.04_amd64.deb -Size: 267252 -SHA256: 5d793342e5aab0359c9f881507b6e667ecf2b55edc2fd8863e244693c730fa3b -SHA1: 6a769dec75fa2b51c9656369cc9c3339f98441cf -MD5sum: 38a2bb235c096bfbcabd083410b0d876 +Filename: pool/main/h/hsa-amd-aqlprofile-rpath6.3.1/hsa-amd-aqlprofile-rpath6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 278032 +SHA256: 5a85e03ed3fdceafa09e70ee8ca461dcab746bf17f8caada30734c6f792882bd +SHA1: f395eaca07bcbb2db9c011c2779aa1418038e73a +MD5sum: 2f4ee6ac045cc5f176ea35d783bfc351 Description: AQLPROFILE library for AMD HSA runtime API extension support Dynamic libraries for the AQLProfile Homepage: https://github.com/RadeonOpenCompute/HSA-AqlProfile-AMD-extension Maintainer: ROCm Profiler Support -Version: 1.0.0.60202.60202-116~20.04 -Installed-Size: 2748 +Version: 1.0.0.60301-48~20.04 +Installed-Size: 2947 -Package: hsa-amd-aqlprofile6.2.2 +Package: hsa-amd-aqlprofile6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hsa-amd-aqlprofile6.2.2/hsa-amd-aqlprofile6.2.2_1.0.0.60202.60202-116~20.04_amd64.deb -Size: 267228 -SHA256: 4467bee59d5560c9f154dd374f83d51fa1c5b4f3e827129149b93f4337dd26e6 -SHA1: 8ec44193e936f99264780f1809ddc0e098aea2de -MD5sum: c2579792cd8c8f8192ce1e2189570cfa +Filename: pool/main/h/hsa-amd-aqlprofile6.3.1/hsa-amd-aqlprofile6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 277444 +SHA256: 3a5c70ff070755c959d9e04b6934b7593466f328b044d057cce7e5b5c63d19df +SHA1: 9a7373eac201790dd593f457ac0ff61249d6da50 +MD5sum: c71e708d0e40b6195f83ab18cfddd3cf Description: AQLPROFILE library for AMD HSA runtime API extension support Dynamic libraries for the AQLProfile Homepage: https://github.com/RadeonOpenCompute/HSA-AqlProfile-AMD-extension Maintainer: ROCm Profiler Support -Version: 1.0.0.60202.60202-116~20.04 -Installed-Size: 2748 +Version: 1.0.0.60301-48~20.04 +Installed-Size: 2947 Package: hsa-rocr Architecture: amd64 @@ -3241,1579 +1783,805 @@ Breaks: hsa-ext-rocr-dev Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core, rocprofiler-register Priority: optional Section: devel -Filename: pool/main/h/hsa-rocr/hsa-rocr_1.14.0.60202-116~20.04_amd64.deb -Size: 935194 -SHA256: 66cd708ebad4dc99b031d79c0882c280abbc4555891ac630ad09ecd919caefea -SHA1: efd42000a1662202740bc6fc3cc1aa22574f2fdf -MD5sum: ecb576c560ca92e59d574aaa51278d0e +Filename: pool/main/h/hsa-rocr/hsa-rocr_1.14.0.60301-48~20.04_amd64.deb +Size: 1334888 +SHA256: 1487ef4a8294b07a4e23e818ab806d50528d3408855595e5556312da9ea005e3 +SHA1: 7ca28f8442bb335bd5ecbb0584f14a674825daa8 +MD5sum: bea1d2d1d714de68fc600d0d8fc2d4fc Description: AMD Heterogeneous System Architecture HSA - Linux HSA Runtime for Boltzmann (ROCm) platforms Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime Maintainer: AMD HSA Support +Provides: hsakmt-roct Recommends: libdrm-amdgpu-amdgpu1 -Replaces: hsa-ext-rocr-dev -Version: 1.14.0.60202-116~20.04 -Installed-Size: 9535 - -Package: hsa-rocr-asan -Architecture: amd64 -Breaks: hsa-ext-rocr-dev -Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hsa-rocr-asan/hsa-rocr-asan_1.14.0.60202-116~20.04_amd64.deb -Size: 1643782 -SHA256: ab3f5350aed5723e6e7f32a4aac9310c5463fe04e641bb4f962fc77290f05cc9 -SHA1: e1c8c0add3461c33538d74ae4231878fe0789eaa -MD5sum: 5ced42341abd1123ccb552638558f68e -Description: AMD Heterogeneous System Architecture HSA - Linux HSA instrumented libraries for Boltzmann (ROCm) platforms -Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime -Maintainer: AMD HSA Support -Replaces: hsa-ext-rocr-dev -Version: 1.14.0.60202-116~20.04 -Installed-Size: 17194 - -Package: hsa-rocr-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3cd73428a57c654e904b32077497e59f0c951270 -Depends: hsa-rocr-asan (= 1.14.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hsa-rocr-asan-dbgsym/hsa-rocr-asan-dbgsym_1.14.0.60202-116~20.04_amd64.deb -Size: 4980264 -SHA256: 917c4b503f9574def7d19eca6d3617dd734ff4196d6ff824c753bbca4fc8b56d -SHA1: d4bc198df1a4c23eb6013e78fd068b95d2fb0df3 -MD5sum: cbbbf132e345fa813396401b7c80aa0a -Description: debug symbols for hsa-rocr-asan -Maintainer: AMD HSA Support -Package-Type: ddeb -Version: 1.14.0.60202-116~20.04 -Installed-Size: 13781 - -Package: hsa-rocr-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3cd73428a57c654e904b32077497e59f0c951270 -Depends: hsa-rocr-asan-rpath6.2.2 (= 1.14.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hsa-rocr-asan-dbgsym-rpath6.2.2/hsa-rocr-asan-dbgsym-rpath6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 3469464 -SHA256: f06410dba492b7fbe85ff791b349da6ca85b4589831f1269692c60aa246a8865 -SHA1: 6e8f096789f3061bc4180d3727638a7c85983e69 -MD5sum: c07b572e3e6c2b7e40f84472aa4e9d88 -Description: debug symbols for hsa-rocr-asan -Maintainer: AMD HSA Support -Package-Type: ddeb -Version: 1.14.0.60202-116~20.04 -Installed-Size: 13781 - -Package: hsa-rocr-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3cd73428a57c654e904b32077497e59f0c951270 -Depends: hsa-rocr-asan6.2.2 (= 1.14.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hsa-rocr-asan-dbgsym6.2.2/hsa-rocr-asan-dbgsym6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 3469560 -SHA256: 15bd29bba0f53b167026c64de5979f0a6761ddc84eb26682501239a0b90f5ee6 -SHA1: 5625ea9fa6d9d68b8586ccefc61fc95950d7cf19 -MD5sum: a5b10ec22a12ee7983225a5748d30272 -Description: debug symbols for hsa-rocr-asan -Maintainer: AMD HSA Support -Package-Type: ddeb -Version: 1.14.0.60202-116~20.04 -Installed-Size: 13781 - -Package: hsa-rocr-asan-rpath6.2.2 -Architecture: amd64 -Breaks: hsa-ext-rocr-dev-rpath6.2.2 -Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsa-rocr-asan-rpath6.2.2/hsa-rocr-asan-rpath6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 1031380 -SHA256: d539a87c6f5a964d9b54c8efac9b1c5d637aa4a5c7b24162bb86edb25fe71048 -SHA1: 7cc0453e9c3ee88e65a34391ff4c6b1a93f0a756 -MD5sum: 9dbb3e0196c665e39e49a9814167a0e8 -Description: AMD Heterogeneous System Architecture HSA - Linux HSA instrumented libraries for Boltzmann (ROCm) platforms -Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime -Maintainer: AMD HSA Support -Replaces: hsa-ext-rocr-dev-rpath6.2.2 -Version: 1.14.0.60202-116~20.04 -Installed-Size: 17194 - -Package: hsa-rocr-asan6.2.2 -Architecture: amd64 -Breaks: hsa-ext-rocr-dev6.2.2 -Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsa-rocr-asan6.2.2/hsa-rocr-asan6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 1030928 -SHA256: c5140073518b3a733041f100c474da1b3eafd8f375a8b442a55ea1780ed22a3b -SHA1: ec181224d6bc9da511403a17f4fc1a1d8315c59c -MD5sum: 13b4cd679bfa8dba4e98d035562a11c0 -Description: AMD Heterogeneous System Architecture HSA - Linux HSA instrumented libraries for Boltzmann (ROCm) platforms -Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime -Maintainer: AMD HSA Support -Replaces: hsa-ext-rocr-dev6.2.2 -Version: 1.14.0.60202-116~20.04 -Installed-Size: 17194 +Replaces: hsakmt-roct,hsakmt-roct-dev,hsa-ext-rocr-dev +Version: 1.14.0.60301-48~20.04 +Installed-Size: 11018 Package: hsa-rocr-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 2712d2d5f96b5573d48e6b2eafbed56df250c28e -Depends: hsa-rocr (= 1.14.0.60202-116~20.04) +Build-Ids: 9bc6d69b484863c887f7ad93b9428631ed065d52 +Depends: hsa-rocr (= 1.14.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/h/hsa-rocr-dbgsym/hsa-rocr-dbgsym_1.14.0.60202-116~20.04_amd64.deb -Size: 10283614 -SHA256: 50e84b0609af2893e8d9653b8e98775769747eed6a6dd97e3a87dee3ce4f1735 -SHA1: 82e0bd03c7aec391bfc93a6334607f53b8482301 -MD5sum: ba17bb3bf4029266074442dc0f8b1b34 +Filename: pool/main/h/hsa-rocr-dbgsym/hsa-rocr-dbgsym_1.14.0.60301-48~20.04_amd64.deb +Size: 11027768 +SHA256: 13b27e7f71cc714a31beb0c54cd2b0192fc1e77b636599ac9653559460da2a1f +SHA1: 062047463c86655c8d2c9637d99e0d489d4fd9dc +MD5sum: b88fe9f3e206360d506748cd84c365e2 Description: debug symbols for hsa-rocr Maintainer: AMD HSA Support Package-Type: ddeb -Version: 1.14.0.60202-116~20.04 -Installed-Size: 34610 - -Package: hsa-rocr-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 2712d2d5f96b5573d48e6b2eafbed56df250c28e -Depends: hsa-rocr-rpath6.2.2 (= 1.14.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hsa-rocr-dbgsym-rpath6.2.2/hsa-rocr-dbgsym-rpath6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 6890816 -SHA256: f83a89d295f94b0c3f9710344cdb84fe61cc57a0873e90a8c2b2b8bb45f93cae -SHA1: b59910d940687c4c69a9158bdab13168a08f198d -MD5sum: a0d1ef4a67d4c9f2084e762fd61932d4 -Description: debug symbols for hsa-rocr -Maintainer: AMD HSA Support -Package-Type: ddeb -Version: 1.14.0.60202-116~20.04 -Installed-Size: 34610 - -Package: hsa-rocr-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 2712d2d5f96b5573d48e6b2eafbed56df250c28e -Depends: hsa-rocr6.2.2 (= 1.14.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/h/hsa-rocr-dbgsym6.2.2/hsa-rocr-dbgsym6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 6890668 -SHA256: 91efbd6bf971ff45e476cf3c1ea705ee9c1010d2011be16f3cbec1119f5cab9c -SHA1: 043d890be4d29fef2725095c417b118e15110737 -MD5sum: 2e0df9475e1f5f3d5de2ba9752bf4ba5 -Description: debug symbols for hsa-rocr -Maintainer: AMD HSA Support -Package-Type: ddeb -Version: 1.14.0.60202-116~20.04 -Installed-Size: 34610 +Version: 1.14.0.60301-48~20.04 +Installed-Size: 36355 Package: hsa-rocr-dev Architecture: amd64 Breaks: hsa-ext-rocr-dev -Depends: hsa-rocr, hsakmt-roct-dev +Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core, hsa-rocr Priority: optional Section: devel -Filename: pool/main/h/hsa-rocr-dev/hsa-rocr-dev_1.14.0.60202-116~20.04_amd64.deb -Size: 105938 -SHA256: 87b868469a9ccfd457134e41abf2d198d263b67e3b852415cb04a871cd1ee5ca -SHA1: c73f73e671a97b68b14ef164aaa3c93c0792f0f6 -MD5sum: 47256f56300018102c8ffa931a9390f7 +Filename: pool/main/h/hsa-rocr-dev/hsa-rocr-dev_1.14.0.60301-48~20.04_amd64.deb +Size: 134530 +SHA256: d518dde979a430c6e3186bdaca467a20e5458634e6638cdf42b4f044dd3a4c51 +SHA1: 24a68172ce93df8a77c5f11312f42f7fef002ba0 +MD5sum: 75b15b21c0f84c8bdeab382e5841e030 Description: AMD Heterogeneous System Architecture HSA development package. - This package contains the headers and cmake files for the hsa-rocr package. + This package contains the headers and cmake files for the rocr-runtime package. Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime Maintainer: AMD HSA Support -Replaces: hsa-ext-rocr-dev -Version: 1.14.0.60202-116~20.04 -Installed-Size: 584 +Provides: hsakmt-roct,hsakmt-roct-dev +Recommends: libdrm-amdgpu-dev +Replaces: hsakmt-roct,hsakmt-roct-dev +Version: 1.14.0.60301-48~20.04 +Installed-Size: 711 -Package: hsa-rocr-dev-rpath6.2.2 +Package: hsa-rocr-dev-rpath6.3.1 Architecture: amd64 -Breaks: hsa-ext-rocr-dev-rpath6.2.2 -Depends: hsa-rocr-rpath6.2.2, hsakmt-roct-dev-rpath6.2.2 +Breaks: hsa-ext-rocr-dev-rpath6.3.1 +Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core-rpath6.3.1, hsa-rocr-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hsa-rocr-dev-rpath6.2.2/hsa-rocr-dev-rpath6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 81156 -SHA256: 1a2850495a1ba39e4aff20f9f0c814bc1496b14d4daeca96e0d88f88529fcc4d -SHA1: ffadf87fd8626a70003783a9bfb0e7849538a5f0 -MD5sum: 53b352f2673f817358bba6a455a05e4e +Filename: pool/main/h/hsa-rocr-dev-rpath6.3.1/hsa-rocr-dev-rpath6.3.1_1.14.0.60301-48~20.04_amd64.deb +Size: 103852 +SHA256: e870ca965ec487955fd2b0179a63f759bbc9fb6bea6c7c29e9f0d866f6230364 +SHA1: 216f792c2f8113a23a9793ee12f5c00e9e26a402 +MD5sum: 04114d0ad1ce44f3b31edb49b2805421 Description: AMD Heterogeneous System Architecture HSA development package. - This package contains the headers and cmake files for the hsa-rocr package. + This package contains the headers and cmake files for the rocr-runtime package. Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime Maintainer: AMD HSA Support -Replaces: hsa-ext-rocr-dev-rpath6.2.2 -Version: 1.14.0.60202-116~20.04 -Installed-Size: 584 +Provides: hsakmt-roct-rpath6.3.1,hsakmt-roct-dev +Recommends: libdrm-amdgpu-dev +Replaces: hsakmt-roct-rpath6.3.1,hsakmt-roct-dev +Version: 1.14.0.60301-48~20.04 +Installed-Size: 711 -Package: hsa-rocr-dev6.2.2 +Package: hsa-rocr-dev6.3.1 Architecture: amd64 -Breaks: hsa-ext-rocr-dev6.2.2 -Depends: hsa-rocr6.2.2, hsakmt-roct-dev6.2.2 +Breaks: hsa-ext-rocr-dev6.3.1 +Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core6.3.1, hsa-rocr6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hsa-rocr-dev6.2.2/hsa-rocr-dev6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 81192 -SHA256: 6453db78f1221a245e5aa72ee6faebb8be43e317e72648497be1a687b6aaaabd -SHA1: 451e2583f52e1991e9ce4d4dc5b6b4f03825875a -MD5sum: 24578fb91a5e86a0f7986f234d0d4637 +Filename: pool/main/h/hsa-rocr-dev6.3.1/hsa-rocr-dev6.3.1_1.14.0.60301-48~20.04_amd64.deb +Size: 103864 +SHA256: af2ba06226e185f3d86209196c39091a740b3d739fb949ab4d393e2fbe659ff5 +SHA1: b8b2179118ef084355acf2debb48cb532df522b9 +MD5sum: 1456edc881993216e033aad4b1d3b74b Description: AMD Heterogeneous System Architecture HSA development package. - This package contains the headers and cmake files for the hsa-rocr package. + This package contains the headers and cmake files for the rocr-runtime package. Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime Maintainer: AMD HSA Support -Replaces: hsa-ext-rocr-dev6.2.2 -Version: 1.14.0.60202-116~20.04 -Installed-Size: 584 +Provides: hsakmt-roct6.3.1,hsakmt-roct-dev +Recommends: libdrm-amdgpu-dev +Replaces: hsakmt-roct6.3.1,hsakmt-roct-dev +Version: 1.14.0.60301-48~20.04 +Installed-Size: 711 -Package: hsa-rocr-rpath6.2.2 +Package: hsa-rocr-rpath6.3.1 Architecture: amd64 -Breaks: hsa-ext-rocr-dev-rpath6.2.2 -Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core-rpath6.2.2, rocprofiler-register-rpath6.2.2 +Breaks: hsa-ext-rocr-dev-rpath6.3.1 +Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core-rpath6.3.1, rocprofiler-register-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hsa-rocr-rpath6.2.2/hsa-rocr-rpath6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 554548 -SHA256: 484e68e1548658ab80505e457822107c51eeeb4a10b3ca6829154f079bcc62bf -SHA1: 42beb7e23f62c9c8e226d3894db068ae3e49a9d6 -MD5sum: aea725b247796004272dc1f1f16cc426 +Filename: pool/main/h/hsa-rocr-rpath6.3.1/hsa-rocr-rpath6.3.1_1.14.0.60301-48~20.04_amd64.deb +Size: 785408 +SHA256: d8c830757531b76e3e449ad57cb50d7a03c797efd7c56f42bafb7249aa955662 +SHA1: bdddfb254b936bbf014124b518118cd62b8613cc +MD5sum: 5a9306b307bd39ac970daf7e9780c969 Description: AMD Heterogeneous System Architecture HSA - Linux HSA Runtime for Boltzmann (ROCm) platforms Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime Maintainer: AMD HSA Support +Provides: hsakmt-roct-rpath6.3.1 Recommends: libdrm-amdgpu-amdgpu1 -Replaces: hsa-ext-rocr-dev-rpath6.2.2 -Version: 1.14.0.60202-116~20.04 -Installed-Size: 9535 +Replaces: hsakmt-roct-rpath6.3.1,hsakmt-roct-dev,hsa-ext-rocr-dev-rpath6.3.1 +Version: 1.14.0.60301-48~20.04 +Installed-Size: 11018 -Package: hsa-rocr6.2.2 +Package: hsa-rocr6.3.1 Architecture: amd64 -Breaks: hsa-ext-rocr-dev6.2.2 -Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core6.2.2, rocprofiler-register6.2.2 +Breaks: hsa-ext-rocr-dev6.3.1 +Depends: libdrm-amdgpu-amdgpu1 | libdrm-amdgpu1, libnuma1, libelf1, rocm-core6.3.1, rocprofiler-register6.3.1 Priority: optional Section: devel -Filename: pool/main/h/hsa-rocr6.2.2/hsa-rocr6.2.2_1.14.0.60202-116~20.04_amd64.deb -Size: 554860 -SHA256: d247e9b78c09f87cbb70d0a9d34822f8fa600032c841514e99987b76e26512e7 -SHA1: 015dad4a6797863779aae4829d2e5cf1bfc070a7 -MD5sum: 9759a60ad3b5f6ac0d99209d842403cf +Filename: pool/main/h/hsa-rocr6.3.1/hsa-rocr6.3.1_1.14.0.60301-48~20.04_amd64.deb +Size: 785396 +SHA256: 3df9321423516d4a5baaa43e173ce3a4c2de2022a6fe5c4361d6e89c69a33f5a +SHA1: c6624ed8fef436148852a1d05e1da22bf528d0c6 +MD5sum: f701adec15a110d239f5b08170bad939 Description: AMD Heterogeneous System Architecture HSA - Linux HSA Runtime for Boltzmann (ROCm) platforms Homepage: https://github.com/RadeonOpenCompute/ROCR-Runtime Maintainer: AMD HSA Support +Provides: hsakmt-roct6.3.1 Recommends: libdrm-amdgpu-amdgpu1 -Replaces: hsa-ext-rocr-dev6.2.2 -Version: 1.14.0.60202-116~20.04 -Installed-Size: 9535 - -Package: hsakmt-roct-asan -Architecture: amd64 -Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/h/hsakmt-roct-asan/hsakmt-roct-asan_20240607.4.05.60202-116~20.04_amd64.deb -Size: 447520 -SHA256: 4ff56cbf3c646bad4f0f1292a2482dce6cae595fac8f6864da2d5eb2bb2bf57a -SHA1: 0c11ad39186771edd2df5a096e602015b03e9e59 -MD5sum: 41b771ea7ce794589485b906facd7eab -Description: ASAN libraries for the LIBHSAKMT -Homepage: https://github.com/ROCm/ROCT-Thunk-Interface -Maintainer: AMD GFX mailing list -Provides: hsakmt-roct -Recommends: libdrm-amdgpu-dev -Replaces: hsakmt-roct -Version: 20240607.4.05.60202-116~20.04 -Installed-Size: 1502 - -Package: hsakmt-roct-asan-rpath6.2.2 -Architecture: amd64 -Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsakmt-roct-asan-rpath6.2.2/hsakmt-roct-asan-rpath6.2.2_20240607.4.05.60202-116~20.04_amd64.deb -Size: 300196 -SHA256: 3cda018daaaed707c17d55e9e48e5e0b0728c957feb205a4a9cc3b34963a3083 -SHA1: 3c8503ee2b86fc31098fcd5c543f43a809fc6558 -MD5sum: 0752b175e48bbfe9e28fa43421bfb342 -Description: ASAN libraries for the LIBHSAKMT -Homepage: https://github.com/ROCm/ROCT-Thunk-Interface -Maintainer: AMD GFX mailing list -Provides: hsakmt-roct-rpath6.2.2 -Recommends: libdrm-amdgpu-dev -Replaces: hsakmt-roct-rpath6.2.2 -Version: 20240607.4.05.60202-116~20.04 -Installed-Size: 1502 - -Package: hsakmt-roct-asan6.2.2 -Architecture: amd64 -Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsakmt-roct-asan6.2.2/hsakmt-roct-asan6.2.2_20240607.4.05.60202-116~20.04_amd64.deb -Size: 300184 -SHA256: 5f89b9603f423d7df35db5331ca1b0d2f248aff933e63623951a0299cc57b860 -SHA1: 97015b5b191b77d3d1744a048d8832a723b46ffa -MD5sum: 5b22ab4347b5febb68c2028e44064592 -Description: ASAN libraries for the LIBHSAKMT -Homepage: https://github.com/ROCm/ROCT-Thunk-Interface -Maintainer: AMD GFX mailing list -Provides: hsakmt-roct6.2.2 -Recommends: libdrm-amdgpu-dev -Replaces: hsakmt-roct6.2.2 -Version: 20240607.4.05.60202-116~20.04 -Installed-Size: 1502 - -Package: hsakmt-roct-dev -Architecture: amd64 -Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core -Priority: optional -Section: devel -Filename: pool/main/h/hsakmt-roct-dev/hsakmt-roct-dev_20240607.4.05.60202-116~20.04_amd64.deb -Size: 782244 -SHA256: d368523e2454da1b42ed53bca62fef5acc33279525894783120b01b3077ae887 -SHA1: 7d03ffb25a596e3ce544e7f439a663e7b60a21d3 -MD5sum: 23e4a5922b2cd0fd527e003e795b2c87 -Description: hsakmt built using CMake -Homepage: https://github.com/ROCm/ROCT-Thunk-Interface -Maintainer: AMD GFX mailing list -Provides: hsakmt-roct -Recommends: libdrm-amdgpu-dev -Replaces: hsakmt-roct -Version: 20240607.4.05.60202-116~20.04 -Installed-Size: 2884 - -Package: hsakmt-roct-dev-rpath6.2.2 -Architecture: amd64 -Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsakmt-roct-dev-rpath6.2.2/hsakmt-roct-dev-rpath6.2.2_20240607.4.05.60202-116~20.04_amd64.deb -Size: 278424 -SHA256: 9448e8fef9a9432b3c038f73aef5ac1ceda3c4b475e3ed4dfbccfeb18ee8361c -SHA1: bbcb2dab97ccae63b5b1c94d497d876c0393693d -MD5sum: e1fa0c8ee6817d1b8902b411916457b6 -Description: hsakmt built using CMake -Homepage: https://github.com/ROCm/ROCT-Thunk-Interface -Maintainer: AMD GFX mailing list -Provides: hsakmt-roct-rpath6.2.2 -Recommends: libdrm-amdgpu-dev -Replaces: hsakmt-roct-rpath6.2.2 -Version: 20240607.4.05.60202-116~20.04 -Installed-Size: 2884 - -Package: hsakmt-roct-dev6.2.2 -Architecture: amd64 -Depends: libdrm-amdgpu-dev | libdrm-dev, rocm-core6.2.2 -Priority: optional -Section: devel -Filename: pool/main/h/hsakmt-roct-dev6.2.2/hsakmt-roct-dev6.2.2_20240607.4.05.60202-116~20.04_amd64.deb -Size: 278524 -SHA256: 6527134032a5284f46e555bdfe177e64a14446cff744960ff1b7dc6ab6f8762c -SHA1: 34bde359076a5a8fbe548d5b88cdffcc51e4079f -MD5sum: 34ac28d1a2010e30f997badf63ca7dec -Description: hsakmt built using CMake -Homepage: https://github.com/ROCm/ROCT-Thunk-Interface -Maintainer: AMD GFX mailing list -Provides: hsakmt-roct6.2.2 -Recommends: libdrm-amdgpu-dev -Replaces: hsakmt-roct6.2.2 -Version: 20240607.4.05.60202-116~20.04 -Installed-Size: 2884 +Replaces: hsakmt-roct6.3.1,hsakmt-roct-dev,hsa-ext-rocr-dev6.3.1 +Version: 1.14.0.60301-48~20.04 +Installed-Size: 11018 Package: migraphx Architecture: amd64 -Depends: hip-dev, hip-runtime-amd, half, miopen-hip, rocblas, rocm-core +Depends: hip-dev, hip-runtime-amd, half, miopen-hip, rocblas, hipblaslt, rocm-core Priority: optional Section: devel -Filename: pool/main/m/migraphx/migraphx_2.10.0.60202-116~20.04_amd64.deb -Size: 42147982 -SHA256: 73bceaee4b0e35b2323b5524b615cccdbcbf957b0d047db297b241303c0bdfa5 -SHA1: 595e82213da520e40c880d11177bfb1f1695c822 -MD5sum: dda57d400802d25ff25ec70b1ed9ceab +Filename: pool/main/m/migraphx/migraphx_2.11.0.60301-48~20.04_amd64.deb +Size: 48994964 +SHA256: d05c2f56ab4240ce2a353f87244fbd63cd736352bfddd1b9eeaa6ec38a6f687d +SHA1: e8bfac6a5e01cedec7a1c931cfad2d0c2378c959 +MD5sum: 1eb4b75f66be61572c38df935deb56a7 Description: AMD graph optimizer Maintainer: AMDMIGraphX Maintainer -Recommends: migraphx-dev (>=2.10.0.60202) -Version: 2.10.0.60202-116~20.04 -Installed-Size: 794562 - -Package: migraphx-asan -Architecture: amd64 -Depends: hip-dev, hip-runtime-amd, half, miopen-hip, rocblas, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/m/migraphx-asan/migraphx-asan_2.10.0.60202-116~20.04_amd64.deb -Size: 85403278 -SHA256: b975e215fd95e3456574a098bf6777c4d5feacf803a8f81ce7551638d98a8048 -SHA1: 5d85ca4d31b1afc4018e92e81a9e61532591945f -MD5sum: d07596e6e5103e3a9374e6fa6574b3a2 -Description: AMD graph optimizer -Maintainer: AMDMIGraphX Maintainer -Recommends: migraphx-asan-dev (>=2.10.0.60202) -Version: 2.10.0.60202-116~20.04 -Installed-Size: 1195805 - -Package: migraphx-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 49d334f2acf12813aae74b5aed83a65f8fe9620b 1f259b2f8a5e26a2832e1abe9e133361adf32f74 c28b098e30f33a5e516cd9db6a8118dd83b19a1e baddce3cedc39005f38e6af3376a28adbd6b06fb 90a5698374d7ab0a77693f3d1b4a6f72fa571f92 53f21872603322527a5cd64cd35e79b525380725 442a3bdf4a19f95bcf59af5d8a96539847ff6f5b 1794a2248968ca827aaa19ae3d33c315a9461ab1 9c1af99be77770b64e08e89f62d775dfb2bb4bed 339c5035dd60e19689e5e0a1b96c4e424d57928d 92bc3f2cdc1f510dfaecb42fa1d1062ee4eb1711 -Depends: migraphx-asan (= 2.10.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/migraphx-asan-dbgsym/migraphx-asan-dbgsym_2.10.0.60202-116~20.04_amd64.deb -Size: 690021802 -SHA256: 4fd3bbde062d94983b9426b40402060851fa11a25f1419dd6912f17a5022e1f5 -SHA1: 2c6a7d812adadfc9fa86d650b3b476740202ce36 -MD5sum: 851890be1ec0e4814c847f08aefb5780 -Description: debug symbols for migraphx-asan -Maintainer: AMDMIGraphX Maintainer -Package-Type: ddeb -Version: 2.10.0.60202-116~20.04 -Installed-Size: 779379 - -Package: migraphx-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 49d334f2acf12813aae74b5aed83a65f8fe9620b 1f259b2f8a5e26a2832e1abe9e133361adf32f74 c28b098e30f33a5e516cd9db6a8118dd83b19a1e baddce3cedc39005f38e6af3376a28adbd6b06fb 90a5698374d7ab0a77693f3d1b4a6f72fa571f92 53f21872603322527a5cd64cd35e79b525380725 442a3bdf4a19f95bcf59af5d8a96539847ff6f5b 1794a2248968ca827aaa19ae3d33c315a9461ab1 9c1af99be77770b64e08e89f62d775dfb2bb4bed 339c5035dd60e19689e5e0a1b96c4e424d57928d 92bc3f2cdc1f510dfaecb42fa1d1062ee4eb1711 -Depends: migraphx-asan-rpath6.2.2 (= 2.10.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/migraphx-asan-dbgsym-rpath6.2.2/migraphx-asan-dbgsym-rpath6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 690023812 -SHA256: 281573c21a1f50a870bed502c52793821f2e9f422394e8d79e3fef2582c2d9d8 -SHA1: 41dd70d1a28777f6b759aaf7ad96d4bdeef9c2d4 -MD5sum: da84344b96c7d63e7fd92092a90d6d75 -Description: debug symbols for migraphx-asan -Maintainer: AMDMIGraphX Maintainer -Package-Type: ddeb -Version: 2.10.0.60202-116~20.04 -Installed-Size: 779379 - -Package: migraphx-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 49d334f2acf12813aae74b5aed83a65f8fe9620b 1f259b2f8a5e26a2832e1abe9e133361adf32f74 c28b098e30f33a5e516cd9db6a8118dd83b19a1e baddce3cedc39005f38e6af3376a28adbd6b06fb 90a5698374d7ab0a77693f3d1b4a6f72fa571f92 53f21872603322527a5cd64cd35e79b525380725 442a3bdf4a19f95bcf59af5d8a96539847ff6f5b 1794a2248968ca827aaa19ae3d33c315a9461ab1 9c1af99be77770b64e08e89f62d775dfb2bb4bed 339c5035dd60e19689e5e0a1b96c4e424d57928d 92bc3f2cdc1f510dfaecb42fa1d1062ee4eb1711 -Depends: migraphx-asan6.2.2 (= 2.10.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/migraphx-asan-dbgsym6.2.2/migraphx-asan-dbgsym6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 690023804 -SHA256: 0a5dae2b6e7a14ee3f944aab647917d359e8f5c2aa0147a13a900fb853ace6b2 -SHA1: ce081fdd0a0451a5a57c826fdab976c8ad1d72ea -MD5sum: c12fa04b3c1bc9c83f2f70480ebd3b91 -Description: debug symbols for migraphx-asan -Maintainer: AMDMIGraphX Maintainer -Package-Type: ddeb -Version: 2.10.0.60202-116~20.04 -Installed-Size: 779379 - -Package: migraphx-asan-rpath6.2.2 -Architecture: amd64 -Depends: hip-dev, hip-runtime-amd, half, miopen-hip, rocblas, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/m/migraphx-asan-rpath6.2.2/migraphx-asan-rpath6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 85406264 -SHA256: 50169aee2cd7560177f218d48ff7f22049cc4c8b50b2031f1955d3f21aed4f49 -SHA1: dcc0208db95350163dd135d34c5a6fefa45a6d68 -MD5sum: ea39caba31f33df6c896928d2e67e842 -Description: AMD graph optimizer -Maintainer: AMDMIGraphX Maintainer -Recommends: migraphx-asan-dev (>=2.10.0.60202) -Version: 2.10.0.60202-116~20.04 -Installed-Size: 1195805 - -Package: migraphx-asan6.2.2 -Architecture: amd64 -Depends: hip-dev, hip-runtime-amd, half, miopen-hip, rocblas, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/m/migraphx-asan6.2.2/migraphx-asan6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 85406256 -SHA256: 515c2701b6deb0f39967572bcf3ac931a7b7f071b4735047f3f5b010824a12b2 -SHA1: 5fc73eadf2b6b06d4436257111916e2996651661 -MD5sum: 241f46defef3aa2c24cf61cce691bcef -Description: AMD graph optimizer -Maintainer: AMDMIGraphX Maintainer -Recommends: migraphx-asan-dev (>=2.10.0.60202) -Version: 2.10.0.60202-116~20.04 -Installed-Size: 1195805 +Recommends: migraphx-dev (>=2.11.0.60301) +Version: 2.11.0.60301-48~20.04 +Installed-Size: 957018 Package: migraphx-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 431254178447e7f44f2c7ef98df162266f8620ed 4677cc6faa169e231db0ccc7a5f43defba274d25 3123ef0bf2aaa2a7e1e9dea569d64ff1011f5a07 152d6f39b95bf157ee1611d89dceb4718508e2b3 0ff037991584d5c31553d697bb01df103a18d217 6ea6e73e004eb61b47970170c6f07eae3739256b 134fc9ded56073047c23a527e4d052a7519c4e16 314dd91f62d27ecd7d6e7a30de89623610a9ee1b 1681042e667fdbf6377e1d330ee03ca8dde0bce6 5c95d2548571c62fc39216e458832e0c987cd61d 54c43bbcff45f89b493fca5b4f68c6cdde40495e -Depends: migraphx (= 2.10.0.60202-116~20.04) +Build-Ids: 116f1f2d0ecb0e0650bd503ae68b5422604ee23a e395737a40a435793418c688424b64b164dfae7c 10700648e1c8e828271f9f02f54b35b1b5a64383 59eef455e985ee8c1536b151d71e9aad14cf8225 f13562d0e2f4f6334b333aabbd0a079d0bbf6902 eab0f95a73a426f3b09749889b03fa1e30cdab6d 7f606b54439f6a92cae219dd4dcd75995c68db8d 0071b4421e02b61fef31f209fb2796e6c3940ae1 8140e14a62b7ab58a3107da727c493702d061956 21b42658a3384c9fea305ff22f2ad97ce213e4c9 2a2d2a87e351d61f5978dc45cb512d54c36b426f +Depends: migraphx (= 2.11.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/m/migraphx-dbgsym/migraphx-dbgsym_2.10.0.60202-116~20.04_amd64.deb -Size: 64840372 -SHA256: a6f0a96e399dc011462eb695acf6e9d46293e9e06a470bf91a8774b7d3f2da7b -SHA1: a56fe0734d1c5e148b8d5a381036b098bd0f9f19 -MD5sum: f85159357884a61f32d1eb7409335811 +Filename: pool/main/m/migraphx-dbgsym/migraphx-dbgsym_2.11.0.60301-48~20.04_amd64.deb +Size: 80957776 +SHA256: d13bac3426a59cf270f087a833b96e1d6da10d717e42b610dd6a8ee6ab7e1100 +SHA1: 7afab4aa8376d1b1a8eb1fff09e2f73074c640ac +MD5sum: 9ede90b51542cc1cce1451f25ea34dfb Description: debug symbols for migraphx Maintainer: AMDMIGraphX Maintainer Package-Type: ddeb -Version: 2.10.0.60202-116~20.04 -Installed-Size: 495607 - -Package: migraphx-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 431254178447e7f44f2c7ef98df162266f8620ed 4677cc6faa169e231db0ccc7a5f43defba274d25 3123ef0bf2aaa2a7e1e9dea569d64ff1011f5a07 152d6f39b95bf157ee1611d89dceb4718508e2b3 0ff037991584d5c31553d697bb01df103a18d217 6ea6e73e004eb61b47970170c6f07eae3739256b 134fc9ded56073047c23a527e4d052a7519c4e16 314dd91f62d27ecd7d6e7a30de89623610a9ee1b 1681042e667fdbf6377e1d330ee03ca8dde0bce6 5c95d2548571c62fc39216e458832e0c987cd61d 54c43bbcff45f89b493fca5b4f68c6cdde40495e -Depends: migraphx-rpath6.2.2 (= 2.10.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/migraphx-dbgsym-rpath6.2.2/migraphx-dbgsym-rpath6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 64781768 -SHA256: 842b82d06b950a936584a4e24dbe755fd56e7b8f77b441dc3e02e78e129c5f6f -SHA1: e35c6d029cb1f2e4b57adb5c3adea94b8d6e2157 -MD5sum: 375b4c933743f8ae2b253046753b8193 -Description: debug symbols for migraphx -Maintainer: AMDMIGraphX Maintainer -Package-Type: ddeb -Version: 2.10.0.60202-116~20.04 -Installed-Size: 495607 - -Package: migraphx-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 431254178447e7f44f2c7ef98df162266f8620ed 4677cc6faa169e231db0ccc7a5f43defba274d25 3123ef0bf2aaa2a7e1e9dea569d64ff1011f5a07 152d6f39b95bf157ee1611d89dceb4718508e2b3 0ff037991584d5c31553d697bb01df103a18d217 6ea6e73e004eb61b47970170c6f07eae3739256b 134fc9ded56073047c23a527e4d052a7519c4e16 314dd91f62d27ecd7d6e7a30de89623610a9ee1b 1681042e667fdbf6377e1d330ee03ca8dde0bce6 5c95d2548571c62fc39216e458832e0c987cd61d 54c43bbcff45f89b493fca5b4f68c6cdde40495e -Depends: migraphx6.2.2 (= 2.10.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/migraphx-dbgsym6.2.2/migraphx-dbgsym6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 64794076 -SHA256: 01e6e9daf72dc26588f2140d53a2537092d3c30ebae80f3c1d32f82f87a26202 -SHA1: a217ef298f625081408187a1359cc05ccf623aa8 -MD5sum: b2ef84746887f47b83d0869d3d3bbb53 -Description: debug symbols for migraphx -Maintainer: AMDMIGraphX Maintainer -Package-Type: ddeb -Version: 2.10.0.60202-116~20.04 -Installed-Size: 495607 +Version: 2.11.0.60301-48~20.04 +Installed-Size: 661813 Package: migraphx-dev Architecture: amd64 -Depends: migraphx (>= 2.10.0.60202) +Depends: migraphx (>= 2.11.0.60301) Priority: optional Section: devel -Filename: pool/main/m/migraphx-dev/migraphx-dev_2.10.0.60202-116~20.04_amd64.deb -Size: 158080 -SHA256: 837555aa40966a44168b080e7131066acd90fd96d752a73f01bc3783f3f48368 -SHA1: 32c361bc5d7e22a7400ff39437b0a230ca36a32a -MD5sum: 8f306019b88c3ad03f98abecf8bf2708 +Filename: pool/main/m/migraphx-dev/migraphx-dev_2.11.0.60301-48~20.04_amd64.deb +Size: 171542 +SHA256: 6d73d701e7b040378119bcb04d819b8d25634c7d599cb82877e031f609ad57dd +SHA1: acc316e15c79324e1cf8ee48bb261be6324005a7 +MD5sum: d80b6755051bb9b36da83ac227f8d63b Description: AMD graph optimizer Maintainer: AMDMIGraphX Maintainer -Version: 2.10.0.60202-116~20.04 -Installed-Size: 1555 +Version: 2.11.0.60301-48~20.04 +Installed-Size: 1686 -Package: migraphx-dev-rpath6.2.2 +Package: migraphx-dev-rpath6.3.1 Architecture: amd64 -Depends: migraphx-rpath6.2.2 (>= 2.10.0.60202) +Depends: migraphx-rpath6.3.1 (>= 2.11.0.60301) Priority: optional Section: devel -Filename: pool/main/m/migraphx-dev-rpath6.2.2/migraphx-dev-rpath6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 156792 -SHA256: 98d1ef88aeb7c9d8d4badb06f5beb5201797576f010d185cf1dd0657d6f99f10 -SHA1: e6c1877dda4e88e294c9fbca6bba78b14309aafa -MD5sum: 36b7b9536e984c8c71f363f132d4955c +Filename: pool/main/m/migraphx-dev-rpath6.3.1/migraphx-dev-rpath6.3.1_2.11.0.60301-48~20.04_amd64.deb +Size: 170160 +SHA256: 91c2ca6f5e1487a6fb18d1245e0a58ff48df8666c0c02ce47f54998167732585 +SHA1: 6d937b68b3387e9f166cf5b20278f270b7c2e282 +MD5sum: 7f51a204fb69921e8c440a162e433c60 Description: AMD graph optimizer Maintainer: AMDMIGraphX Maintainer -Version: 2.10.0.60202-116~20.04 -Installed-Size: 1555 +Version: 2.11.0.60301-48~20.04 +Installed-Size: 1686 -Package: migraphx-dev6.2.2 +Package: migraphx-dev6.3.1 Architecture: amd64 -Depends: migraphx6.2.2 (>= 2.10.0.60202) +Depends: migraphx6.3.1 (>= 2.11.0.60301) Priority: optional Section: devel -Filename: pool/main/m/migraphx-dev6.2.2/migraphx-dev6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 156768 -SHA256: 16df80c6c93732a95cc0ceae755e3c7775deebc86823ea11ceee4d9256a33cc9 -SHA1: 89fbcc87889c73da8883c514bcd1ad03e9eacba5 -MD5sum: 0fa096def642f19c37d5027bc0e412e4 +Filename: pool/main/m/migraphx-dev6.3.1/migraphx-dev6.3.1_2.11.0.60301-48~20.04_amd64.deb +Size: 170164 +SHA256: 38af1e3cfb4da6e9e28d11c25913daad2371d6452a1294824b960b1f3c6e994a +SHA1: e16ea595a4930d33a2eeccbd1c5a9b39063a7f0f +MD5sum: 49c4b162bad95107fed2d9ff6807ea49 Description: AMD graph optimizer Maintainer: AMDMIGraphX Maintainer -Version: 2.10.0.60202-116~20.04 -Installed-Size: 1555 +Version: 2.11.0.60301-48~20.04 +Installed-Size: 1686 -Package: migraphx-rpath6.2.2 +Package: migraphx-rpath6.3.1 Architecture: amd64 -Depends: hip-dev-rpath6.2.2, hip-runtime-amd-rpath6.2.2, half-rpath6.2.2, miopen-hip-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: hip-dev-rpath6.3.1, hip-runtime-amd-rpath6.3.1, half-rpath6.3.1, miopen-hip-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/migraphx-rpath6.2.2/migraphx-rpath6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 42247140 -SHA256: 77d9425c10cb50a8bea69bb4a4272297b78ec7df38f8bfc8acc4c643e9981340 -SHA1: 0a6acf2dbca6638ee5a18193dd4d34fb4f4e592b -MD5sum: e0b56b696f73ea299267ddd01806e0a3 +Filename: pool/main/m/migraphx-rpath6.3.1/migraphx-rpath6.3.1_2.11.0.60301-48~20.04_amd64.deb +Size: 49057404 +SHA256: 3d38b927682386d9338da17e7a59420d706780cc8289abfc2f2f95d46e55084c +SHA1: 7935b8f3a6ae3e6d4061dfb8a276f64da056fa0d +MD5sum: bcb5b007199dbd768393825d19c9e399 Description: AMD graph optimizer Maintainer: AMDMIGraphX Maintainer -Recommends: migraphx-dev-rpath6.2.2 (>=2.10.0.60202) -Version: 2.10.0.60202-116~20.04 -Installed-Size: 794562 +Recommends: migraphx-dev-rpath6.3.1 (>=2.11.0.60301) +Version: 2.11.0.60301-48~20.04 +Installed-Size: 957018 -Package: migraphx6.2.2 +Package: migraphx6.3.1 Architecture: amd64 -Depends: hip-dev6.2.2, hip-runtime-amd6.2.2, half6.2.2, miopen-hip6.2.2, rocblas6.2.2, rocm-core6.2.2 +Depends: hip-dev6.3.1, hip-runtime-amd6.3.1, half6.3.1, miopen-hip6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/m/migraphx6.2.2/migraphx6.2.2_2.10.0.60202-116~20.04_amd64.deb -Size: 42247860 -SHA256: 3e01365133505295a5088bd6f28f458692b78b849a13c2a7f3f7659c13c3b453 -SHA1: 50ac8d9a0e25b0b451b2d7e6bf400df6274a198d -MD5sum: 536679787ec63074c0ad69ee9b56272d +Filename: pool/main/m/migraphx6.3.1/migraphx6.3.1_2.11.0.60301-48~20.04_amd64.deb +Size: 49060084 +SHA256: 47c4cf6dc0aa78a34af3f9e54b0373ddb195a46cd3d41d4b3b595d4daa3509be +SHA1: b481d6c85f6fad11ad6b9a1432343e8e8408ebbf +MD5sum: 680bd5fbda035fd024d70a50305ed483 Description: AMD graph optimizer Maintainer: AMDMIGraphX Maintainer -Recommends: migraphx-dev6.2.2 (>=2.10.0.60202) -Version: 2.10.0.60202-116~20.04 -Installed-Size: 794562 +Recommends: migraphx-dev6.3.1 (>=2.11.0.60301) +Version: 2.11.0.60301-48~20.04 +Installed-Size: 957018 Package: miopen-hip Architecture: amd64 Conflicts: miopen-opencl -Depends: hip-runtime-amd, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core +Depends: hip-runtime-amd, comgr, roctracer, rocblas, hipblaslt, rocm-core, rocrand, rocm-core Priority: optional Section: devel -Filename: pool/main/m/miopen-hip/miopen-hip_3.2.0.60202-116~20.04_amd64.deb -Size: 113650750 -SHA256: d09d1242da0d10be4b0a43b38ec9a2755b447e5c53088f632ea5e9c82d8d0b3a -SHA1: eb00d89463655947346989bf04aefb66f8ff35d9 -MD5sum: adf4d7447e3d70a8d0cd08df7d81f618 +Filename: pool/main/m/miopen-hip/miopen-hip_3.3.0.60301-48~20.04_amd64.deb +Size: 162095420 +SHA256: be8039113258c441e0adf8f2d6d254f87e5616f78727cd46bda8001597c696d8 +SHA1: 6bfbddde7b06471010a4b2aeb67fd4e7b48b56c8 +MD5sum: 56efd1b14b7b4c6fe5af995e102760fa Description: AMD DNN Library Maintainer: MIOpen Maintainer -Recommends: miopen-hip-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3386725 - -Package: miopen-hip-asan -Architecture: amd64 -Conflicts: miopen-opencl -Depends: hip-runtime-amd-asan, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/m/miopen-hip-asan/miopen-hip-asan_3.2.0.60202-116~20.04_amd64.deb -Size: 78156770 -SHA256: d6f67713ac2e24abbe2776774df3486afb87460765a988d1d95f1aab4a39a6c4 -SHA1: 9a184200acaf19d7865eeace3782ee89018b27cc -MD5sum: 059a736d18453900a37e783d129a7dbd -Description: AMD DNN Library -Maintainer: MIOpen Maintainer -Recommends: miopen-hip-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3054008 - -Package: miopen-hip-asan-rpath6.2.2 -Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-asan-rpath6.2.2, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/m/miopen-hip-asan-rpath6.2.2/miopen-hip-asan-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 78169200 -SHA256: ed8e01df803219ff0c2769dff36e50415f6ce3accd6cf5b70a58d8bac255950d -SHA1: 2bbc45618cd05eab264f6039112d13973d7dbab3 -MD5sum: 340451846a8c1c54c48bfb25632935a7 -Description: AMD DNN Library -Maintainer: MIOpen Maintainer -Recommends: miopen-hip-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3054008 - -Package: miopen-hip-asan6.2.2 -Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd-asan6.2.2, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/m/miopen-hip-asan6.2.2/miopen-hip-asan6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 78164376 -SHA256: 5ee4af760381bde3464be90b290808f5bfb9e954c1db329728aafeda6d636dcc -SHA1: f3ca7bd0dc31cb6c1cde376af4d40cd515481de2 -MD5sum: 730be93858a2d08e69426a6070634173 -Description: AMD DNN Library -Maintainer: MIOpen Maintainer -Recommends: miopen-hip-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3054008 - -Package: miopen-hip-client -Architecture: amd64 -Conflicts: miopen-opencl -Depends: hip-runtime-amd, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core -Priority: optional -Section: devel -Filename: pool/main/m/miopen-hip-client/miopen-hip-client_3.2.0.60202-116~20.04_amd64.deb -Size: 744 -SHA256: 01105d41ece8a1d185d8de2bf9ae5a34aa14e33086ddd24be05415f0bc4b9f99 -SHA1: 3aaa8f2dc7219549a76d275769027fddf528b36b -MD5sum: c6913c214a3e320b027accd2bcc5ee74 -Description: AMD DNN Library -Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 8 - -Package: miopen-hip-client-rpath6.2.2 -Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, roctracer-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2, rocrand-rpath6.2.2, rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/m/miopen-hip-client-rpath6.2.2/miopen-hip-client-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 904 -SHA256: 1347a35d02a2c081447aa18a76d8cd10ba105bab961ff7f93403eb5b31310fd9 -SHA1: 7c66dc1b17df2e2dbb7938d8f84f7e1232630163 -MD5sum: dc6617d946f9d90d6b292ffdab4652c8 -Description: AMD DNN Library -Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 8 - -Package: miopen-hip-client6.2.2 -Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, roctracer6.2.2, rocblas6.2.2, rocm-core6.2.2, rocrand6.2.2, rocm-core6.2.2 -Priority: optional -Section: devel -Filename: pool/main/m/miopen-hip-client6.2.2/miopen-hip-client6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 896 -SHA256: 28ce50eb0b4c8e1b1433621f74a1faaddac65f2e2a10b7638569d12228befc72 -SHA1: 21a2176cedebda233e60244dc4cc0a20357943ba -MD5sum: d03853532d52b1117fb7f5d45c77af55 -Description: AMD DNN Library -Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 8 +Recommends: miopen-hip-dev (>=3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1876885 Package: miopen-hip-dev Architecture: amd64 Conflicts: miopen-opencl -Depends: miopen-hip (>= 3.2.0.60202) +Depends: miopen-hip (>= 3.3.0.60301) Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-dev/miopen-hip-dev_3.2.0.60202-116~20.04_amd64.deb -Size: 44108 -SHA256: 079092642b3f21eb9aef1f491b35d8f9544711c66c807de9296d6e46f224ccc6 -SHA1: ed989bf0eaf3d76c31392fd1fdeec3cf33dd839f -MD5sum: 7869ddcd624d5e9a65f4e43c39ced92c +Filename: pool/main/m/miopen-hip-dev/miopen-hip-dev_3.3.0.60301-48~20.04_amd64.deb +Size: 47726 +SHA256: 91bf14425d3d22e2ca4b61dad7b43db08c4e568af846b7e0242394704daa035b +SHA1: 0791ffdbd2b56716b5771788cc92a002a4c07a07 +MD5sum: 487c1ef6ad3d04159d0517e7fd2be5ea Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 409 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 462 -Package: miopen-hip-dev-rpath6.2.2 +Package: miopen-hip-dev-rpath6.3.1 Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: miopen-hip-rpath6.2.2 (>= 3.2.0.60202) +Conflicts: miopen-opencl-rpath6.3.1 +Depends: miopen-hip-rpath6.3.1 (>= 3.3.0.60301) Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-dev-rpath6.2.2/miopen-hip-dev-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 44256 -SHA256: a86606c9ac2bcd406fd5587f5b8ce1dae2c84df6355c89a4f0b9d4375b322dec -SHA1: 68ed813e197563a41094e58a0200f9a1ca12b51a -MD5sum: 2c1beaa724ad8752809daa9165e0db69 +Filename: pool/main/m/miopen-hip-dev-rpath6.3.1/miopen-hip-dev-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 47872 +SHA256: a75b4d3a79f6c5ed87dacdc39f197783c19637804c8c26c1f52c7a13ada89c6f +SHA1: 3219f5a8283beb09a7975efa36cd8d74a08452ec +MD5sum: aa4071da1090d5062f60f5498b07afc9 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 409 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 462 -Package: miopen-hip-dev6.2.2 +Package: miopen-hip-dev6.3.1 Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: miopen-hip6.2.2 (>= 3.2.0.60202) +Conflicts: miopen-opencl6.3.1 +Depends: miopen-hip6.3.1 (>= 3.3.0.60301) Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-dev6.2.2/miopen-hip-dev6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 44268 -SHA256: de5f2e02f5951a909851321511c65b09579f46a04f89f690f7393113f713302b -SHA1: 19ea7c437ef28ff9b78b806ef77cdcf5ec503406 -MD5sum: e5a1325cb0b697ed13acfc038bee63e2 +Filename: pool/main/m/miopen-hip-dev6.3.1/miopen-hip-dev6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 47852 +SHA256: 38309bd561b67dbbc08300b6037310fe15fe58f7f6bb3236a69e23080e831051 +SHA1: 5b542dc8c4166afdda9838fdf42767284e4e43cc +MD5sum: 6913f174b18a17fdc6aa692310fe6a5d Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 409 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 462 Package: miopen-hip-gfx1030kdb Architecture: amd64 Conflicts: miopen-opencl -Depends: hip-runtime-amd, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core +Depends: hip-runtime-amd, comgr, roctracer, rocblas, hipblaslt, rocm-core, rocrand, rocm-core Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx1030kdb/miopen-hip-gfx1030kdb_3.2.0.60202-116~20.04_amd64.deb -Size: 390901138 -SHA256: f5fc7334ad33a9ff1f1aa6ff8fabbb52d923c32cb9870a1cf3e0a1719d02fc44 -SHA1: 56ebb66ee09168b2ed3b26247f8fc65a3416bff3 -MD5sum: 2a1887c24df76cb3d7d5d01af6faf91f +Filename: pool/main/m/miopen-hip-gfx1030kdb/miopen-hip-gfx1030kdb_3.3.0.60301-48~20.04_amd64.deb +Size: 390901184 +SHA256: 72678d000282661636bef554a1def48c4ccad13076e84af923bbc28502d546d8 +SHA1: 4fe8428ae44d3a7559e872493ba589bce268ff0b +MD5sum: f15e618f879b0fdf3b4515ea45eaaa8d Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 727956 -Package: miopen-hip-gfx1030kdb-rpath6.2.2 +Package: miopen-hip-gfx1030kdb-rpath6.3.1 Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, roctracer-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2, rocrand-rpath6.2.2, rocm-core-rpath6.2.2 +Conflicts: miopen-opencl-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, roctracer-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, rocrand-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx1030kdb-rpath6.2.2/miopen-hip-gfx1030kdb-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 390904624 -SHA256: 19120b8c834c96d8c9b014b1c4fbcc0f6f91ce09824f9b29c1d23c779c2671d2 -SHA1: 2d8541e0b3faf68c0e9afbd818ef456c74ca9599 -MD5sum: 2335c040fc779108194daca69669f8e1 +Filename: pool/main/m/miopen-hip-gfx1030kdb-rpath6.3.1/miopen-hip-gfx1030kdb-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 390902840 +SHA256: 1a43527f4571e91bc375be7be64fd108a6e81de56bf98a8cf3951fde074b5095 +SHA1: 6a88d411ef08ef479d808a1569f5a0793e938afe +MD5sum: 580893994fee5d0eef1d0aae6a673dc6 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 727956 -Package: miopen-hip-gfx1030kdb6.2.2 +Package: miopen-hip-gfx1030kdb6.3.1 Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, roctracer6.2.2, rocblas6.2.2, rocm-core6.2.2, rocrand6.2.2, rocm-core6.2.2 +Conflicts: miopen-opencl6.3.1 +Depends: hip-runtime-amd6.3.1, comgr6.3.1, roctracer6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1, rocrand6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx1030kdb6.2.2/miopen-hip-gfx1030kdb6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 390902808 -SHA256: 3b940fa822249be2eb3cb662c36522350fbbf0630467ca8af2cd7449584edcd5 -SHA1: aa8784e260502505640a2b50774744ab46a20901 -MD5sum: 647dcb11cc9f5591e0013619f4df5323 +Filename: pool/main/m/miopen-hip-gfx1030kdb6.3.1/miopen-hip-gfx1030kdb6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 390902944 +SHA256: afaf680b88145ae731b800bcbfe5a6aa7ea58932a887c85842b6b3f2b50e199a +SHA1: 096bcc3e83e143942943a3bce141ed508bb07bc7 +MD5sum: 4405e32d94cc88c6d6f60dbd8f5a8ded Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 727956 Package: miopen-hip-gfx900kdb Architecture: amd64 Conflicts: miopen-opencl -Depends: hip-runtime-amd, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core +Depends: hip-runtime-amd, comgr, roctracer, rocblas, hipblaslt, rocm-core, rocrand, rocm-core Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx900kdb/miopen-hip-gfx900kdb_3.2.0.60202-116~20.04_amd64.deb -Size: 272267180 -SHA256: ed990ceeb79db2282a58dafd9e4fb45c14ab9bbd5df6d53fbb5d40925818c8d2 -SHA1: e594c631857f86bd7ecda5154ec09fc01184c87c -MD5sum: 182ff592b06267bcb4b749fd338585ae +Filename: pool/main/m/miopen-hip-gfx900kdb/miopen-hip-gfx900kdb_3.3.0.60301-48~20.04_amd64.deb +Size: 272266320 +SHA256: 8c283afacd5bdb8857ad0bce5a22fd33b308d7737d6810c4a5795d4496dd1445 +SHA1: 0bd1a7a3f28eb605606e3e622a9438c53ec030fc +MD5sum: ed2179068eb4d15a1b12999fbe981efe Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 518104 -Package: miopen-hip-gfx900kdb-rpath6.2.2 +Package: miopen-hip-gfx900kdb-rpath6.3.1 Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, roctracer-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2, rocrand-rpath6.2.2, rocm-core-rpath6.2.2 +Conflicts: miopen-opencl-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, roctracer-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, rocrand-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx900kdb-rpath6.2.2/miopen-hip-gfx900kdb-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 272265436 -SHA256: 4980ddb6343da52f72867534e335f9240cd6061987ddfeaf654c596fd2750ed1 -SHA1: d841e317940b3890262f2b4f6f2707242cf5e0ec -MD5sum: 32f6bc04ac7f48e1edb5f041d0110d18 +Filename: pool/main/m/miopen-hip-gfx900kdb-rpath6.3.1/miopen-hip-gfx900kdb-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 272266044 +SHA256: 7b49a38d45578d648767771313b0353801c20a2d3898889cc89b6a8d82325e0d +SHA1: 0ef6b4c8ae495ccfadef0a666b0281f60d905003 +MD5sum: b448591929a1688d886b7335768b07c2 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 518104 -Package: miopen-hip-gfx900kdb6.2.2 +Package: miopen-hip-gfx900kdb6.3.1 Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, roctracer6.2.2, rocblas6.2.2, rocm-core6.2.2, rocrand6.2.2, rocm-core6.2.2 +Conflicts: miopen-opencl6.3.1 +Depends: hip-runtime-amd6.3.1, comgr6.3.1, roctracer6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1, rocrand6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx900kdb6.2.2/miopen-hip-gfx900kdb6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 272266140 -SHA256: c5fbf2161400127bd742fafd713dae60fa8572f6e596091dec1526776d32eefd -SHA1: 60707f9031c0068261c3627a210f0728f8c597d0 -MD5sum: 88958acff2c4d52d4615a06a5647e607 +Filename: pool/main/m/miopen-hip-gfx900kdb6.3.1/miopen-hip-gfx900kdb6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 272265648 +SHA256: af30570db3de510e9c59837e8982ba8f1495d839860e36cfe9612ad82aff1d03 +SHA1: ce1afa34da4f490af11553f7bfd611b921511b0a +MD5sum: b660d8d2bf47f1f713b13561acbb197c Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 518104 Package: miopen-hip-gfx906kdb Architecture: amd64 Conflicts: miopen-opencl -Depends: hip-runtime-amd, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core +Depends: hip-runtime-amd, comgr, roctracer, rocblas, hipblaslt, rocm-core, rocrand, rocm-core Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx906kdb/miopen-hip-gfx906kdb_3.2.0.60202-116~20.04_amd64.deb -Size: 321529736 -SHA256: 3a8efe4c950ec7ac032e2ca799ed5d5d01783c4ab856576327882ceadd614aa7 -SHA1: 1afe3d72bfcc96a7d1f6028497855ebf8ab9937b -MD5sum: 177570d4ee2d49849d4e394ce87d1cc4 +Filename: pool/main/m/miopen-hip-gfx906kdb/miopen-hip-gfx906kdb_3.3.0.60301-48~20.04_amd64.deb +Size: 321529744 +SHA256: ccf633f8d9a2fb8cf4e08087030afc14f10239a99012238fe4733f045612710b +SHA1: 985ed5b75aaecc28c140863d3df3152bc84740c2 +MD5sum: 94071605ca504506f6a2d5979ec417ab Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 608416 -Package: miopen-hip-gfx906kdb-rpath6.2.2 +Package: miopen-hip-gfx906kdb-rpath6.3.1 Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, roctracer-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2, rocrand-rpath6.2.2, rocm-core-rpath6.2.2 +Conflicts: miopen-opencl-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, roctracer-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, rocrand-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx906kdb-rpath6.2.2/miopen-hip-gfx906kdb-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 321529900 -SHA256: c60381752265e588c698579ee6fbebab3b5601d05e011f44fbe9e800fb8f9a87 -SHA1: 134599f2b1c31148dd8bceb419bade852fd4b08e -MD5sum: 06692f7bcb1f466033946d049a7a1c8b +Filename: pool/main/m/miopen-hip-gfx906kdb-rpath6.3.1/miopen-hip-gfx906kdb-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 321530000 +SHA256: 6eb16d0f4ef2fd0cd1ad5f8067ea043321e75a67be6213d5703864b6e36be588 +SHA1: 2af89c06c7c687757906a0876e8553ee2c4a5ecc +MD5sum: 8dca6170f683302dc847b6b07510abce Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 608416 -Package: miopen-hip-gfx906kdb6.2.2 +Package: miopen-hip-gfx906kdb6.3.1 Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, roctracer6.2.2, rocblas6.2.2, rocm-core6.2.2, rocrand6.2.2, rocm-core6.2.2 +Conflicts: miopen-opencl6.3.1 +Depends: hip-runtime-amd6.3.1, comgr6.3.1, roctracer6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1, rocrand6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx906kdb6.2.2/miopen-hip-gfx906kdb6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 321530188 -SHA256: c878bc7fd299d303006381880bfc0f3ca1acc9827034863e41b12006bdbf640c -SHA1: fe70bf4bf039e0603c2969efdaed6de06a0b5176 -MD5sum: 9627b5a38b4a560f2fd2a28f1c51020e +Filename: pool/main/m/miopen-hip-gfx906kdb6.3.1/miopen-hip-gfx906kdb6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 321530276 +SHA256: 7e4d3addaeedee6db785ba9f5d6e7d58a7ebe49ee09b95cffb58d1e8cb2d89ff +SHA1: 0ee89c17df68629b4618b91d8dd20797231c692e +MD5sum: e3504ded8ef1f3497f410fcb28e20a4d Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.3.0.60301-48~20.04 Installed-Size: 608416 Package: miopen-hip-gfx908kdb Architecture: amd64 Conflicts: miopen-opencl -Depends: hip-runtime-amd, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core +Depends: hip-runtime-amd, comgr, roctracer, rocblas, hipblaslt, rocm-core, rocrand, rocm-core Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx908kdb/miopen-hip-gfx908kdb_3.2.0.60202-116~20.04_amd64.deb -Size: 241882930 -SHA256: d0a14b6a632ea8f044faeee00e6cb6c5d9646dd68f71164aa026ac18158cd66a -SHA1: 04d07328fbe8a51ba19b869c7d1d0bfa7357d6f2 -MD5sum: c24932a139c574c40deeada53af223c6 +Filename: pool/main/m/miopen-hip-gfx908kdb/miopen-hip-gfx908kdb_3.3.0.60301-48~20.04_amd64.deb +Size: 236684980 +SHA256: f10c53f2f0b941ba01f7f7421d6b24d2af8ef04539a0554d7e925554c3a15645 +SHA1: b5a99f128ab495e6e7407c0495788fd9acc7e88a +MD5sum: 88c0fcef78a3450fb917042528b3a10b Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 629992 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 621324 -Package: miopen-hip-gfx908kdb-rpath6.2.2 +Package: miopen-hip-gfx908kdb-rpath6.3.1 Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, roctracer-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2, rocrand-rpath6.2.2, rocm-core-rpath6.2.2 +Conflicts: miopen-opencl-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, roctracer-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, rocrand-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx908kdb-rpath6.2.2/miopen-hip-gfx908kdb-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 241885716 -SHA256: 39a65fa071add3a3aebddd7bc54004eaa58a9be925509a39d66b271e88385ca8 -SHA1: e637f9df506df798a37362fa52d1799e24c8b809 -MD5sum: c959c0b753bfd6d4fd387c932e0fd4bd +Filename: pool/main/m/miopen-hip-gfx908kdb-rpath6.3.1/miopen-hip-gfx908kdb-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 236683980 +SHA256: 7e409558b495660c87ece472603d5a21a1ed1f678c8211464d559eb794b08d93 +SHA1: cb257ed6f367a587c88b40655b944f864ab14d3e +MD5sum: 68a2fb11edd68907ba72cf6e561bf098 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 629992 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 621324 -Package: miopen-hip-gfx908kdb6.2.2 +Package: miopen-hip-gfx908kdb6.3.1 Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, roctracer6.2.2, rocblas6.2.2, rocm-core6.2.2, rocrand6.2.2, rocm-core6.2.2 +Conflicts: miopen-opencl6.3.1 +Depends: hip-runtime-amd6.3.1, comgr6.3.1, roctracer6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1, rocrand6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx908kdb6.2.2/miopen-hip-gfx908kdb6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 241883660 -SHA256: 5e8bdc6223e9b3eb5adba2e7056bfe96603e779bbafd7265fede25aa53ab266d -SHA1: 502f489e043a4e8b690dca89a511fb5421edb28d -MD5sum: c5fe0fbbdbe223e0fbd3881ad6d6b4cd +Filename: pool/main/m/miopen-hip-gfx908kdb6.3.1/miopen-hip-gfx908kdb6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 236682732 +SHA256: ccbdb76d07a32a7f1de4ebd21a94a8a594f702d519054d7478ecde05781bc427 +SHA1: 7364ce01208e111d12837d22b4064ccf5d4f1ddd +MD5sum: b2f8fa89ccbeed6bc37f0475dafe2e63 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 629992 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 621324 Package: miopen-hip-gfx90akdb Architecture: amd64 Conflicts: miopen-opencl -Depends: hip-runtime-amd, comgr, roctracer, rocblas, rocm-core, rocrand, rocm-core +Depends: hip-runtime-amd, comgr, roctracer, rocblas, hipblaslt, rocm-core, rocrand, rocm-core Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx90akdb/miopen-hip-gfx90akdb_3.2.0.60202-116~20.04_amd64.deb -Size: 134604752 -SHA256: 35bbb7679389280361d47c8a8768dcd7ed0088551e04b1df98a1c7894e50c358 -SHA1: 3b7ad03313bce3d01444eeda81322fc4ad44adab -MD5sum: d95e84833e44228ab77660ff58e80254 +Filename: pool/main/m/miopen-hip-gfx90akdb/miopen-hip-gfx90akdb_3.3.0.60301-48~20.04_amd64.deb +Size: 227397594 +SHA256: a7a8d0da3e4df9e68bb65aee35f57577033c1e0c916178c7ec2b5363ab0e4066 +SHA1: 6d286e8059a967a1e6f67b3d1d70affef4637a1a +MD5sum: 938505d84fd9ae5f5411ebfe37a61044 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 342828 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 572860 -Package: miopen-hip-gfx90akdb-rpath6.2.2 +Package: miopen-hip-gfx90akdb-rpath6.3.1 Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, roctracer-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2, rocrand-rpath6.2.2, rocm-core-rpath6.2.2 +Conflicts: miopen-opencl-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, roctracer-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, rocrand-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx90akdb-rpath6.2.2/miopen-hip-gfx90akdb-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 134605024 -SHA256: ea8d193771b01586ed8e3dc53acffc4a5f6f2ead643e6862e250a5ed0bfb6679 -SHA1: d12a713bec5f135b93ff63206ce4731a05a674b2 -MD5sum: 2237e76ac590c46fb1f1e8d4501fba9a +Filename: pool/main/m/miopen-hip-gfx90akdb-rpath6.3.1/miopen-hip-gfx90akdb-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 227399432 +SHA256: 35df50c5a6a0f68669fcdaffaf64f25cf3cf509b44432b04e8559c55a228913f +SHA1: e56f437df153b5de64c94258a43d714d21802663 +MD5sum: 639a491bc4fafac1f8df65043292ae70 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 342828 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 572860 -Package: miopen-hip-gfx90akdb6.2.2 +Package: miopen-hip-gfx90akdb6.3.1 Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, roctracer6.2.2, rocblas6.2.2, rocm-core6.2.2, rocrand6.2.2, rocm-core6.2.2 +Conflicts: miopen-opencl6.3.1 +Depends: hip-runtime-amd6.3.1, comgr6.3.1, roctracer6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1, rocrand6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-gfx90akdb6.2.2/miopen-hip-gfx90akdb6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 134604952 -SHA256: 17495b39d1b48375389faafef70f6e3a49b1f734e6385980319e9589f1f4c032 -SHA1: 33cac5c671f2d1a5155c58a26837d0f7f51369b8 -MD5sum: fb811ad9f75b83cc040c1a96386de40e +Filename: pool/main/m/miopen-hip-gfx90akdb6.3.1/miopen-hip-gfx90akdb6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 227398108 +SHA256: cd390bdffd6a5538b2766fddf3a9e9e2aba0347323aca29c8c938ddb12ff2f9f +SHA1: 9c2eb8950ee6a924dec0497d9d9e09e9f7b91d72 +MD5sum: 3cbd3a9bb38fac2aff43cf0ad9992e55 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 342828 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 572860 -Package: miopen-hip-rpath6.2.2 +Package: miopen-hip-gfx942kdb Architecture: amd64 -Conflicts: miopen-opencl-rpath6.2.2 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, roctracer-rpath6.2.2, rocblas-rpath6.2.2, rocm-core-rpath6.2.2, rocrand-rpath6.2.2, rocm-core-rpath6.2.2 +Conflicts: miopen-opencl +Depends: hip-runtime-amd, comgr, roctracer, rocblas, hipblaslt, rocm-core, rocrand, rocm-core Priority: optional Section: devel -Filename: pool/main/m/miopen-hip-rpath6.2.2/miopen-hip-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 113643344 -SHA256: e34349228bea0cdf3396dde20b6ddc6ca42808b269af50a4293cab4cd22744b8 -SHA1: d14dc568718fa65ff85badc2f8ef1e9312111341 -MD5sum: b3cacf1631fe91b3a48c60d558728e9c +Filename: pool/main/m/miopen-hip-gfx942kdb/miopen-hip-gfx942kdb_3.3.0.60301-48~20.04_amd64.deb +Size: 1648520 +SHA256: 0fcd7fd1da4e64735fd44d95ae170d4a437222a203ae2da72f254f95fa7f4c74 +SHA1: 5b3e4230e6b6a98833f0ce2e52b35f0ed8cd38b2 +MD5sum: 831873c74ad3a2b55b0ff8bb62325313 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Recommends: miopen-hip-dev-rpath6.2.2 (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3386725 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1952 -Package: miopen-hip6.2.2 +Package: miopen-hip-gfx942kdb-rpath6.3.1 Architecture: amd64 -Conflicts: miopen-opencl6.2.2 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, roctracer6.2.2, rocblas6.2.2, rocm-core6.2.2, rocrand6.2.2, rocm-core6.2.2 +Conflicts: miopen-opencl-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, roctracer-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, rocrand-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/miopen-hip6.2.2/miopen-hip6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 113650316 -SHA256: 61a861edd5e1c5b65cc67de0d937b1e0e847d475cf5a6452328d40155ffd8caa -SHA1: c54f6a61093246d858838e9ec191e71bcfb95b9b -MD5sum: a570a86eda045b2f6c3eaaae1d1ba49d +Filename: pool/main/m/miopen-hip-gfx942kdb-rpath6.3.1/miopen-hip-gfx942kdb-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 1648640 +SHA256: c27ca03826f4757a2301677f75b3ef45a0392b038ba242e1148667006329be76 +SHA1: 0b407643f35ffc8d4ebf9aabc1bb5e1ac21c8867 +MD5sum: 906ace6a021b0dfb6b6af38b71356740 Description: AMD DNN Library Maintainer: MIOpen Maintainer -Recommends: miopen-hip-dev6.2.2 (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3386725 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1952 + +Package: miopen-hip-gfx942kdb6.3.1 +Architecture: amd64 +Conflicts: miopen-opencl6.3.1 +Depends: hip-runtime-amd6.3.1, comgr6.3.1, roctracer6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1, rocrand6.3.1, rocm-core6.3.1 +Priority: optional +Section: devel +Filename: pool/main/m/miopen-hip-gfx942kdb6.3.1/miopen-hip-gfx942kdb6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 1648636 +SHA256: 2fd7ab0f4614ba7f268e15362c33c923c376404cf4771c6df7e7a03f99925779 +SHA1: f5cced9143eb6b8ed79f39cf81b664870721b8cd +MD5sum: f984c3f27e858728ad94776cf9a79675 +Description: AMD DNN Library +Maintainer: MIOpen Maintainer +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1952 + +Package: miopen-hip-rpath6.3.1 +Architecture: amd64 +Conflicts: miopen-opencl-rpath6.3.1 +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, roctracer-rpath6.3.1, rocblas-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, rocrand-rpath6.3.1, rocm-core-rpath6.3.1 +Priority: optional +Section: devel +Filename: pool/main/m/miopen-hip-rpath6.3.1/miopen-hip-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 162086140 +SHA256: a5ade3ef04e354cdaf1f56cb7a5459cbea960739272f23cdb9bb17fa7f2baee6 +SHA1: db947f62092fb8dfbfcb95f8332e80d052ee1594 +MD5sum: d70890a17c10c31ee0fb18fbc075cc00 +Description: AMD DNN Library +Maintainer: MIOpen Maintainer +Recommends: miopen-hip-dev-rpath6.3.1 (>=3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1876885 + +Package: miopen-hip6.3.1 +Architecture: amd64 +Conflicts: miopen-opencl6.3.1 +Depends: hip-runtime-amd6.3.1, comgr6.3.1, roctracer6.3.1, rocblas6.3.1, hipblaslt6.3.1, rocm-core6.3.1, rocrand6.3.1, rocm-core6.3.1 +Priority: optional +Section: devel +Filename: pool/main/m/miopen-hip6.3.1/miopen-hip6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 162088112 +SHA256: e3532ad0dc1e99dd0455fb70837a52fefcf88ee0ee5dba881785be5eb705c012 +SHA1: c5a0067b0ae8c03b9656c8cb9f8798c2541ce27c +MD5sum: 7a419f66732ce19241a0740ecbde0786 +Description: AMD DNN Library +Maintainer: MIOpen Maintainer +Recommends: miopen-hip-dev6.3.1 (>=3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1876885 Package: mivisionx Architecture: amd64 -Depends: rocm-core, rocm-hip-runtime, half, rpp, rocblas, miopen-hip, migraphx, rocdecode +Depends: rocm-core, rocm-hip-runtime, rpp, rocblas, miopen-hip, migraphx Priority: optional Section: devel -Filename: pool/main/m/mivisionx/mivisionx_3.0.0.60202-116~20.04_amd64.deb -Size: 43642404 -SHA256: c5e7052414e6c9b4150209a71e75f7d7c1962ad2e8c6b19df004dd852ac45353 -SHA1: 359b09582b148972475056c2dd4136c5613b069a -MD5sum: cfb50177a02101c4d7fffb8747a4b6bb +Filename: pool/main/m/mivisionx/mivisionx_3.1.0.60301-48~20.04_amd64.deb +Size: 36052970 +SHA256: 55178f2915faa56bcbaeebae9b1c9af01ac7c13ed4766dc234346cbd18a8e481 +SHA1: 989fef9130fe7cdd7e0fef20148f06c2b60e0a8b +MD5sum: 1a012cc117fd146b5b5d92eec2f31b9b Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX runtime package provides MIVisionX libraries and license.txt Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 266541 - -Package: mivisionx-asan -Architecture: amd64 -Depends: rocm-core-asan, rocm-hip-runtime, half, rpp, rocblas, miopen-hip, migraphx, rocdecode -Priority: optional -Section: devel -Filename: pool/main/m/mivisionx-asan/mivisionx-asan_3.0.0.60202-116~20.04_amd64.deb -Size: 40856064 -SHA256: 6652a59003c3566f426aa7ba75cf34752304cc7f0f58106d92e6851cb03701ad -SHA1: 3e26d2bc5e91c6ce98ea0fb19bfb89532a74ede2 -MD5sum: 5cdf2e62fc01224c3df61057879a5a10 -Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX ASAN package provides MIVisionX ASAN libraries -Homepage: https://github.com/ROCm/MIVisionX -Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 282749 - -Package: mivisionx-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: ed2cc8b5b77a33504f3b003cc546f746bfaddb03 a73359fc0ed549f2390b0bd6ace19980a7178372 98fb1db0f99de9e314c62fca92243794d79863ce 573f758000a0972328cf4eb1467b5f06d6c398ff 225f3ee910220e5a34e91b35eb507519fbb82243 e559000ef79d15d8b5f22b69ad34133b7279aeab c831f5d777f326f09461f6f83738e6f1cd85d51d f0c461ec9db8c9c84146657dead6d630e5a776a9 -Depends: mivisionx-asan (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/mivisionx-asan-dbgsym/mivisionx-asan-dbgsym_3.0.0.60202-116~20.04_amd64.deb -Size: 7340956 -SHA256: 9c37970203757041f357d294dee96f56baa67147436a22929e48744132463f3d -SHA1: 11efe210feca870966d65c41518f6919d6ef2477 -MD5sum: 0abec14b8d853390f3429e1297b425df -Description: debug symbols for mivisionx-asan -Maintainer: MIVisionX Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 8487 - -Package: mivisionx-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: ed2cc8b5b77a33504f3b003cc546f746bfaddb03 a73359fc0ed549f2390b0bd6ace19980a7178372 98fb1db0f99de9e314c62fca92243794d79863ce 573f758000a0972328cf4eb1467b5f06d6c398ff 225f3ee910220e5a34e91b35eb507519fbb82243 e559000ef79d15d8b5f22b69ad34133b7279aeab c831f5d777f326f09461f6f83738e6f1cd85d51d f0c461ec9db8c9c84146657dead6d630e5a776a9 -Depends: mivisionx-asan-rpath6.2.2 (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/mivisionx-asan-dbgsym-rpath6.2.2/mivisionx-asan-dbgsym-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 7176168 -SHA256: 20d4cf3ba886afe20c0723a3e75bdbad00a7d96b557a05d0d9ad3d93bbf1b218 -SHA1: b84b486ffe572ae2e416e6a528825e334998acf9 -MD5sum: f46801241e15846ab4c5aba59575432e -Description: debug symbols for mivisionx-asan -Maintainer: MIVisionX Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 8487 - -Package: mivisionx-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: ed2cc8b5b77a33504f3b003cc546f746bfaddb03 a73359fc0ed549f2390b0bd6ace19980a7178372 98fb1db0f99de9e314c62fca92243794d79863ce 573f758000a0972328cf4eb1467b5f06d6c398ff 225f3ee910220e5a34e91b35eb507519fbb82243 e559000ef79d15d8b5f22b69ad34133b7279aeab c831f5d777f326f09461f6f83738e6f1cd85d51d f0c461ec9db8c9c84146657dead6d630e5a776a9 -Depends: mivisionx-asan6.2.2 (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/mivisionx-asan-dbgsym6.2.2/mivisionx-asan-dbgsym6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 7176164 -SHA256: db35dcb49e5d60b278b40c8955e1c837a81b95ce2d9051dc1494ee73ef1603a8 -SHA1: b7a671c94910a40b67af1496eb863382602c0e44 -MD5sum: 492e40a3171049b684fe90d264fce85a -Description: debug symbols for mivisionx-asan -Maintainer: MIVisionX Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 8487 - -Package: mivisionx-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2, rocm-hip-runtime, half, rpp, rocblas, miopen-hip, migraphx, rocdecode -Priority: optional -Section: devel -Filename: pool/main/m/mivisionx-asan-rpath6.2.2/mivisionx-asan-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 18491356 -SHA256: 20f64b0c42134831b4dec731be1bbb6809ebdcdb32d79c784c58dc73a3aa25c3 -SHA1: 52f51fe338a44b815a4cd7c0b82d7fef263b48f7 -MD5sum: 9480034edac7d6726ede062e435afae9 -Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX ASAN package provides MIVisionX ASAN libraries -Homepage: https://github.com/ROCm/MIVisionX -Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 282749 - -Package: mivisionx-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2, rocm-hip-runtime, half, rpp, rocblas, miopen-hip, migraphx, rocdecode -Priority: optional -Section: devel -Filename: pool/main/m/mivisionx-asan6.2.2/mivisionx-asan6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 18490868 -SHA256: 5c9c792750d2809d999a90633bc8b17f868f1d21ea13ef7fe9302807ec7fd7a8 -SHA1: 9d2623a06fe31fb52bb78f3f6b0c4b6947651494 -MD5sum: 1d855157eef35d7a25719b9407cf5e93 -Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX ASAN package provides MIVisionX ASAN libraries -Homepage: https://github.com/ROCm/MIVisionX -Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 282749 +Version: 3.1.0.60301-48~20.04 +Installed-Size: 220134 Package: mivisionx-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 5515c365a55d977b989a9a78b6dce53a6ad734c0 06e81f74b3808d260af14db37fd7152bde58a51c d52bc5ff99c8364cdd20192d9f879364de27abf6 46462528a11539a3fd1236aa08bc6caa60d00ffd 917c36ca6652adc23a8f3b26d8052f67daafacc3 96d74e856dad3f2f0ea83739d418c8fb769f6240 c9938d0502c294089fc0bfbeb9b36ff9db3fd6a0 4c19faee3747f8ed8a08da268c053cf75de86daf 3ac5215c62270e7c9fc861f6a94ec1a6f3bd4b56 94f0c8a5ec4764806d27a71ae9dbacbf47ab48cd -Depends: mivisionx (= 3.0.0.60202-116~20.04) +Build-Ids: 9be24715c65828e328b0a529624c80a10e0b1c9d 80725508ea53308bbf09e346d510cd4b17a493b1 5e5ca2c835df322f9a7f3f2b060391f82607737c f048b8aba8b77a381c388f90f410f5953dd3e15a b14c157a5bd1c9c856b4d50bb9618ccb00a90e94 3fe635572479c818e08b5e9d3b745d36469b7efb b03e224af52301aac641ffe585334b6328ce3875 24133d4914bf2298e42015002007d59068d60435 3bb85b1ad420ff6c45b6592e99e8ec48439b7920 3b9f5aabf69d47817113cee7d1140de5eb7fb20c +Depends: mivisionx (= 3.1.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/m/mivisionx-dbgsym/mivisionx-dbgsym_3.0.0.60202-116~20.04_amd64.deb -Size: 16582476 -SHA256: cfaaa90cc10ceb1f735e35da270e9cc4db05b1f5eaceac3fed6a89d31877fa4a -SHA1: 96ee2cb17fb46a977dfc1b5c7ade3050d46ee9c1 -MD5sum: 9181fdc574fa481dd4ee4b8d4f3dfa82 +Filename: pool/main/m/mivisionx-dbgsym/mivisionx-dbgsym_3.1.0.60301-48~20.04_amd64.deb +Size: 7076724 +SHA256: 4e781ed9b47ac7050c8db97a295290a6345d12aa964128acbefca6095c59e65a +SHA1: 3ccd155d44a368b30841e3b83d955c4f521b3761 +MD5sum: 7abd741a0ba020bf35717de9dd99d852 Description: debug symbols for mivisionx Maintainer: MIVisionX Support Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 47247 - -Package: mivisionx-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5515c365a55d977b989a9a78b6dce53a6ad734c0 06e81f74b3808d260af14db37fd7152bde58a51c d52bc5ff99c8364cdd20192d9f879364de27abf6 46462528a11539a3fd1236aa08bc6caa60d00ffd 917c36ca6652adc23a8f3b26d8052f67daafacc3 96d74e856dad3f2f0ea83739d418c8fb769f6240 c9938d0502c294089fc0bfbeb9b36ff9db3fd6a0 4c19faee3747f8ed8a08da268c053cf75de86daf 3ac5215c62270e7c9fc861f6a94ec1a6f3bd4b56 94f0c8a5ec4764806d27a71ae9dbacbf47ab48cd -Depends: mivisionx-rpath6.2.2 (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/mivisionx-dbgsym-rpath6.2.2/mivisionx-dbgsym-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 6984136 -SHA256: 3d9f3926cd56a84af18a581cd6ccbef1fc723cf9805c3f2317b34b3be075bfbf -SHA1: 1ebe6ab6513d54c13a3bac89729dbd1f67c353dc -MD5sum: c760623db882d03879771caeafeaf6ac -Description: debug symbols for mivisionx -Maintainer: MIVisionX Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 47247 - -Package: mivisionx-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5515c365a55d977b989a9a78b6dce53a6ad734c0 06e81f74b3808d260af14db37fd7152bde58a51c d52bc5ff99c8364cdd20192d9f879364de27abf6 46462528a11539a3fd1236aa08bc6caa60d00ffd 917c36ca6652adc23a8f3b26d8052f67daafacc3 96d74e856dad3f2f0ea83739d418c8fb769f6240 c9938d0502c294089fc0bfbeb9b36ff9db3fd6a0 4c19faee3747f8ed8a08da268c053cf75de86daf 3ac5215c62270e7c9fc861f6a94ec1a6f3bd4b56 94f0c8a5ec4764806d27a71ae9dbacbf47ab48cd -Depends: mivisionx6.2.2 (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/m/mivisionx-dbgsym6.2.2/mivisionx-dbgsym6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 6985756 -SHA256: ee848be3448dedc325d0c2afe4ca125a1c7a6b2c7b85281b97dbe07b0d162c3b -SHA1: c6dd32d04cb14157c3861b995aa9e7b065e188a2 -MD5sum: 7c0e0dc1c579c593cf75fb935a83fe27 -Description: debug symbols for mivisionx -Maintainer: MIVisionX Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 47247 +Version: 3.1.0.60301-48~20.04 +Installed-Size: 21434 Package: mivisionx-dev Architecture: amd64 -Depends: rocm-core, mivisionx, rocm-hip-runtime-dev, rpp-dev, rocblas-dev, miopen-hip-dev, migraphx-dev, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev, libswscale-dev, rocdecode-dev +Depends: rocm-core, mivisionx, half, rocm-hip-runtime-dev, rpp-dev, rocblas-dev, miopen-hip-dev, migraphx-dev, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev, libswscale-dev Priority: optional Section: devel -Filename: pool/main/m/mivisionx-dev/mivisionx-dev_3.0.0.60202-116~20.04_amd64.deb +Filename: pool/main/m/mivisionx-dev/mivisionx-dev_3.1.0.60301-48~20.04_amd64.deb Size: 23597340 -SHA256: a601a15d5d288899e91a2a7e35874e5e86ca5f36b8d0811b547e16717668861d -SHA1: 598117e79caef9d6bccc1c7e4fd1431e515b593d -MD5sum: d2deac5ac7d70c77b09a0f307aff7edc +SHA256: 6d6e29764d7efe1290ae342aafc1fa7d024d2f52c72c6d52d9ba986ef48f11b7 +SHA1: 90f663091a3866afa46456fe62bd74187697f1d8 +MD5sum: a00933388c7a9865a989b5063310ae0a Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX develop package provides MIVisionX libraries, header files, samples, and license.txt Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 +Version: 3.1.0.60301-48~20.04 Installed-Size: 41263 -Package: mivisionx-dev-rpath6.2.2 +Package: mivisionx-dev-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, mivisionx-rpath6.2.2, rocm-hip-runtime-dev-rpath6.2.2, rpp-dev-rpath6.2.2, rocblas-dev-rpath6.2.2, miopen-hip-dev-rpath6.2.2, migraphx-dev-rpath6.2.2, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev, libswscale-dev, rocdecode-dev-rpath6.2.2 +Depends: rocm-core-rpath6.3.1, mivisionx-rpath6.3.1, half-rpath6.3.1, rocm-hip-runtime-dev-rpath6.3.1, rpp-dev-rpath6.3.1, rocblas-dev-rpath6.3.1, miopen-hip-dev-rpath6.3.1, migraphx-dev-rpath6.3.1, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev, libswscale-dev Priority: optional Section: devel -Filename: pool/main/m/mivisionx-dev-rpath6.2.2/mivisionx-dev-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 19278376 -SHA256: 6aef5d1b87046e37757c27b4cde70a2a50607aeeaea1a269334c2d03f5a696b5 -SHA1: 6824ee6b272f5d4733c11e87437736c6848881d6 -MD5sum: 1a641ad9f2217ba8aa64608ad7eb241b +Filename: pool/main/m/mivisionx-dev-rpath6.3.1/mivisionx-dev-rpath6.3.1_3.1.0.60301-48~20.04_amd64.deb +Size: 19277836 +SHA256: 9150114c37475aace0954ade68de77f4835aee32599b827e9090e752dea1ba79 +SHA1: 77fece3dc18b86674391e881741e1d7369c246b6 +MD5sum: 1296ed52357e824db372c728e0b95f0c Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX develop package provides MIVisionX libraries, header files, samples, and license.txt Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 +Version: 3.1.0.60301-48~20.04 Installed-Size: 41263 -Package: mivisionx-dev6.2.2 +Package: mivisionx-dev6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, mivisionx6.2.2, rocm-hip-runtime-dev6.2.2, rpp-dev6.2.2, rocblas-dev6.2.2, miopen-hip-dev6.2.2, migraphx-dev6.2.2, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev, libswscale-dev, rocdecode-dev6.2.2 +Depends: rocm-core6.3.1, mivisionx6.3.1, half6.3.1, rocm-hip-runtime-dev6.3.1, rpp-dev6.3.1, rocblas-dev6.3.1, miopen-hip-dev6.3.1, migraphx-dev6.3.1, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev, libswscale-dev Priority: optional Section: devel -Filename: pool/main/m/mivisionx-dev6.2.2/mivisionx-dev6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 19278268 -SHA256: b8b8952556014429370a8933500fe33189c9d26d6b3ef1e32cf454e107e0379c -SHA1: e129c303bd055e8bfbbd537f6ecd3dc7c89be5f5 -MD5sum: 5eb9ed8dfbf817f3f4ad9f9053c766eb +Filename: pool/main/m/mivisionx-dev6.3.1/mivisionx-dev6.3.1_3.1.0.60301-48~20.04_amd64.deb +Size: 19277856 +SHA256: 9e2a59961dd87a2cc06079fe4acc4d8af584810f8f26449fdc1568288e8cfff1 +SHA1: 9c7bb06ca76e6ac51640439b4fab833c5da492d7 +MD5sum: a74931d9bfac693ae2aad817cb7ec80b Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX develop package provides MIVisionX libraries, header files, samples, and license.txt Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 +Version: 3.1.0.60301-48~20.04 Installed-Size: 41263 -Package: mivisionx-rpath6.2.2 +Package: mivisionx-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, rocm-hip-runtime-rpath6.2.2, half-rpath6.2.2, rpp-rpath6.2.2, rocblas-rpath6.2.2, miopen-hip-rpath6.2.2, migraphx-rpath6.2.2, rocdecode-rpath6.2.2 +Depends: rocm-core-rpath6.3.1, rocm-hip-runtime-rpath6.3.1, rpp-rpath6.3.1, rocblas-rpath6.3.1, miopen-hip-rpath6.3.1, migraphx-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/mivisionx-rpath6.2.2/mivisionx-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 11081232 -SHA256: faf7ce875482df440121274ab7ecea1de4c0b31b3fd9c1e0ec9d7a4869bbea62 -SHA1: 094cedbc17f90954e79e596e2abcf770d72dfe5c -MD5sum: 2ef7ad5fefe83bfabc1c59c6915b428e +Filename: pool/main/m/mivisionx-rpath6.3.1/mivisionx-rpath6.3.1_3.1.0.60301-48~20.04_amd64.deb +Size: 10791512 +SHA256: 176e9a7139e6ee2d1cf7e96cdf55a020137327162d2cf9a44a4da3484f82eafe +SHA1: 002187c5ec913a1edc24ba7bd2420ce64ec6a41d +MD5sum: 56b2edc54b3417d58c7259d4a1dd4a5f Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX runtime package provides MIVisionX libraries and license.txt Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 266541 +Version: 3.1.0.60301-48~20.04 +Installed-Size: 220134 Package: mivisionx-test Architecture: amd64 Depends: rocm-core, mivisionx-dev Priority: optional Section: devel -Filename: pool/main/m/mivisionx-test/mivisionx-test_3.0.0.60202-116~20.04_amd64.deb -Size: 10595674 -SHA256: 80138228f1b56152291153cb7848f5f549b44682b8d05a6d759dc3577d0fae20 -SHA1: 25e1f9e5cea0bebc12d114853377e577e368ee53 -MD5sum: 797ec13dfbc55858c64bec3f33c64ef9 +Filename: pool/main/m/mivisionx-test/mivisionx-test_3.1.0.60301-48~20.04_amd64.deb +Size: 39911508 +SHA256: c10faf4d5f583aeea9997e089350d356ddca0fdc9a47f6b3e370b3122a5b628a +SHA1: f3cf57af9ef085b8f764379485585e1877933ef9 +MD5sum: 91761e57f3097ecfdd790d925fe4d268 Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX Test package provides MIVisionX Test Components Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 18030 +Version: 3.1.0.60301-48~20.04 +Installed-Size: 48978 -Package: mivisionx-test-rpath6.2.2 +Package: mivisionx-test-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, mivisionx-dev-rpath6.2.2 +Depends: rocm-core-rpath6.3.1, mivisionx-dev-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/m/mivisionx-test-rpath6.2.2/mivisionx-test-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 7458148 -SHA256: 02df3932d8d313571bc06db1ab6bdf117f95387a918016393efd9abbccb6ac41 -SHA1: a3aadf6c6539dfb7371efb25876a3926fe3e0b81 -MD5sum: d176390192a578615a31fc0c6ba9c3f3 +Filename: pool/main/m/mivisionx-test-rpath6.3.1/mivisionx-test-rpath6.3.1_3.1.0.60301-48~20.04_amd64.deb +Size: 35777184 +SHA256: f1a49bd918f841a09f496daa15c27634c5ed517f3268112264951b4853399fbc +SHA1: 59052bd257b4f7ea8ce818d32094149b59ffa72b +MD5sum: 3f4b8a81e71a073c46451eedb56b2ea7 Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX Test package provides MIVisionX Test Components Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 18030 +Version: 3.1.0.60301-48~20.04 +Installed-Size: 48978 -Package: mivisionx-test6.2.2 +Package: mivisionx-test6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, mivisionx-dev6.2.2 +Depends: rocm-core6.3.1, mivisionx-dev6.3.1 Priority: optional Section: devel -Filename: pool/main/m/mivisionx-test6.2.2/mivisionx-test6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 7466700 -SHA256: 438e1f2c5c29e5663b106320ae711b602a29d9c4b8d004d9e64623481555316d -SHA1: 2b823c579b04f86f4fd60431ebcac6506eb4caed -MD5sum: 20f795edfc9bba3021aa2e2cb538f607 +Filename: pool/main/m/mivisionx-test6.3.1/mivisionx-test6.3.1_3.1.0.60301-48~20.04_amd64.deb +Size: 35777612 +SHA256: d0499ea6ea4a497b813473df0cc8b1cd59c5165b6885b2961e9526d6df24f6e6 +SHA1: 13a32b73b2e21bbc5f0f6a85a8b210c4f646384d +MD5sum: 0e5de6c9e2fbef1cfa93d3782e5a8bdf Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX Test package provides MIVisionX Test Components Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 18030 +Version: 3.1.0.60301-48~20.04 +Installed-Size: 48978 -Package: mivisionx6.2.2 +Package: mivisionx6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, rocm-hip-runtime6.2.2, half6.2.2, rpp6.2.2, rocblas6.2.2, miopen-hip6.2.2, migraphx6.2.2, rocdecode6.2.2 +Depends: rocm-core6.3.1, rocm-hip-runtime6.3.1, rpp6.3.1, rocblas6.3.1, miopen-hip6.3.1, migraphx6.3.1 Priority: optional Section: devel -Filename: pool/main/m/mivisionx6.2.2/mivisionx6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 11079536 -SHA256: 996a094b7bb1c976e2f084e8d843bb601f7ad3ccc9ad44146fd8d437ecd1e29b -SHA1: 94cde353b0f42e3dd14b02745325d88caddb02b1 -MD5sum: 9b1bd5f215176f9a30b134406adf8649 +Filename: pool/main/m/mivisionx6.3.1/mivisionx6.3.1_3.1.0.60301-48~20.04_amd64.deb +Size: 10788696 +SHA256: 4bb5ff8eaa5b465c0a82c9456ce0d5a2a070583cadfff424df638310dbcac55d +SHA1: 6ead25a38809630423fc473be069783368d04cc0 +MD5sum: e660ee1dd4fdbcbd3e954086e577b2ff Description: AMD MIVisionX is a comprehensive Computer Vision and ML Inference Toolkit. MIVisionX runtime package provides MIVisionX libraries and license.txt Homepage: https://github.com/ROCm/MIVisionX Maintainer: MIVisionX Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 266541 - -Package: omniperf -Architecture: amd64 -Depends: rocprofiler -Priority: optional -Section: devel -Filename: pool/main/o/omniperf/omniperf_2.0.1.60202-116~20.04_amd64.deb -Size: 2620068 -SHA256: f141dbb2778585d0494a6e50ad19e841e83347490b37a96fce0e49d2bd327c29 -SHA1: e7d20ada00a2d71cd48a27a6b124803001a6befd -MD5sum: be2df303f6f53c9d10bdb4e75e249701 -Description: Omniperf: tool for GPU performance profiling -Homepage: https://github.com/ROCm/omniperf -Maintainer: https://github.com/ROCm/omniperf -Version: 2.0.1.60202-116~20.04 -Installed-Size: 12687 - -Package: omniperf-rpath6.2.2 -Architecture: amd64 -Depends: rocprofiler-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/o/omniperf-rpath6.2.2/omniperf-rpath6.2.2_2.0.1.60202-116~20.04_amd64.deb -Size: 1663392 -SHA256: 1f4503006b2b2bf8f00b4a5e65cbe40f831a259c1593909aed26f35564e5de01 -SHA1: 83cfdc41a532006d142dfbb3340410af0788d1d3 -MD5sum: f5691a128227695584b4f6cb70465067 -Description: Omniperf: tool for GPU performance profiling -Homepage: https://github.com/ROCm/omniperf -Maintainer: https://github.com/ROCm/omniperf -Version: 2.0.1.60202-116~20.04 -Installed-Size: 12687 - -Package: omniperf6.2.2 -Architecture: amd64 -Depends: rocprofiler6.2.2 -Priority: optional -Section: devel -Filename: pool/main/o/omniperf6.2.2/omniperf6.2.2_2.0.1.60202-116~20.04_amd64.deb -Size: 1663936 -SHA256: c9b6e83edd7d1593e87895715fd617960779f0e6517453600a3a97c61dc6b9e0 -SHA1: edeb908da33138976e85ecf377b6837db263a5a0 -MD5sum: 67df5d99f1f959f81536d9963018ac28 -Description: Omniperf: tool for GPU performance profiling -Homepage: https://github.com/ROCm/omniperf -Maintainer: https://github.com/ROCm/omniperf -Version: 2.0.1.60202-116~20.04 -Installed-Size: 12687 - -Package: omnitrace -Architecture: amd64 -Depends: libgomp1, rocm-smi-lib (>= 6.0.0.60202), roctracer-dev (>= 1.0.0.60202), rocprofiler-dev (>= 1.0.0.60202), libbz2-1.0, libc6 (>= 2.30), libgcc-s1 (>= 3.0), libgomp1 (>= 6), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 9), zlib1g (>= 1:1.2.2.3) -Priority: optional -Section: devel -Filename: pool/main/o/omnitrace/omnitrace_1.11.2.60202-116~20.04_amd64.deb -Size: 40312816 -SHA256: da642d4f0d84ddef53b3348e3179416560b57120e6e5feeee42fabe90e042bab -SHA1: 98254d24f0ae699544bc5c7bb84f58302b888975 -MD5sum: d72f3317431f3b62d9cfb5e9f92c9a40 -Description: Runtime instrumentation and binary rewriting for Perfetto via Dyninst -Homepage: https://github.com/ROCm/omnitrace -Maintainer: jonathan.madsen@amd.com -Version: 1.11.2.60202-116~20.04 -Installed-Size: 247179 - -Package: omnitrace-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eac6018245ae1ab6a190826381d54153e26a0333 90367c8b66d2890c93370198e15ea17fcbc8802e e46786ac82bde169a1a2439bb741ab3509d402c2 e90d37a85ef322a2bb830e15e802d5c995ad0583 c5659842a2fc6c0500be26b3644e4bca2c291676 2a14778353135340141f9f2bf2277891a60c7a34 b1c0ba4b1b1e282ba18eeea9da2b721bc25778b9 b4053a9e681f77f68a20e864048cd3608b8e0eb7 d4752efac240904543eff29cc9b7b1d401d491b6 b674b1f00bde8499ef4ad317f20049c1658a97c6 c0c0d879c4659580bffe1ac674da3092bc86a9f1 03f1f4487a07016d970b9fe73850158a5b8ff614 571c29a98604f0998baf065ff377e50e107b66e9 7e26e5020a2665496c4f0bf393c5e360b2896d52 10cbea4ee1a63a5f3ff0ebf60975f763833b7f42 71b301a0cd95aea5ebb650b8b6131f39b5fbcf64 5fe9076b6106191c259e65e6064cc18bc5bc2234 4eb469c832aca954b04fe0def8c4f46d001586aa 1d6ff80ce6a89fbf5419a8113f370101e4dacf8d 1f79009801f5925ff6c5794a4bab6d3eb760941c c657487b15b6913ec6d600e7d070ece8a6385f1c c19463bc8cf86ac9038edeac60845a303d6d5be6 36d6e98f567ef617872abcb5103f08f6c647da53 824bccace94f66f9fccdd3e7c7e7c4472405d36d dc5c3734dd59cb9f6e9894bfc6e7ec9fa3fe49bf 4a62d200925c4f02f1e1c99b52b8aa24e24f5346 c323d5999292b93e0e1645f661b7492195baf3c1 0e760371e572ed657abe47253fbaf53627e6ebed c174f94221af80cbee0b5ed9cbd764e944374a27 d622ba94fcb15809e803c73456449f7465e81309 c19463bc8cf86ac9038edeac60845a303d6d5be6 99ca4257dbd41ac17a17a81842c119a24228362f 7e534a2cd50b1b309d90b95b16f5068f0ee532aa c7a630225000b86ce3e18d41225640780c7c1f17 21b4811cfe3b68bda7b9c94b232e5682cbcc91bb 1e440a4c4b2d3bc4ea190648190506fefe3ca6a5 6bdffbb68823670516d1063da1010bb651ece1e9 e3a1a11e75eb616ec3125ad788ffce5ee040f307 de930c9567f15ab1896a3be37fc767592555bb78 e68255fb37dfb7044c3f8bfe232efd4a2be9aaf2 -Depends: omnitrace (= 1.11.2.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/o/omnitrace-dbgsym/omnitrace-dbgsym_1.11.2.60202-116~20.04_amd64.deb -Size: 818803122 -SHA256: b69c9065f8acc255e972e8ca536ecd9426a3d7f1772ffdc12e86260e03825bc3 -SHA1: 66d6042dbae87635087f93d8a13a97694f60d1d9 -MD5sum: 401370003a411130433ca59b0dc29afd -Description: debug symbols for omnitrace -Maintainer: jonathan.madsen@amd.com -Package-Type: ddeb -Version: 1.11.2.60202-116~20.04 -Installed-Size: 3083713 - -Package: omnitrace-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eac6018245ae1ab6a190826381d54153e26a0333 90367c8b66d2890c93370198e15ea17fcbc8802e e46786ac82bde169a1a2439bb741ab3509d402c2 e90d37a85ef322a2bb830e15e802d5c995ad0583 c5659842a2fc6c0500be26b3644e4bca2c291676 2a14778353135340141f9f2bf2277891a60c7a34 b1c0ba4b1b1e282ba18eeea9da2b721bc25778b9 b4053a9e681f77f68a20e864048cd3608b8e0eb7 d4752efac240904543eff29cc9b7b1d401d491b6 b674b1f00bde8499ef4ad317f20049c1658a97c6 c0c0d879c4659580bffe1ac674da3092bc86a9f1 03f1f4487a07016d970b9fe73850158a5b8ff614 571c29a98604f0998baf065ff377e50e107b66e9 7e26e5020a2665496c4f0bf393c5e360b2896d52 10cbea4ee1a63a5f3ff0ebf60975f763833b7f42 71b301a0cd95aea5ebb650b8b6131f39b5fbcf64 5fe9076b6106191c259e65e6064cc18bc5bc2234 4eb469c832aca954b04fe0def8c4f46d001586aa 1d6ff80ce6a89fbf5419a8113f370101e4dacf8d 1f79009801f5925ff6c5794a4bab6d3eb760941c c657487b15b6913ec6d600e7d070ece8a6385f1c c19463bc8cf86ac9038edeac60845a303d6d5be6 36d6e98f567ef617872abcb5103f08f6c647da53 824bccace94f66f9fccdd3e7c7e7c4472405d36d dc5c3734dd59cb9f6e9894bfc6e7ec9fa3fe49bf 4a62d200925c4f02f1e1c99b52b8aa24e24f5346 c323d5999292b93e0e1645f661b7492195baf3c1 0e760371e572ed657abe47253fbaf53627e6ebed c174f94221af80cbee0b5ed9cbd764e944374a27 d622ba94fcb15809e803c73456449f7465e81309 c19463bc8cf86ac9038edeac60845a303d6d5be6 99ca4257dbd41ac17a17a81842c119a24228362f 7e534a2cd50b1b309d90b95b16f5068f0ee532aa c7a630225000b86ce3e18d41225640780c7c1f17 21b4811cfe3b68bda7b9c94b232e5682cbcc91bb 1e440a4c4b2d3bc4ea190648190506fefe3ca6a5 6bdffbb68823670516d1063da1010bb651ece1e9 e3a1a11e75eb616ec3125ad788ffce5ee040f307 de930c9567f15ab1896a3be37fc767592555bb78 e68255fb37dfb7044c3f8bfe232efd4a2be9aaf2 -Depends: omnitrace-rpath6.2.2 (= 1.11.2.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/o/omnitrace-dbgsym-rpath6.2.2/omnitrace-dbgsym-rpath6.2.2_1.11.2.60202-116~20.04_amd64.deb -Size: 514334544 -SHA256: 7e2f9840d33205e3f1dfa3b54c641cd8e24b2d2bbf479959bd6ccea2b7d28c42 -SHA1: 69bfac39ac0afd2199803815af0c7ef65590e931 -MD5sum: edc5c84b4df77b615deb4376fcc7d94f -Description: debug symbols for omnitrace -Maintainer: jonathan.madsen@amd.com -Package-Type: ddeb -Version: 1.11.2.60202-116~20.04 -Installed-Size: 3083713 - -Package: omnitrace-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eac6018245ae1ab6a190826381d54153e26a0333 90367c8b66d2890c93370198e15ea17fcbc8802e e46786ac82bde169a1a2439bb741ab3509d402c2 e90d37a85ef322a2bb830e15e802d5c995ad0583 c5659842a2fc6c0500be26b3644e4bca2c291676 2a14778353135340141f9f2bf2277891a60c7a34 b1c0ba4b1b1e282ba18eeea9da2b721bc25778b9 b4053a9e681f77f68a20e864048cd3608b8e0eb7 d4752efac240904543eff29cc9b7b1d401d491b6 b674b1f00bde8499ef4ad317f20049c1658a97c6 c0c0d879c4659580bffe1ac674da3092bc86a9f1 03f1f4487a07016d970b9fe73850158a5b8ff614 571c29a98604f0998baf065ff377e50e107b66e9 7e26e5020a2665496c4f0bf393c5e360b2896d52 10cbea4ee1a63a5f3ff0ebf60975f763833b7f42 71b301a0cd95aea5ebb650b8b6131f39b5fbcf64 5fe9076b6106191c259e65e6064cc18bc5bc2234 4eb469c832aca954b04fe0def8c4f46d001586aa 1d6ff80ce6a89fbf5419a8113f370101e4dacf8d 1f79009801f5925ff6c5794a4bab6d3eb760941c c657487b15b6913ec6d600e7d070ece8a6385f1c c19463bc8cf86ac9038edeac60845a303d6d5be6 36d6e98f567ef617872abcb5103f08f6c647da53 824bccace94f66f9fccdd3e7c7e7c4472405d36d dc5c3734dd59cb9f6e9894bfc6e7ec9fa3fe49bf 4a62d200925c4f02f1e1c99b52b8aa24e24f5346 c323d5999292b93e0e1645f661b7492195baf3c1 0e760371e572ed657abe47253fbaf53627e6ebed c174f94221af80cbee0b5ed9cbd764e944374a27 d622ba94fcb15809e803c73456449f7465e81309 c19463bc8cf86ac9038edeac60845a303d6d5be6 99ca4257dbd41ac17a17a81842c119a24228362f 7e534a2cd50b1b309d90b95b16f5068f0ee532aa c7a630225000b86ce3e18d41225640780c7c1f17 21b4811cfe3b68bda7b9c94b232e5682cbcc91bb 1e440a4c4b2d3bc4ea190648190506fefe3ca6a5 6bdffbb68823670516d1063da1010bb651ece1e9 e3a1a11e75eb616ec3125ad788ffce5ee040f307 de930c9567f15ab1896a3be37fc767592555bb78 e68255fb37dfb7044c3f8bfe232efd4a2be9aaf2 -Depends: omnitrace6.2.2 (= 1.11.2.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/o/omnitrace-dbgsym6.2.2/omnitrace-dbgsym6.2.2_1.11.2.60202-116~20.04_amd64.deb -Size: 514333492 -SHA256: 426dd469e6ef27d8e35392826091c32794bedda53d4c6b3c308e52464b52c5ba -SHA1: 8875a10dbd6f48abbc13898f3921f8fec9601745 -MD5sum: ff695050fef6bd87904b9a507ebf1766 -Description: debug symbols for omnitrace -Maintainer: jonathan.madsen@amd.com -Package-Type: ddeb -Version: 1.11.2.60202-116~20.04 -Installed-Size: 3083713 - -Package: omnitrace-rpath6.2.2 -Architecture: amd64 -Depends: libgomp1, rocm-smi-lib-rpath6.2.2 (>= 6.0.0.60202), roctracer-dev-rpath6.2.2 (>= 1.0.0.60202), rocprofiler-dev-rpath6.2.2 (>= 1.0.0.60202), libbz2-1.0, libc6 (>= 2.30), libgcc-s1 (>= 3.0), libgomp1 (>= 6), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 9), zlib1g (>= 1:1.2.2.3) -Priority: optional -Section: devel -Filename: pool/main/o/omnitrace-rpath6.2.2/omnitrace-rpath6.2.2_1.11.2.60202-116~20.04_amd64.deb -Size: 22429944 -SHA256: 6df51f04f75c85717e1a0f1adf9d6f30b73013ca0fbb245c4a7b7916b32096dd -SHA1: 00bef216db9cafe704222c889e092e91161dc6f1 -MD5sum: 573116c97d9aac3217f2e5d9d27c9c75 -Description: Runtime instrumentation and binary rewriting for Perfetto via Dyninst -Homepage: https://github.com/ROCm/omnitrace -Maintainer: jonathan.madsen@amd.com -Version: 1.11.2.60202-116~20.04 -Installed-Size: 247179 - -Package: omnitrace6.2.2 -Architecture: amd64 -Depends: libgomp1, rocm-smi-lib6.2.2 (>= 6.0.0.60202), roctracer-dev6.2.2 (>= 1.0.0.60202), rocprofiler-dev6.2.2 (>= 1.0.0.60202), libbz2-1.0, libc6 (>= 2.30), libgcc-s1 (>= 3.0), libgomp1 (>= 6), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 9), zlib1g (>= 1:1.2.2.3) -Priority: optional -Section: devel -Filename: pool/main/o/omnitrace6.2.2/omnitrace6.2.2_1.11.2.60202-116~20.04_amd64.deb -Size: 22436056 -SHA256: 641e2d1a2aeafd76f921645fc1d78801eb13395261163937e5664b3c7b8c2d01 -SHA1: 8dc82beef27f06c6bdbc0c834ba5bfccf020ec7d -MD5sum: 960bb52612b9bfa4aea58d5351b5dcda -Description: Runtime instrumentation and binary rewriting for Perfetto via Dyninst -Homepage: https://github.com/ROCm/omnitrace -Maintainer: jonathan.madsen@amd.com -Version: 1.11.2.60202-116~20.04 -Installed-Size: 247179 - -Package: openmp-extras-asan -Architecture: amd64 -Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 -Depends: hsa-rocr-asan, rocm-core-asan -Recommends: gcc, g++ -Priority: optional -Section: devel -Filename: pool/main/o/openmp-extras-asan/openmp-extras-asan_18.62.0.60202-116~20.04_amd64.deb -Size: 188725204 -SHA256: 6e7e3bd64a6a257456b80e7f4575df6caff2ed87508126764ccfb0b036bab578 -SHA1: 9515cb6ee6783f466b9114ad4d7d982850f9e841 -MD5sum: b565f11390abbf2cc40ab1f3a56e0bfe -Description: AddressSanitizer OpenMP Extras provides instrumented openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. - -Package: openmp-extras-asan-rpath6.2.2 -Architecture: amd64 -Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 -Depends: hsa-rocr-asan-rpath6.2.2, rocm-core-asan-rpath6.2.2 -Recommends: gcc, g++ -Priority: optional -Section: devel -Filename: pool/main/o/openmp-extras-asan-rpath6.2.2/openmp-extras-asan-rpath6.2.2_18.62.0.60202-116~20.04_amd64.deb -Size: 114726764 -SHA256: d380e732a91dfea3f2b0250e92e7f25a86c5f61b3016cd979739748363f628d9 -SHA1: 60cb7a10ddd51bed939be6d6f7137f778ffed7f6 -MD5sum: 2675e7d1bf7348c637959fd1370b8424 -Description: AddressSanitizer OpenMP Extras provides instrumented openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. - -Package: openmp-extras-asan6.2.2 -Architecture: amd64 -Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 -Depends: hsa-rocr-asan6.2.2, rocm-core-asan6.2.2 -Recommends: gcc, g++ -Priority: optional -Section: devel -Filename: pool/main/o/openmp-extras-asan6.2.2/openmp-extras-asan6.2.2_18.62.0.60202-116~20.04_amd64.deb -Size: 114728836 -SHA256: e964bc93293746c83809a41e5168a40a64ea0e584772b5e3e0244944523e25be -SHA1: 7d461b03d6f30e5951b5bcd18221a088e0e94fcb -MD5sum: c5e985269c6a44130308f3093e661254 -Description: AddressSanitizer OpenMP Extras provides instrumented openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. +Version: 3.1.0.60301-48~20.04 +Installed-Size: 220134 Package: openmp-extras-dev Architecture: amd64 Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 +Version: 18.63.0.60301-48~20.04 Depends: rocm-llvm, rocm-device-libs, rocm-core, openmp-extras-runtime, hsa-rocr-dev Recommends: gcc, g++ Provides: openmp-extras @@ -4821,1560 +2589,1101 @@ Conflicts: openmp-extras Replaces: openmp-extras Priority: optional Section: devel -Filename: pool/main/o/openmp-extras-dev/openmp-extras-dev_18.62.0.60202-116~20.04_amd64.deb -Size: 49046206 -SHA256: 40e0dbcacab017720dcf93f0df31c2bb11534566aea0d99b2cee51a6829529a1 -SHA1: f86de86f1fdf239385a13b5e718018a6183ebc8c -MD5sum: 00a5bed991ad975bb11953c50c57d78d +Filename: pool/main/o/openmp-extras-dev/openmp-extras-dev_18.63.0.60301-48~20.04_amd64.deb +Size: 50541320 +SHA256: 65cc7a67f12b85027254d1399b800616bfd768c93a7da7fc50c5417518a531b1 +SHA1: a5183ab8f818eed89a1ede611dc86017eb378ed8 +MD5sum: 0f32171102a8219af89639f48627932d Description: OpenMP Extras provides openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. + openmp-extras 18.63.0.60301 is based on LLVM 17 and is used for offloading to Radeon GPUs. -Package: openmp-extras-dev-rpath6.2.2 +Package: openmp-extras-dev-rpath6.3.1 Architecture: amd64 Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 -Depends: rocm-llvm-rpath6.2.2, rocm-device-libs-rpath6.2.2, rocm-core-rpath6.2.2, openmp-extras-runtime-rpath6.2.2, hsa-rocr-dev-rpath6.2.2 +Version: 18.63.0.60301-48~20.04 +Depends: rocm-llvm-rpath6.3.1, rocm-device-libs-rpath6.3.1, rocm-core-rpath6.3.1, openmp-extras-runtime-rpath6.3.1, hsa-rocr-dev-rpath6.3.1 Recommends: gcc, g++ -Provides: openmp-extras-rpath6.2.2 -Conflicts: openmp-extras-rpath6.2.2 -Replaces: openmp-extras-rpath6.2.2 +Provides: openmp-extras-rpath6.3.1 +Conflicts: openmp-extras-rpath6.3.1 +Replaces: openmp-extras-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/o/openmp-extras-dev-rpath6.2.2/openmp-extras-dev-rpath6.2.2_18.62.0.60202-116~20.04_amd64.deb -Size: 25650896 -SHA256: befa76da6ca8a68358e0191d588b3a51fed39fcb924c22ff37fa266c02595c0d -SHA1: d0945869e0a5be318fec5a138fcf0b97bb7b886a -MD5sum: 878c31295cc4e99dcb26ee7f1aae4777 +Filename: pool/main/o/openmp-extras-dev-rpath6.3.1/openmp-extras-dev-rpath6.3.1_18.63.0.60301-48~20.04_amd64.deb +Size: 25695716 +SHA256: 2f041e20fb87312c249641cf4382134047d1e0e7bf4cba781eccf8fcebc8f2ed +SHA1: 6c81a53ee77ee0a040984c2787abbf1e2022c7e3 +MD5sum: 69e7373922447cff10dc832f85784b4d Description: OpenMP Extras provides openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. + openmp-extras 18.63.0.60301 is based on LLVM 17 and is used for offloading to Radeon GPUs. -Package: openmp-extras-dev6.2.2 +Package: openmp-extras-dev6.3.1 Architecture: amd64 Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 -Depends: rocm-llvm6.2.2, rocm-device-libs6.2.2, rocm-core6.2.2, openmp-extras-runtime6.2.2, hsa-rocr-dev6.2.2 +Version: 18.63.0.60301-48~20.04 +Depends: rocm-llvm6.3.1, rocm-device-libs6.3.1, rocm-core6.3.1, openmp-extras-runtime6.3.1, hsa-rocr-dev6.3.1 Recommends: gcc, g++ -Provides: openmp-extras6.2.2 -Conflicts: openmp-extras6.2.2 -Replaces: openmp-extras6.2.2 +Provides: openmp-extras6.3.1 +Conflicts: openmp-extras6.3.1 +Replaces: openmp-extras6.3.1 Priority: optional Section: devel -Filename: pool/main/o/openmp-extras-dev6.2.2/openmp-extras-dev6.2.2_18.62.0.60202-116~20.04_amd64.deb -Size: 25650248 -SHA256: abf9efb248dbde93c9949e635e8052cc5c82734381dd64a44f3eee0ec9f6c259 -SHA1: fdfe0e4fed8c7b71c6495d04d511546029fc076f -MD5sum: 31e353c61709b204531f857bf2afa404 +Filename: pool/main/o/openmp-extras-dev6.3.1/openmp-extras-dev6.3.1_18.63.0.60301-48~20.04_amd64.deb +Size: 25697372 +SHA256: 4614bc34d59989f95a1dd4b1c1a36ed05f88a5a3efeecb12b4bbe63a3d55098c +SHA1: 11926e7bb986bd2f818ad44163cd5d53e6e8e0eb +MD5sum: dd7ec228685e1367311b865ccf2e9e41 Description: OpenMP Extras provides openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. + openmp-extras 18.63.0.60301 is based on LLVM 17 and is used for offloading to Radeon GPUs. Package: openmp-extras-runtime Architecture: amd64 Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 +Version: 18.63.0.60301-48~20.04 Depends: rocm-core, hsa-rocr Recommends: gcc, g++ Priority: optional Section: devel -Filename: pool/main/o/openmp-extras-runtime/openmp-extras-runtime_18.62.0.60202-116~20.04_amd64.deb -Size: 150997604 -SHA256: 0a09d0722f7ab193d6cf181c30ee8b2eaaae798142bfdc10ce88d5e0e2f52adb -SHA1: 9d42b9a51a15f55f32a21fddda81e624034e650c -MD5sum: 160f20dd27450ab08c0c9d3751069701 +Filename: pool/main/o/openmp-extras-runtime/openmp-extras-runtime_18.63.0.60301-48~20.04_amd64.deb +Size: 152980896 +SHA256: 1699c6148c1939bc347a17b884ccd57ae223ecd4368ded7dae2f8ce250783d85 +SHA1: 4c322058a51af3693b38a3183f3431ba57f5ef38 +MD5sum: 9d17f06b6c0ad4b138d8efcdc79657a1 Description: OpenMP Extras provides openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. + openmp-extras 18.63.0.60301 is based on LLVM 17 and is used for offloading to Radeon GPUs. -Package: openmp-extras-runtime-rpath6.2.2 +Package: openmp-extras-runtime-rpath6.3.1 Architecture: amd64 Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 -Depends: rocm-core-rpath6.2.2, hsa-rocr-rpath6.2.2 +Version: 18.63.0.60301-48~20.04 +Depends: rocm-core-rpath6.3.1, hsa-rocr-rpath6.3.1 Recommends: gcc, g++ Priority: optional Section: devel -Filename: pool/main/o/openmp-extras-runtime-rpath6.2.2/openmp-extras-runtime-rpath6.2.2_18.62.0.60202-116~20.04_amd64.deb -Size: 98105056 -SHA256: c9af80c29400dbb945a529428d077b3ffd0d87370574515623689a712193afe7 -SHA1: a2bc447966e328aafb745bd327f7c05be761e1a7 -MD5sum: 7158e4f665c4c22ddf691f360f7bcd3f +Filename: pool/main/o/openmp-extras-runtime-rpath6.3.1/openmp-extras-runtime-rpath6.3.1_18.63.0.60301-48~20.04_amd64.deb +Size: 98354584 +SHA256: 6a14c37213ccbe41eee554fe346a82fe178f676b2a4816e66eaeba0409af65a4 +SHA1: 82d142590dd767c6bd558ac47344f8bf55397399 +MD5sum: 3c630de6344499a7e2d312bbd3caee1d Description: OpenMP Extras provides openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. + openmp-extras 18.63.0.60301 is based on LLVM 17 and is used for offloading to Radeon GPUs. -Package: openmp-extras-runtime6.2.2 +Package: openmp-extras-runtime6.3.1 Architecture: amd64 Maintainer: Openmp Extras Support -Version: 18.62.0.60202-116~20.04 -Depends: rocm-core6.2.2, hsa-rocr6.2.2 +Version: 18.63.0.60301-48~20.04 +Depends: rocm-core6.3.1, hsa-rocr6.3.1 Recommends: gcc, g++ Priority: optional Section: devel -Filename: pool/main/o/openmp-extras-runtime6.2.2/openmp-extras-runtime6.2.2_18.62.0.60202-116~20.04_amd64.deb -Size: 98102096 -SHA256: baefdfef254e8e97b2f6a3c25c79292f8240d33e73eb094a81c565d465108a62 -SHA1: 39a9d63c3b77440e629e4bc8012d8be2b2e31410 -MD5sum: 65d6ef5909a4a1eb39f422e97b16aee9 +Filename: pool/main/o/openmp-extras-runtime6.3.1/openmp-extras-runtime6.3.1_18.63.0.60301-48~20.04_amd64.deb +Size: 98342940 +SHA256: 96ee97a53af91b653c2edcd47fd5aa60c393cebafdea1fb90fbc2a21c139bdf0 +SHA1: e5afe275984f3543c48769f6fe8cb16eb476f0ab +MD5sum: 02b2fe4c2aa85981ee2a23623c140991 Description: OpenMP Extras provides openmp and flang libraries. - openmp-extras 18.62.0.60202 is based on LLVM 17 and is used for offloading to Radeon GPUs. + openmp-extras 18.63.0.60301 is based on LLVM 17 and is used for offloading to Radeon GPUs. Package: rccl Architecture: amd64 -Depends: hip-runtime-amd (>= 4.5.0), rocm-smi-lib (>= 4.0.0), rocm-core, libc6 (>= 2.17), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) +Depends: hip-runtime-amd (>= 4.5.0), rocm-smi-lib (>= 4.0.0), rocm-core, libc6 (>= 2.17), libgcc-s1 (>= 3.0), libstdc++6 (>= 9), rocprofiler-register (= 0.4.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rccl/rccl_2.20.5.60202-116~20.04_amd64.deb -Size: 62974104 -SHA256: f18137e0b5eb771a199e66873748a25baa9c8e12c64dd292b586b3e682cf0899 -SHA1: a248c2239d85fbd8da33b4eb6bd374129daee87a -MD5sum: 33ae8846038601cbe17fd68c2deb8c04 +Filename: pool/main/r/rccl/rccl_2.21.5.60301-48~20.04_amd64.deb +Size: 53814464 +SHA256: 5a220423d8b6f9f5a842b172ebb2288aa7fae6bb53762fb3913abfa364875cd7 +SHA1: 10a8b8ceb71a0f2ac9f59b50ea7521e49abc30dd +MD5sum: f963aa8fbd02c3ece9a13c9a31d37010 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Recommends: rccl-dev (>=2.20.5.60202) -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1895293 - -Package: rccl-asan -Architecture: amd64 -Depends: hip-runtime-amd-asan (>= 4.5.0), rocm-smi-lib (>= 4.0.0), rocm-core-asan, libc6 (>= 2.10), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) -Priority: optional -Section: devel -Filename: pool/main/r/rccl-asan/rccl-asan_2.20.5.60202-116~20.04_amd64.deb -Size: 122407786 -SHA256: e38a6bf8d37b92e5d5f29d8df1b6ba843aac1b20b20b40170afc43c1c37edabe -SHA1: cb44b7565966e3f0b280bfa742f0476a0634c76c -MD5sum: 43ae0a64244ff52d9f85dfd5704a559b -Description: ROCm Communication Collectives Library - ROCm Communication Collectives Library - Optimized primitives for collective multi-GPU communication -Maintainer: RCCL Maintainer -Recommends: rccl-asan-dev (>=2.20.5.60202) -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1124607 - -Package: rccl-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 40bba56f353372f3488a1656384691f0edbb645b -Depends: rccl-asan (= 2.20.5.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rccl-asan-dbgsym/rccl-asan-dbgsym_2.20.5.60202-116~20.04_amd64.deb -Size: 2345962 -SHA256: e042c8aab01c4b89f56f443482ad9e58615a28499bf8e4323d6917b4dc206975 -SHA1: 86bd324ade9fb5755f6e2b1f985fb65b46799f5d -MD5sum: 98baded1618b3f35e9473b99ff377887 -Description: debug symbols for rccl-asan -Maintainer: RCCL Maintainer -Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 2758 - -Package: rccl-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 40bba56f353372f3488a1656384691f0edbb645b -Depends: rccl-asan-rpath6.2.2 (= 2.20.5.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rccl-asan-dbgsym-rpath6.2.2/rccl-asan-dbgsym-rpath6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 2346176 -SHA256: 8aaeacef465211185d61888fe009475d13ea684de707567b43b3a9e8b1f7ad0a -SHA1: 2b01c53128b177388bf168d40dbd3d4470083a71 -MD5sum: a596d4fe6f6f5e1dd0f1cd36c90fb643 -Description: debug symbols for rccl-asan -Maintainer: RCCL Maintainer -Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 2758 - -Package: rccl-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 40bba56f353372f3488a1656384691f0edbb645b -Depends: rccl-asan6.2.2 (= 2.20.5.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rccl-asan-dbgsym6.2.2/rccl-asan-dbgsym6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 2346152 -SHA256: 5eb461adca674e54cbcd8baf9e3d463165a06d48c60050ca3d1fc0916104d709 -SHA1: 64029049a71db1e8e7f102b95dd338f85d940ab8 -MD5sum: d3052197f319b632df547a493fd10474 -Description: debug symbols for rccl-asan -Maintainer: RCCL Maintainer -Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 2758 - -Package: rccl-asan-rpath6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan-rpath6.2.2 (>= 4.5.0), rocm-smi-lib (>= 4.0.0), rocm-core-asan-rpath6.2.2, libc6 (>= 2.10), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) -Priority: optional -Section: devel -Filename: pool/main/r/rccl-asan-rpath6.2.2/rccl-asan-rpath6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 122407516 -SHA256: d776dcdd1d0b7cc2bb71bb117471f4fd2db62e784220ea7d368b4e05b3e5234d -SHA1: d1522306c57b3f44bbca4e2329450ded99e76f3c -MD5sum: 89e9f6fe88a3ec63d9296c826d80e213 -Description: ROCm Communication Collectives Library - ROCm Communication Collectives Library - Optimized primitives for collective multi-GPU communication -Maintainer: RCCL Maintainer -Recommends: rccl-asan-dev (>=2.20.5.60202) -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1124607 - -Package: rccl-asan6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan6.2.2 (>= 4.5.0), rocm-smi-lib (>= 4.0.0), rocm-core-asan6.2.2, libc6 (>= 2.10), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) -Priority: optional -Section: devel -Filename: pool/main/r/rccl-asan6.2.2/rccl-asan6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 122407664 -SHA256: 5fa8d3d3d3eb1cc3b94dda78dc43e9391eead2eaa7c8c533350247664d0c6c4f -SHA1: c2cad26feb45e09d544666ff85278b0e052b4f3e -MD5sum: 72e1bedf70828e66de62f63bb47163dc -Description: ROCm Communication Collectives Library - ROCm Communication Collectives Library - Optimized primitives for collective multi-GPU communication -Maintainer: RCCL Maintainer -Recommends: rccl-asan-dev (>=2.20.5.60202) -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1124607 +Recommends: rccl-dev (>=2.21.5.60301) +Version: 2.21.5.60301-48~20.04 +Installed-Size: 1489700 Package: rccl-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 3959a90132c3a2abb08ab8e0c10129bb6df7a8c6 -Depends: rccl (= 2.20.5.60202-116~20.04) +Build-Ids: d4c2dbb88f8747fda464733b08bb9d201cddcc7a +Depends: rccl (= 2.21.5.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rccl-dbgsym/rccl-dbgsym_2.20.5.60202-116~20.04_amd64.deb -Size: 1250920 -SHA256: f38dbfea41d27a7a2639de72670bdebfb8ca59c710e6a2fade95699b05979b9e -SHA1: 2326a60909e727127f5f333cedd9e37d17372fa5 -MD5sum: 5908791b26480228803f12371e603949 +Filename: pool/main/r/rccl-dbgsym/rccl-dbgsym_2.21.5.60301-48~20.04_amd64.deb +Size: 2542524 +SHA256: dfcbf83801ab38ce1513dddd1b220e957194da0add2022afdb2389be7bf492b9 +SHA1: 1db244784d0b90039975f4edb1e60297e31677e8 +MD5sum: 5c93447ac3639214c93a302ef0665e68 Description: debug symbols for rccl Maintainer: RCCL Maintainer Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 6346 - -Package: rccl-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3959a90132c3a2abb08ab8e0c10129bb6df7a8c6 -Depends: rccl-rpath6.2.2 (= 2.20.5.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rccl-dbgsym-rpath6.2.2/rccl-dbgsym-rpath6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 1251320 -SHA256: 7bcfddbe68c39658080d8dd85cba971e20fa5f0cce2d8f1772e177c413d3266f -SHA1: 1685001eb40bc2a486f1c8a4f8e7fd47e86796e1 -MD5sum: 1f89c4429116cb51ba2cc8f9b200693b -Description: debug symbols for rccl -Maintainer: RCCL Maintainer -Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 6346 - -Package: rccl-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3959a90132c3a2abb08ab8e0c10129bb6df7a8c6 -Depends: rccl6.2.2 (= 2.20.5.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rccl-dbgsym6.2.2/rccl-dbgsym6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 1251468 -SHA256: 7f6ece55d66e8e19fdf6a663aae7ad6828ab304c7bbfc8d570d96f847dd2f797 -SHA1: 0ce9b2ee176c26105fd0cbddf946f66a81c125d0 -MD5sum: bced38f7b736f473a7bb780052f5dc64 -Description: debug symbols for rccl -Maintainer: RCCL Maintainer -Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 6346 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 13064 Package: rccl-dev Architecture: amd64 -Depends: rccl (>= 2.20.5.60202) +Depends: rccl (>= 2.21.5.60301) Priority: optional Section: devel -Filename: pool/main/r/rccl-dev/rccl-dev_2.20.5.60202-116~20.04_amd64.deb -Size: 160254 -SHA256: ea92d0cc461015c83657f01558f3639127b60fde546d1b56472f846af1d4bd47 -SHA1: 4152cbafa452af38a450689bc497fa9d696d1f78 -MD5sum: 07a26ca91e47fec18eee05c1b1f5f609 +Filename: pool/main/r/rccl-dev/rccl-dev_2.21.5.60301-48~20.04_amd64.deb +Size: 107456 +SHA256: 27deb939a6e6ef4df1e08d361709e55b8868afd5eebc848b70884475961ef681 +SHA1: 417663f97d39f6e44e22f1a14455cd114517c457 +MD5sum: 0237822fe652e153a25394f0ebea55d6 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Version: 2.20.5.60202-116~20.04 -Installed-Size: 17430 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 12364 -Package: rccl-dev-rpath6.2.2 +Package: rccl-dev-rpath6.3.1 Architecture: amd64 -Depends: rccl-rpath6.2.2 (>= 2.20.5.60202) +Depends: rccl-rpath6.3.1 (>= 2.21.5.60301) Priority: optional Section: devel -Filename: pool/main/r/rccl-dev-rpath6.2.2/rccl-dev-rpath6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 160248 -SHA256: 1e536ccea06c1c8049e01ea7108e656971065e0b0ecdfb1f028779ba910953bb -SHA1: 4ce5826eaad64e1d8c1d6fe85e7078e00417c0de -MD5sum: 65997557c3815a50e301d9933eaeb4ba +Filename: pool/main/r/rccl-dev-rpath6.3.1/rccl-dev-rpath6.3.1_2.21.5.60301-48~20.04_amd64.deb +Size: 107496 +SHA256: 38d7ccf041326359de7f13b2cc1cce6aa9a42bb90cef9463f69b5577a1128d46 +SHA1: 15b75b84b82794e069aea44e370753adfd249561 +MD5sum: 08b32b949eeb691d685012ce50a35e0c Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Version: 2.20.5.60202-116~20.04 -Installed-Size: 17430 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 12364 -Package: rccl-dev6.2.2 +Package: rccl-dev6.3.1 Architecture: amd64 -Depends: rccl6.2.2 (>= 2.20.5.60202) +Depends: rccl6.3.1 (>= 2.21.5.60301) Priority: optional Section: devel -Filename: pool/main/r/rccl-dev6.2.2/rccl-dev6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 160200 -SHA256: 909087b53bfebc7ee844d4b573d03e6a9b36061cd2565e0edd8509b60db35c1b -SHA1: 8b738d5f73ff586dbb4c89cc1a03b5d1f9dddb07 -MD5sum: 4b7fbbc21fb31afff1c1bf14ee3f22cc +Filename: pool/main/r/rccl-dev6.3.1/rccl-dev6.3.1_2.21.5.60301-48~20.04_amd64.deb +Size: 107572 +SHA256: 899ccdbb1364bde5c5ba85ee4995e9ef04bd786bfacd3985b475f6983cb93519 +SHA1: c02ada857651ab1a70395cf7ddc829c19c5a0b6c +MD5sum: f3921f08fe66b179201c935b13535516 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Version: 2.20.5.60202-116~20.04 -Installed-Size: 17430 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 12364 -Package: rccl-rdma-sharp-plugins -Version: 1.0.60202-116~20.04 +Package: rccl-rpath6.3.1 Architecture: amd64 -Maintainer: rccl-maintainer@amd.com -Installed-Size: 334 -Depends: libc6 (>= 2.14), libibverbs1 (>= 28), sharp, ucx -Homepage: http://www.amd.com -Priority: extra -Section: libs -Filename: pool/main/r/rccl-rdma-sharp-plugins/rccl-rdma-sharp-plugins_1.0.60202-116~20.04_amd64.deb -Size: 111336 -SHA256: 72d8dc7f606023f27236a8bee22bb3ce104ebbda358652dece938b2cb9026f8d -SHA1: 3a230b10ba9414a0eb8afcad1d925cd451bbdd76 -MD5sum: dfb0fa82077abbcb45ea76f9548840cc -Description: RDMA and SHARP plugin for NCCL - Plugin enabled RDMA and switch collectives(SHARP) in RCCL - -Package: rccl-rdma-sharp-plugins-rpath6.2.2 -Version: 1.0.60202-116~20.04 -Architecture: amd64 -Maintainer: rccl-maintainer@amd.com -Installed-Size: 334 -Depends: libc6 (>= 2.14), libibverbs1 (>= 28), sharp, ucx -Homepage: http://www.amd.com -Priority: extra -Section: libs -Filename: pool/main/r/rccl-rdma-sharp-plugins-rpath6.2.2/rccl-rdma-sharp-plugins-rpath6.2.2_1.0.60202-116~20.04_amd64.deb -Size: 69268 -SHA256: ab15e21746922cce830b571b33219bde150c67ade5837c12341113adfb342419 -SHA1: 6ce3fbe22547552ce3eefa666ee998976b8919e0 -MD5sum: 8c89bcb7df03cc704ed43aa9dc79761e -Description: RDMA and SHARP plugin for NCCL - Plugin enabled RDMA and switch collectives(SHARP) in RCCL - -Package: rccl-rdma-sharp-plugins6.2.2 -Version: 1.0.60202-116~20.04 -Architecture: amd64 -Maintainer: rccl-maintainer@amd.com -Installed-Size: 334 -Depends: libc6 (>= 2.14), libibverbs1 (>= 28), sharp, ucx -Homepage: http://www.amd.com -Priority: extra -Section: libs -Filename: pool/main/r/rccl-rdma-sharp-plugins6.2.2/rccl-rdma-sharp-plugins6.2.2_1.0.60202-116~20.04_amd64.deb -Size: 69104 -SHA256: f0410d6699bfcf8f2feba53fa89c9a93136323cb63853ffccdff885b554fbf57 -SHA1: bca493d9d446e3d17b37b72bf337c10f30eae330 -MD5sum: a2c8cf570f171d974eccc1b936e91f4d -Description: RDMA and SHARP plugin for NCCL - Plugin enabled RDMA and switch collectives(SHARP) in RCCL - -Package: rccl-rpath6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-rpath6.2.2 (>= 4.5.0), rocm-smi-lib-rpath6.2.2 (>= 4.0.0), rocm-core-rpath6.2.2, libc6 (>= 2.17), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) +Depends: hip-runtime-amd-rpath6.3.1 (>= 4.5.0), rocm-smi-lib-rpath6.3.1 (>= 4.0.0), rocm-core-rpath6.3.1, libc6 (>= 2.17), libgcc-s1 (>= 3.0), libstdc++6 (>= 9), rocprofiler-register-rpath6.3.1 (= 0.4.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rccl-rpath6.2.2/rccl-rpath6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 62974136 -SHA256: 9b42c26cac56ef0303dad89cbf766834d0bbb5301596a210a205180084cc3681 -SHA1: 2d606e9bdf4c5b79ce4daa76202af54b55d91c34 -MD5sum: f00384e4f3ce94ea5aa0e2cc2d44699b +Filename: pool/main/r/rccl-rpath6.3.1/rccl-rpath6.3.1_2.21.5.60301-48~20.04_amd64.deb +Size: 53815412 +SHA256: d67999397be3963d7edf86844a4d38882fd0afdb4e6477552acbc1abdb99a161 +SHA1: 8e7bb5f85129137c89f4c5496736d2ae584218af +MD5sum: 4c91d4e136edcab1726e087e71386f03 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Recommends: rccl-dev-rpath6.2.2 (>=2.20.5.60202) -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1895293 +Recommends: rccl-dev-rpath6.3.1 (>=2.21.5.60301) +Version: 2.21.5.60301-48~20.04 +Installed-Size: 1489700 Package: rccl-unittests Architecture: amd64 -Depends: rccl (>= 2.20.5.60202), libc6 (>= 2.14), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) +Depends: rccl (>= 2.21.5.60301), libc6 (>= 2.14), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) Priority: optional Section: devel -Filename: pool/main/r/rccl-unittests/rccl-unittests_2.20.5.60202-116~20.04_amd64.deb -Size: 354106 -SHA256: 50a452e52525a022c809472f87abde88b61b399c04eaf62129c7792d9ef9bf72 -SHA1: b84fe605dcd8252dbc24dd109f63b552abfc2091 -MD5sum: 7b1424223354a0ca70f73cb98a163362 +Filename: pool/main/r/rccl-unittests/rccl-unittests_2.21.5.60301-48~20.04_amd64.deb +Size: 358358 +SHA256: 750cfd87a4ee5509f768c490be52f5e93ac8a2464e4ab4d0e39cc75fa2e90a82 +SHA1: d15609414bfa52898e11fc2efe703d9af4e05479 +MD5sum: 761f326a099e9f5659a46edb111edaa3 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1619 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 1637 Package: rccl-unittests-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 171c4b54ebac1e09e26d86c29bed9a52f2ae2b86 -Depends: rccl-unittests (= 2.20.5.60202-116~20.04) +Build-Ids: 730f5b9a885f76999bc185ddcf0e4ceaa23e0f3e +Depends: rccl-unittests (= 2.21.5.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rccl-unittests-dbgsym/rccl-unittests-dbgsym_2.20.5.60202-116~20.04_amd64.deb -Size: 856524 -SHA256: 70be890691aa7079237c4ea648686e2140759cd0758737774711bbb33045b7bd -SHA1: a65320bfe130bcca169b01b768aab88a76b5cd5b -MD5sum: 2ad07554eab3ffa006d4ec81f2b69bac +Filename: pool/main/r/rccl-unittests-dbgsym/rccl-unittests-dbgsym_2.21.5.60301-48~20.04_amd64.deb +Size: 873404 +SHA256: b073374fb53f6cb0bb8c7884dbf443f3d0b4aa42779b2c190b8d37fcf169ea77 +SHA1: 6ffba31b46a34400a6b72c296f261f4e96f86192 +MD5sum: ae6d7f946afb39a11717c2dbc67a00a3 Description: debug symbols for rccl-unittests Maintainer: RCCL Maintainer Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 4748 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 4836 -Package: rccl-unittests-dbgsym-rpath6.2.2 +Package: rccl-unittests-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 171c4b54ebac1e09e26d86c29bed9a52f2ae2b86 -Depends: rccl-unittests-rpath6.2.2 (= 2.20.5.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rccl-unittests-dbgsym-rpath6.2.2/rccl-unittests-dbgsym-rpath6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 856436 -SHA256: 5aa95fa28c6a38e357194e453d6d8c8e26ae5e7de3ffc82a613830953d61104c -SHA1: ecb277bb12dc6c22d3f2f537962aac8af1378838 -MD5sum: 67cbf3fdf580730795b8de0759381de7 -Description: debug symbols for rccl-unittests -Maintainer: RCCL Maintainer -Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 4748 - -Package: rccl-unittests-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 171c4b54ebac1e09e26d86c29bed9a52f2ae2b86 -Depends: rccl-unittests6.2.2 (= 2.20.5.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rccl-unittests-dbgsym6.2.2/rccl-unittests-dbgsym6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 857164 -SHA256: 6922156e4d3fe49447e6642f5a7d6cbf7e5ffe3b3d5f89accb35db797ba8ddaf -SHA1: 5a6f5041abb64ee2c7a5c402fc8d69f07f8dc882 -MD5sum: 3d47c99b45563ddfc1b49ec8b43353a6 -Description: debug symbols for rccl-unittests -Maintainer: RCCL Maintainer -Package-Type: ddeb -Version: 2.20.5.60202-116~20.04 -Installed-Size: 4748 - -Package: rccl-unittests-rpath6.2.2 -Architecture: amd64 -Depends: rccl-rpath6.2.2 (>= 2.20.5.60202), libc6 (>= 2.14), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) +Depends: rccl-rpath6.3.1 (>= 2.21.5.60301), libc6 (>= 2.14), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) Priority: optional Section: devel -Filename: pool/main/r/rccl-unittests-rpath6.2.2/rccl-unittests-rpath6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 352716 -SHA256: 8dd87ab480ec51fcd2996524c5ca1827005c701611009f8c737c07ef4838c140 -SHA1: 28325aa048eee30b6f9c447915621710b36d5db8 -MD5sum: 7bf1715deab07540c444fc38f781442f +Filename: pool/main/r/rccl-unittests-rpath6.3.1/rccl-unittests-rpath6.3.1_2.21.5.60301-48~20.04_amd64.deb +Size: 357928 +SHA256: ce7057553c04e0458db2723cc568377a6d800fcba473bfa3c0df02b09fb84ec7 +SHA1: 84948ce748272c63abb0fdec36a8ff02741c24ad +MD5sum: ac95aeddb8b4d010a483afdea973e617 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1619 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 1637 -Package: rccl-unittests6.2.2 +Package: rccl-unittests6.3.1 Architecture: amd64 -Depends: rccl6.2.2 (>= 2.20.5.60202), libc6 (>= 2.14), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) +Depends: rccl6.3.1 (>= 2.21.5.60301), libc6 (>= 2.14), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) Priority: optional Section: devel -Filename: pool/main/r/rccl-unittests6.2.2/rccl-unittests6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 352632 -SHA256: ee45f79635898bc6a17e78e5801265293db3b896026b1d794c664cdd4990c841 -SHA1: 257083fd7326a1113e79cf06d5c2ea8f59e44155 -MD5sum: 546e1a8d28a00125fe232ba150081792 +Filename: pool/main/r/rccl-unittests6.3.1/rccl-unittests6.3.1_2.21.5.60301-48~20.04_amd64.deb +Size: 358344 +SHA256: 1eaf55698f9b70f5ba375373272179ffe17bc4b89b7eea111dc48d2728409252 +SHA1: 4ed448e7a08a0c649b2334320c98ea33233fd256 +MD5sum: d34f72b810b05a46747909db8faa08d9 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1619 +Version: 2.21.5.60301-48~20.04 +Installed-Size: 1637 -Package: rccl6.2.2 +Package: rccl6.3.1 Architecture: amd64 -Depends: hip-runtime-amd6.2.2 (>= 4.5.0), rocm-smi-lib6.2.2 (>= 4.0.0), rocm-core6.2.2, libc6 (>= 2.17), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) +Depends: hip-runtime-amd6.3.1 (>= 4.5.0), rocm-smi-lib6.3.1 (>= 4.0.0), rocm-core6.3.1, libc6 (>= 2.17), libgcc-s1 (>= 3.0), libstdc++6 (>= 9), rocprofiler-register6.3.1 (= 0.4.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rccl6.2.2/rccl6.2.2_2.20.5.60202-116~20.04_amd64.deb -Size: 62974816 -SHA256: 967cae620d293734f2f8c19d87e2906f99374fe0a7899284320f38e8e3a2f558 -SHA1: 1343a3e818a98290edd965ac96a29ef9a3fefcf4 -MD5sum: 2e7f38b0d0aa0f32ba3752219b8ebdc9 +Filename: pool/main/r/rccl6.3.1/rccl6.3.1_2.21.5.60301-48~20.04_amd64.deb +Size: 53814612 +SHA256: 0e234d22525004ceb8f32bfa4f4a3a72d9846c1e57e36b1e34f57f4193b4569b +SHA1: 785574151c2d385cd4a8aa5fe6e4560490b8dacd +MD5sum: 0ca02b2a23116729eb4aece5cf314062 Description: ROCm Communication Collectives Library ROCm Communication Collectives Library Optimized primitives for collective multi-GPU communication Maintainer: RCCL Maintainer -Recommends: rccl-dev6.2.2 (>=2.20.5.60202) -Version: 2.20.5.60202-116~20.04 -Installed-Size: 1895293 +Recommends: rccl-dev6.3.1 (>=2.21.5.60301) +Version: 2.21.5.60301-48~20.04 +Installed-Size: 1489700 Package: rdc Architecture: amd64 Depends: amd-smi-lib, libc6 Priority: optional Section: devel -Filename: pool/main/r/rdc/rdc_0.3.0.60202-116~20.04_amd64.deb -Size: 17998194 -SHA256: 6a708d3ceda8a37569f3659c26324b7f3be5bb25ccc428e9f121e12d317786cc -SHA1: d0f02494c33f209b8e7cb8c47e7708e7674ac422 -MD5sum: 6075c3e0d667f0c75908d3911d0d5bd5 +Filename: pool/main/r/rdc/rdc_0.3.0.60301-48~20.04_amd64.deb +Size: 18020422 +SHA256: e0fdd15865b1492382cef2f1223f8f5986944133fbe15e7c0c18bb03a30ff33e +SHA1: 6eab25df43fcff4339f15370f79814b90d6df6aa +MD5sum: c24fbd8b499e040ededd78257edc1a8d Description: Radeon Data Center Tools Homepage: https://github.com/RadeonOpenCompute/rdc Maintainer: RDC Support -Version: 0.3.0.60202-116~20.04 -Installed-Size: 135988 +Version: 0.3.0.60301-48~20.04 +Installed-Size: 136232 -Package: rdc-rpath6.2.2 +Package: rdc-rpath6.3.1 Architecture: amd64 -Depends: amd-smi-lib-rpath6.2.2, libc6 +Depends: amd-smi-lib-rpath6.3.1, libc6 Priority: optional Section: devel -Filename: pool/main/r/rdc-rpath6.2.2/rdc-rpath6.2.2_0.3.0.60202-116~20.04_amd64.deb -Size: 11338344 -SHA256: bcdf783e6018e1415d0bf71c3e15a9795c7eb1d58481ce6a3908866fde37de30 -SHA1: c21b79e058894018e3d6b7d1b9229818402b7228 -MD5sum: 7ef809ccc6a25ee3691e12bd7948dc44 +Filename: pool/main/r/rdc-rpath6.3.1/rdc-rpath6.3.1_0.3.0.60301-48~20.04_amd64.deb +Size: 11344792 +SHA256: e1976a42de31462e18f9fda5c5f6b069684e8f03e115f7e3360485d97435eb48 +SHA1: b1652b308e4fb5ce7c3aa38d049987a841967e7f +MD5sum: 0320e7b7167139a201203f1b9d0be9b0 Description: Radeon Data Center Tools Homepage: https://github.com/RadeonOpenCompute/rdc Maintainer: RDC Support -Version: 0.3.0.60202-116~20.04 -Installed-Size: 135988 +Version: 0.3.0.60301-48~20.04 +Installed-Size: 136232 -Package: rdc6.2.2 +Package: rdc6.3.1 Architecture: amd64 -Depends: amd-smi-lib6.2.2, libc6 +Depends: amd-smi-lib6.3.1, libc6 Priority: optional Section: devel -Filename: pool/main/r/rdc6.2.2/rdc6.2.2_0.3.0.60202-116~20.04_amd64.deb -Size: 11335204 -SHA256: e7302a95dc8ca04c7d3373c62d38ee2899a668fac5989ee6f17d5dc611134423 -SHA1: 4e76a982870157ef1afbf05c23b296bba9fa4813 -MD5sum: 404da910a9c4b97dfacba6a2bb483e1c +Filename: pool/main/r/rdc6.3.1/rdc6.3.1_0.3.0.60301-48~20.04_amd64.deb +Size: 11345332 +SHA256: 4ef60b4aeab777990bfc445bcc6d19ee48b8e219f18dbb2acc4922f5d78a6549 +SHA1: 045dd857cf84d35649a7c4f9946dbcd512439625 +MD5sum: b1d02de870e4aa6c2f338976c50930db Description: Radeon Data Center Tools Homepage: https://github.com/RadeonOpenCompute/rdc Maintainer: RDC Support -Version: 0.3.0.60202-116~20.04 -Installed-Size: 135988 +Version: 0.3.0.60301-48~20.04 +Installed-Size: 136232 Package: rocal Architecture: amd64 -Depends: rpp, mivisionx, rocdecode +Depends: rpp, mivisionx Priority: optional Section: devel -Filename: pool/main/r/rocal/rocal_2.0.0.60202-116~20.04_amd64.deb -Size: 1394762 -SHA256: 5b3b2fd0892bde79e8f1f1aad74cf118d09bc7a55d5a98e821dd29dc5ade1ad4 -SHA1: bdef20bbeb4de97808c3f689f15d23dbc72f5006 -MD5sum: 4868870f2cc60c2acb875cb3e3346442 +Filename: pool/main/r/rocal/rocal_2.1.0.60301-48~20.04_amd64.deb +Size: 1445810 +SHA256: 530404533680c06fa8a385440482f6a06f57d2bc2a07ebc6c5fd5c419fb80a2c +SHA1: 711f3133366c3115910a78c630815db64e1fc5b2 +MD5sum: 0414c80faab1aa3b7a36eb9ff18c8a41 Description: AMD rocAL is a comprehensive augmentation library. rocAL runtime package provides rocAL libraries and license.txt Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 8513 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 8705 Package: rocal-dev Architecture: amd64 -Depends: rocal, rpp-dev, mivisionx-dev, liblmdb-dev, libprotobuf-dev, rocdecode-dev +Depends: rocal, rpp-dev, mivisionx-dev, liblmdb-dev, libprotobuf-dev Priority: optional Section: devel -Filename: pool/main/r/rocal-dev/rocal-dev_2.0.0.60202-116~20.04_amd64.deb -Size: 22748 -SHA256: 373f510cf4a2325abba3b31801673cda614bd41be3b75b4d80359bb65afeb11f -SHA1: dcacc7a112930bd80518e4906a5c47532b3e578a -MD5sum: 6d15c03343baa4501813ab2eee26a5be +Filename: pool/main/r/rocal-dev/rocal-dev_2.1.0.60301-48~20.04_amd64.deb +Size: 22930 +SHA256: b23e3dc4c7707488621d1a7cb5004366af36bc1ec035d8efef4199ac2f242068 +SHA1: dac7385dd96c5395610c7f843804429ab8a83e99 +MD5sum: 0331dbae22dd2559dc8534e3e5f08da2 Description: AMD rocAL is a comprehensive augmentation library. rocAL develop package provides rocAL libraries, header files, samples, and license.txt Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 240 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 239 -Package: rocal-dev-rpath6.2.2 +Package: rocal-dev-rpath6.3.1 Architecture: amd64 -Depends: rocal-rpath6.2.2, rpp-dev-rpath6.2.2, mivisionx-dev-rpath6.2.2, liblmdb-dev, libprotobuf-dev, rocdecode-dev-rpath6.2.2 +Depends: rocal-rpath6.3.1, rpp-dev-rpath6.3.1, mivisionx-dev-rpath6.3.1, liblmdb-dev, libprotobuf-dev Priority: optional Section: devel -Filename: pool/main/r/rocal-dev-rpath6.2.2/rocal-dev-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 18800 -SHA256: 69e736f6574ee6d4ecd0998abf1c3f083060c58431e898df91484c25cb9b0f84 -SHA1: d034d5bfacace8a95475315586dced8abd29462c -MD5sum: 4945d9a819a552e53c74c91b4af4da33 +Filename: pool/main/r/rocal-dev-rpath6.3.1/rocal-dev-rpath6.3.1_2.1.0.60301-48~20.04_amd64.deb +Size: 18936 +SHA256: d1ad4f13b7fc121cc53def86d18fb0408aa5694c1d61db48513fbcd8e736f0d3 +SHA1: c246aa982fa913f23330abe50d86086ef7e5813e +MD5sum: 7fa6ad2e0af069ab64586be2815a9d45 Description: AMD rocAL is a comprehensive augmentation library. rocAL develop package provides rocAL libraries, header files, samples, and license.txt Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 240 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 239 -Package: rocal-dev6.2.2 +Package: rocal-dev6.3.1 Architecture: amd64 -Depends: rocal6.2.2, rpp-dev6.2.2, mivisionx-dev6.2.2, liblmdb-dev, libprotobuf-dev, rocdecode-dev6.2.2 +Depends: rocal6.3.1, rpp-dev6.3.1, mivisionx-dev6.3.1, liblmdb-dev, libprotobuf-dev Priority: optional Section: devel -Filename: pool/main/r/rocal-dev6.2.2/rocal-dev6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 18796 -SHA256: d2c886749567074390aa6321c401cf43480795ac32a8b79767b3ba1916cc3e2d -SHA1: 139a79e63e6b6167283694597c524da702367a63 -MD5sum: 7ac209b878cc3ad4cb2f08f2292e6bf5 +Filename: pool/main/r/rocal-dev6.3.1/rocal-dev6.3.1_2.1.0.60301-48~20.04_amd64.deb +Size: 18940 +SHA256: ccf0b9831ff8942dbb0891d4a676de449d13737b8d73f4eed3427db59ce1b663 +SHA1: d070c3d0bab87e981e82b02e115851aea12d0458 +MD5sum: c3b0e92c8f29e0e3a27f9f22d7d5fe29 Description: AMD rocAL is a comprehensive augmentation library. rocAL develop package provides rocAL libraries, header files, samples, and license.txt Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 240 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 239 -Package: rocal-rpath6.2.2 +Package: rocal-rpath6.3.1 Architecture: amd64 -Depends: rpp-rpath6.2.2, mivisionx-rpath6.2.2, rocdecode-rpath6.2.2 +Depends: rpp-rpath6.3.1, mivisionx-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocal-rpath6.2.2/rocal-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 965524 -SHA256: 5da411e326e1bf8c6cbf28e753527ea50ec7efd37f274c881bd2e555956f2bb3 -SHA1: f8fcb39fa5b255c28fb969f641e30c72c798f495 -MD5sum: 82eb06793b94afaf61e79ce45d0b4a23 +Filename: pool/main/r/rocal-rpath6.3.1/rocal-rpath6.3.1_2.1.0.60301-48~20.04_amd64.deb +Size: 1003156 +SHA256: abf8572985f2a3f9700f90712f2aca858897c47136528a8445016c3dc8772059 +SHA1: da04cc24d935c7b45b3309a4c77a62fd04884111 +MD5sum: b7061f42c85959fdc2cf7dd746096c5a Description: AMD rocAL is a comprehensive augmentation library. rocAL runtime package provides rocAL libraries and license.txt Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 8513 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 8705 Package: rocal-test Architecture: amd64 Depends: rocal-dev Priority: optional Section: devel -Filename: pool/main/r/rocal-test/rocal-test_2.0.0.60202-116~20.04_amd64.deb -Size: 32040300 -SHA256: 5f907bf5edd75a5c143af5c36e6fd1956f92072081d803222bccdc27d1865835 -SHA1: 6b625652d58d1fed5a155734fcd2cf944d8c3d36 -MD5sum: c223684bde69e5a91fbc2e906ea8560e +Filename: pool/main/r/rocal-test/rocal-test_2.1.0.60301-48~20.04_amd64.deb +Size: 32042686 +SHA256: 7878c5a3d5beb997564e746b5331c63652fcfdce2d096d73d34658c6eef096d1 +SHA1: 0c8566f6382370e2453beb19d5920a5dd5b0360d +MD5sum: c852ce3b7c55a2470b72a75999b2e40d Description: AMD rocAL is a comprehensive augmentation library. rocAL Test package provides rocAL Test Components Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 34931 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 34947 -Package: rocal-test-rpath6.2.2 +Package: rocal-test-rpath6.3.1 Architecture: amd64 -Depends: rocal-dev-rpath6.2.2 +Depends: rocal-dev-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocal-test-rpath6.2.2/rocal-test-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 31891192 -SHA256: 69f82fc9cbb9df1f0c29d9789cda22dd86c5f067edec150a0477db9e83fe0682 -SHA1: 5a6ab6e6776f4e3c42432a3b59b944a3d96e5377 -MD5sum: bbccc9bd7977fdfbc569dd494b0772fe +Filename: pool/main/r/rocal-test-rpath6.3.1/rocal-test-rpath6.3.1_2.1.0.60301-48~20.04_amd64.deb +Size: 31892404 +SHA256: 8bc9361d96c225c5ec3f998413a2987043b885e9b0e7846676e64f5c2e2c995a +SHA1: 0f5c483addfa4f67051a8daf2dcea1d00960aaf2 +MD5sum: 8196fd665e2c29a11c821ca426de730d Description: AMD rocAL is a comprehensive augmentation library. rocAL Test package provides rocAL Test Components Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 34931 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 34947 -Package: rocal-test6.2.2 +Package: rocal-test6.3.1 Architecture: amd64 -Depends: rocal-dev6.2.2 +Depends: rocal-dev6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocal-test6.2.2/rocal-test6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 31891312 -SHA256: 3984bbd0ec5704ac4f525331319b2393a6e0bde05cd185ff2adcb5ec270b54d5 -SHA1: 34698ca5d5e77294243108061be55f3eff2602a6 -MD5sum: be094622504ce6a89dd2e213766cd4fc +Filename: pool/main/r/rocal-test6.3.1/rocal-test6.3.1_2.1.0.60301-48~20.04_amd64.deb +Size: 31891784 +SHA256: 82038e22b74a6539cda107db501c72924b844fce9e8743c7e246a5c67c4db434 +SHA1: ba1ab947bf375e0ac6172ed72afbd2645d1f5f55 +MD5sum: 93156742257b6b581f21966fa831c66a Description: AMD rocAL is a comprehensive augmentation library. rocAL Test package provides rocAL Test Components Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 34931 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 34947 -Package: rocal6.2.2 +Package: rocal6.3.1 Architecture: amd64 -Depends: rpp6.2.2, mivisionx6.2.2, rocdecode6.2.2 +Depends: rpp6.3.1, mivisionx6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocal6.2.2/rocal6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 965164 -SHA256: 7102158796740fbf1a90759f9d1e92b9850d13507603b2e878f880f20a34aca3 -SHA1: 8aff9dce3fb43b979fec8c9df1aba6de06ea3c8c -MD5sum: 3a61331c666593dba978d2cb6be0568f +Filename: pool/main/r/rocal6.3.1/rocal6.3.1_2.1.0.60301-48~20.04_amd64.deb +Size: 1002848 +SHA256: 33bc7e2fa6f4faa2fca2d7497b3701c060ac16a3e806c3db1fd2f020ba3cc6cb +SHA1: 8f5735725d6cff4ab5994157e2b9a38c39bf146b +MD5sum: f99386b8a2e3e980039cccfe0be21dd1 Description: AMD rocAL is a comprehensive augmentation library. rocAL runtime package provides rocAL libraries and license.txt Homepage: https://github.com/ROCm/rocAL Maintainer: rocAL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 8513 +Version: 2.1.0.60301-48~20.04 +Installed-Size: 8705 Package: rocalution Architecture: amd64 Depends: hip-runtime-amd (>= 4.5.0), rocsparse (>= 1.12.10), rocblas (>= 2.22.0), rocrand (>= 2.1.0), rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocalution/rocalution_3.2.0.60202-116~20.04_amd64.deb -Size: 4577776 -SHA256: aa0c0707eccee21e4302cac062f868e7ee4add1b16b6647158a2b4ecdd323a4e -SHA1: 5d847e368d44403475e0769b39486e13f0fa441f -MD5sum: 415ead06113b40c53f3541272bcd48b5 +Filename: pool/main/r/rocalution/rocalution_3.2.1.60301-48~20.04_amd64.deb +Size: 4906554 +SHA256: 85faee81b157a588dca907f228f83ed6bdadad788f3784f9a656ca23bb90c9b3 +SHA1: eef08edfeb099642f8363bf307142d000e1a8d7c +MD5sum: 692c0ca545d16aeb1ebe87af5478c72d Description: ROCm library for sparse linear systems Maintainer: rocALUTION Maintainer -Recommends: rocalution-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 167584 - -Package: rocalution-asan -Architecture: amd64 -Depends: hip-runtime-amd-asan (>= 4.5.0), rocsparse (>= 1.12.10), rocblas (>= 2.22.0), rocrand (>= 2.1.0), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocalution-asan/rocalution-asan_3.2.0.60202-116~20.04_amd64.deb -Size: 6260026 -SHA256: 766a8561555fd04caa133f4c9778b49b29535444efc118da5410158f44a9a848 -SHA1: cf44df9a075537f4fbbd574c162e4cae34c017ce -MD5sum: beb5a1e784cdf2326cbb92d1c1005d1a -Description: ROCm library for sparse linear systems -Maintainer: rocALUTION Maintainer -Recommends: rocalution-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 197608 - -Package: rocalution-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: fd383b5c1a0cbc9337210935bb6750ca9a4ff63a fa9fd32fa46261960435eecb759f061a9a3405ec -Depends: rocalution-asan (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocalution-asan-dbgsym/rocalution-asan-dbgsym_3.2.0.60202-116~20.04_amd64.deb -Size: 10878958 -SHA256: db6af28ff7be46771da37b82741f2af23e1ce89b778a5dd686acd11717a85f71 -SHA1: a76e399889657d77eb2d4454c7621846603b1108 -MD5sum: 067b034a583b9c129d2deb744164cbd2 -Description: debug symbols for rocalution-asan -Maintainer: rocALUTION Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 15216 - -Package: rocalution-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: fd383b5c1a0cbc9337210935bb6750ca9a4ff63a fa9fd32fa46261960435eecb759f061a9a3405ec -Depends: rocalution-asan-rpath6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocalution-asan-dbgsym-rpath6.2.2/rocalution-asan-dbgsym-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 10880400 -SHA256: a8b6743bf7de038975f7eb6dbe8077610008063ff78772075c3cbe1203ad4f6d -SHA1: 07bca115ed05e6063347e75ebd2cfe7696a284a1 -MD5sum: c6adf028a1da033be3589661f864a98e -Description: debug symbols for rocalution-asan -Maintainer: rocALUTION Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 15216 - -Package: rocalution-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: fd383b5c1a0cbc9337210935bb6750ca9a4ff63a fa9fd32fa46261960435eecb759f061a9a3405ec -Depends: rocalution-asan6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocalution-asan-dbgsym6.2.2/rocalution-asan-dbgsym6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 10878992 -SHA256: 2e0c29755de0cada06d316e220f60a4f6fa9c5c4af69d829a1a90f467a25c80a -SHA1: 23c165e8931916060c91a32e90eb0ac9daad0cd6 -MD5sum: bcf69b90ef159cb78167ece8f47482ea -Description: debug symbols for rocalution-asan -Maintainer: rocALUTION Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 15216 - -Package: rocalution-asan-rpath6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan-rpath6.2.2 (>= 4.5.0), rocsparse (>= 1.12.10), rocblas (>= 2.22.0), rocrand (>= 2.1.0), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocalution-asan-rpath6.2.2/rocalution-asan-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 6259544 -SHA256: 645c7e383deeaea1a4092d4adafb2dd4f5ed66e2788ac9cf6bfdd981b8d4acc0 -SHA1: fe86b3566dc5028d89d05242d36337e9b1ba1add -MD5sum: a9de506c930a2df5594b50720b0e1dee -Description: ROCm library for sparse linear systems -Maintainer: rocALUTION Maintainer -Recommends: rocalution-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 197608 - -Package: rocalution-asan6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan6.2.2 (>= 4.5.0), rocsparse (>= 1.12.10), rocblas (>= 2.22.0), rocrand (>= 2.1.0), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocalution-asan6.2.2/rocalution-asan6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 6261016 -SHA256: 81bc4b6a28d6c0fe56f6b45ccad525a530d63cda703764e9dd16a13fde375339 -SHA1: 416a39c52b409824419b4fd1abbba9f55ad17ef6 -MD5sum: c15222fafe0a02d28689450a0e73ff1a -Description: ROCm library for sparse linear systems -Maintainer: rocALUTION Maintainer -Recommends: rocalution-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 197608 +Recommends: rocalution-dev (>=3.2.1.60301) +Version: 3.2.1.60301-48~20.04 +Installed-Size: 195273 Package: rocalution-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: f8d8e3034d496581278547e8c554de953478d502 d7369600dd69d60c780e7b7980a23559e2089cc9 -Depends: rocalution (= 3.2.0.60202-116~20.04) +Build-Ids: 108d3041434102ae0b05e84402b2d265a4acec3e 82b63321f0072d7b413d3f7292f9b21bdfbd33e6 +Depends: rocalution (= 3.2.1.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocalution-dbgsym/rocalution-dbgsym_3.2.0.60202-116~20.04_amd64.deb -Size: 11227570 -SHA256: 4a7268886b295abf83dbe6168edec2dbc7384ae25018998c307bb57194f4b079 -SHA1: 870eedbaf4470a86820c3c76842f5dc8997bed77 -MD5sum: 6c77a63518977193f8e38cca22ae8afe +Filename: pool/main/r/rocalution-dbgsym/rocalution-dbgsym_3.2.1.60301-48~20.04_amd64.deb +Size: 11229676 +SHA256: c9825fc66f0aaac583f4f2acb07334f742a155a53e5d108dbbcfb27eec92fdcb +SHA1: b1a4d07d0e1fd45ecf14debb4de955e76bfce2a8 +MD5sum: 86ab1c2c77adbe1a3380a37f75bba6c0 Description: debug symbols for rocalution Maintainer: rocALUTION Maintainer Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 78585 - -Package: rocalution-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: f8d8e3034d496581278547e8c554de953478d502 d7369600dd69d60c780e7b7980a23559e2089cc9 -Depends: rocalution-rpath6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocalution-dbgsym-rpath6.2.2/rocalution-dbgsym-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 11235792 -SHA256: a059d92ec05de49c2b7d6fce82e390975e7faeb6ceefb1f75a334bdd2c0011d8 -SHA1: 0786e75e3a92b5b12220b9a0316d9bcb7dccff07 -MD5sum: 4de8af83982e1e2e89e847a02a743b48 -Description: debug symbols for rocalution -Maintainer: rocALUTION Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 78585 - -Package: rocalution-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: f8d8e3034d496581278547e8c554de953478d502 d7369600dd69d60c780e7b7980a23559e2089cc9 -Depends: rocalution6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocalution-dbgsym6.2.2/rocalution-dbgsym6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 11253328 -SHA256: 103b048e9fc9543d54ada88b8058ca50e5b1df89446f59b69e446fd8d1b8b530 -SHA1: 59d43437bbccc53e4a92533824d9f65693f47499 -MD5sum: 39a22e598b416f1e9e8ee943785ce874 -Description: debug symbols for rocalution -Maintainer: rocALUTION Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 78585 +Version: 3.2.1.60301-48~20.04 +Installed-Size: 78622 Package: rocalution-dev Architecture: amd64 -Depends: rocalution (>= 3.2.0.60202) +Depends: rocalution (>= 3.2.1.60301) Priority: optional Section: devel -Filename: pool/main/r/rocalution-dev/rocalution-dev_3.2.0.60202-116~20.04_amd64.deb -Size: 42974 -SHA256: e0720d9cbb87d242759b2e5086b60e68f1f02d5c51a926b5f731895156d3e54b -SHA1: 8c1a899b2b3803f45724375511e2172eb4a24898 -MD5sum: 1df676e6c865ad6e6d2a95c5ab2afbaa +Filename: pool/main/r/rocalution-dev/rocalution-dev_3.2.1.60301-48~20.04_amd64.deb +Size: 42958 +SHA256: 71f42712a063caef80a48411c6d2983f714cbf66513518ff749d3bc28e2ed199 +SHA1: 48af426ce5992ac441a8f625ec445bb609a9f287 +MD5sum: 1bedbecad8816795cb5d3390ff34e616 Description: ROCm library for sparse linear systems Maintainer: rocALUTION Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.2.1.60301-48~20.04 Installed-Size: 422 -Package: rocalution-dev-rpath6.2.2 +Package: rocalution-dev-rpath6.3.1 Architecture: amd64 -Depends: rocalution-rpath6.2.2 (>= 3.2.0.60202) +Depends: rocalution-rpath6.3.1 (>= 3.2.1.60301) Priority: optional Section: devel -Filename: pool/main/r/rocalution-dev-rpath6.2.2/rocalution-dev-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 42948 -SHA256: cc8fd1b495c948a3ccffea15390115166eeeec485767b792f8e5e59af6328636 -SHA1: 4f3cf662a17156b78a5788f32661f5218d36e486 -MD5sum: b291a50a77a6b7fd02751c977c409d6c +Filename: pool/main/r/rocalution-dev-rpath6.3.1/rocalution-dev-rpath6.3.1_3.2.1.60301-48~20.04_amd64.deb +Size: 42956 +SHA256: 411a270d0b676ede080ab9a0501b70486f989eaa2475d1fcb217442aacdc431f +SHA1: 398c35a36f200d8583e6c2fda469f73d58104255 +MD5sum: c4e957de886c8d439f976c9136a0df3a Description: ROCm library for sparse linear systems Maintainer: rocALUTION Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.2.1.60301-48~20.04 Installed-Size: 422 -Package: rocalution-dev6.2.2 +Package: rocalution-dev6.3.1 Architecture: amd64 -Depends: rocalution6.2.2 (>= 3.2.0.60202) +Depends: rocalution6.3.1 (>= 3.2.1.60301) Priority: optional Section: devel -Filename: pool/main/r/rocalution-dev6.2.2/rocalution-dev6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 42948 -SHA256: fc5650bd10a7a62d7cca0d353ea922cec37fb878ddec99b2b67b399447102c0a -SHA1: 07e0197fa9acaac12f09df5b4fef35dcf12b85a7 -MD5sum: 4dca39fa80690a493ed3baacb7345c22 +Filename: pool/main/r/rocalution-dev6.3.1/rocalution-dev6.3.1_3.2.1.60301-48~20.04_amd64.deb +Size: 42940 +SHA256: 186b08351af67b1bed7d119dd65c49352dcb3314201a9a980971a65f69759fd3 +SHA1: 473f915155db66a1f40789069fe19fa502d45442 +MD5sum: b141d204856dc1ee9a635c323dd77c45 Description: ROCm library for sparse linear systems Maintainer: rocALUTION Maintainer -Version: 3.2.0.60202-116~20.04 +Version: 3.2.1.60301-48~20.04 Installed-Size: 422 -Package: rocalution-rpath6.2.2 +Package: rocalution-rpath6.3.1 Architecture: amd64 -Depends: hip-runtime-amd-rpath6.2.2 (>= 4.5.0), rocsparse-rpath6.2.2 (>= 1.12.10), rocblas-rpath6.2.2 (>= 2.22.0), rocrand-rpath6.2.2 (>= 2.1.0), rocm-core-rpath6.2.2 +Depends: hip-runtime-amd-rpath6.3.1 (>= 4.5.0), rocsparse-rpath6.3.1 (>= 1.12.10), rocblas-rpath6.3.1 (>= 2.22.0), rocrand-rpath6.3.1 (>= 2.1.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocalution-rpath6.2.2/rocalution-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 4578680 -SHA256: 0be55ffbc4bb710f6a8993048abbb760f2fb89a178693116fd577b9aaf4e3db9 -SHA1: 929d5649d9d910a1a5eb28fe63d87ec3d6b61d7c -MD5sum: 7d3eea89a381b8f0dcac49f448da8c89 +Filename: pool/main/r/rocalution-rpath6.3.1/rocalution-rpath6.3.1_3.2.1.60301-48~20.04_amd64.deb +Size: 4908648 +SHA256: d8f76d38e304dd415ae569a075c840781a51251bf0875f8601664e9629ef5ded +SHA1: 2fa0fc5c8f5f4d882386e17ce388eeff95f7c958 +MD5sum: f61d3eda6b23a284e6fd7d359ec9c642 Description: ROCm library for sparse linear systems Maintainer: rocALUTION Maintainer -Recommends: rocalution-dev-rpath6.2.2 (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 167584 +Recommends: rocalution-dev-rpath6.3.1 (>=3.2.1.60301) +Version: 3.2.1.60301-48~20.04 +Installed-Size: 195273 -Package: rocalution6.2.2 +Package: rocalution6.3.1 Architecture: amd64 -Depends: hip-runtime-amd6.2.2 (>= 4.5.0), rocsparse6.2.2 (>= 1.12.10), rocblas6.2.2 (>= 2.22.0), rocrand6.2.2 (>= 2.1.0), rocm-core6.2.2 +Depends: hip-runtime-amd6.3.1 (>= 4.5.0), rocsparse6.3.1 (>= 1.12.10), rocblas6.3.1 (>= 2.22.0), rocrand6.3.1 (>= 2.1.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocalution6.2.2/rocalution6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 4573788 -SHA256: 8511bed49ae58dee12186a667a7a2a6ae60a032793538c4788227cd9b3b46774 -SHA1: 329d70208ea4386fc5190e1aaf25262d26f45d16 -MD5sum: 7ef33736dfea662ee41500c463b6e0d0 +Filename: pool/main/r/rocalution6.3.1/rocalution6.3.1_3.2.1.60301-48~20.04_amd64.deb +Size: 4912968 +SHA256: 352784958062152a262eb111ce8433482da7485316f8e9c97a36ae240300b45e +SHA1: e60d27c82a1735bc8e4b529016cb7056cea8a3a0 +MD5sum: 89eb0d75e87f1b598e1390a51e8afd6b Description: ROCm library for sparse linear systems Maintainer: rocALUTION Maintainer -Recommends: rocalution-dev6.2.2 (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 167584 +Recommends: rocalution-dev6.3.1 (>=3.2.1.60301) +Version: 3.2.1.60301-48~20.04 +Installed-Size: 195273 Package: rocblas Architecture: amd64 -Depends: hip-runtime-amd (>= 4.5.0), rocm-core +Depends: hipblaslt (>= 0.10), hip-runtime-amd (>= 4.5.0), rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocblas/rocblas_4.2.1.60202-116~20.04_amd64.deb -Size: 144341310 -SHA256: 04f1d773078f3e3ece3ddd3728ab927403d61049a8f009be5d94f8f8cb42e15c -SHA1: df7dac09ea8db23704b86ccce60ae0bef1e05891 -MD5sum: d9bd34440448cea6c1479c8f1e8733cc +Filename: pool/main/r/rocblas/rocblas_4.3.0.60301-48~20.04_amd64.deb +Size: 149256984 +SHA256: 66c8936801d136425bee5291fd00b70cd4b14c18480aa6199ee80e6330409977 +SHA1: b93512ccbd4c9906baf8f8cf8727cee8cd9f5be1 +MD5sum: 1ff181b88f744bdefa6e9157170e9d75 Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs Maintainer: rocBLAS Maintainer -Recommends: rocblas-dev (>=4.2.1.60202) -Version: 4.2.1.60202-116~20.04 -Installed-Size: 5844976 - -Package: rocblas-asan -Architecture: amd64 -Depends: hip-runtime-amd-asan (>= 4.5.0), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocblas-asan/rocblas-asan_4.2.1.60202-116~20.04_amd64.deb -Size: 285993780 -SHA256: ddea65049d29e6e315a8d1a1313765be13c926cd29cd142244c67ef91f26791b -SHA1: c6215574e58bf6e960f7ed56f38006d55b6984f4 -MD5sum: 76450a7f4e2a7f11d4ce6bc5ecc0bbe3 -Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs -Maintainer: rocBLAS Maintainer -Recommends: rocblas-asan-dev (>=4.2.1.60202) -Version: 4.2.1.60202-116~20.04 -Installed-Size: 2902247 - -Package: rocblas-asan-rpath6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan-rpath6.2.2 (>= 4.5.0), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocblas-asan-rpath6.2.2/rocblas-asan-rpath6.2.2_4.2.1.60202-116~20.04_amd64.deb -Size: 285986744 -SHA256: 7a3c99eefb194f956435213a6781d8549c2fda5d98a76f1b5b60285af1263733 -SHA1: 263b2cea39ad3c48683c2caa6f48df823188cc5b -MD5sum: e49b26b24345fe7e6e354fb64732601b -Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs -Maintainer: rocBLAS Maintainer -Recommends: rocblas-asan-dev (>=4.2.1.60202) -Version: 4.2.1.60202-116~20.04 -Installed-Size: 2902247 - -Package: rocblas-asan6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan6.2.2 (>= 4.5.0), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocblas-asan6.2.2/rocblas-asan6.2.2_4.2.1.60202-116~20.04_amd64.deb -Size: 286010988 -SHA256: 4151ea3b33d980e8297bbd8176edd939d061ea2da0fea89d6e5545b4316f9307 -SHA1: 2880cedf15ae08050cf5bd70e1bca4a027614e4a -MD5sum: c329efa38c77d09d5b938725bb341b0d -Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs -Maintainer: rocBLAS Maintainer -Recommends: rocblas-asan-dev (>=4.2.1.60202) -Version: 4.2.1.60202-116~20.04 -Installed-Size: 2902247 +Recommends: rocblas-dev (>=4.3.0.60301) +Version: 4.3.0.60301-48~20.04 +Installed-Size: 3936328 Package: rocblas-dev Architecture: amd64 -Depends: rocblas (>= 4.2.1.60202) +Depends: rocblas (>= 4.3.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocblas-dev/rocblas-dev_4.2.1.60202-116~20.04_amd64.deb -Size: 91614 -SHA256: 93a6c284a84ee8d8bf59c5473836574a6974af59b317c339ade91e39488eb17b -SHA1: a16a6c09a721eda5a5b4534f3886eaf202c790ad -MD5sum: e39bd6fc1011cc03e1dec010298b36da +Filename: pool/main/r/rocblas-dev/rocblas-dev_4.3.0.60301-48~20.04_amd64.deb +Size: 99008 +SHA256: a248c797f9a86f1d1f3b8831cba45b12ea58d86989a00b6fb97c733f1c957797 +SHA1: 0eb1c5251fee9d5ca6c5735f46099175d24e1fbc +MD5sum: 726798a696d2f15d330ee938768b68ce Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs Maintainer: rocBLAS Maintainer -Version: 4.2.1.60202-116~20.04 -Installed-Size: 2530 +Version: 4.3.0.60301-48~20.04 +Installed-Size: 2888 -Package: rocblas-dev-rpath6.2.2 +Package: rocblas-dev-rpath6.3.1 Architecture: amd64 -Depends: rocblas-rpath6.2.2 (>= 4.2.1.60202) +Depends: rocblas-rpath6.3.1 (>= 4.3.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocblas-dev-rpath6.2.2/rocblas-dev-rpath6.2.2_4.2.1.60202-116~20.04_amd64.deb -Size: 91756 -SHA256: bea5c7dcf64e3a6b1d2ae058c0e17496ed3a193e1f23c2c61245f10f359b7591 -SHA1: 4a982221fc1ca165b78a4b9678ef6a787298d8df -MD5sum: d368e7ddea44b5d1e157f594f95fa8e7 +Filename: pool/main/r/rocblas-dev-rpath6.3.1/rocblas-dev-rpath6.3.1_4.3.0.60301-48~20.04_amd64.deb +Size: 99192 +SHA256: 5bc989ab8e088be30d44dc78b93b6eb0e0a2d1a3d3d8202233b333b422d06f45 +SHA1: bf7ab42a6e4a9bc53fbcd90688789bbc61ce6f79 +MD5sum: 570b6001af21edea00442259042f65a4 Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs Maintainer: rocBLAS Maintainer -Version: 4.2.1.60202-116~20.04 -Installed-Size: 2530 +Version: 4.3.0.60301-48~20.04 +Installed-Size: 2888 -Package: rocblas-dev6.2.2 +Package: rocblas-dev6.3.1 Architecture: amd64 -Depends: rocblas6.2.2 (>= 4.2.1.60202) +Depends: rocblas6.3.1 (>= 4.3.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocblas-dev6.2.2/rocblas-dev6.2.2_4.2.1.60202-116~20.04_amd64.deb -Size: 91744 -SHA256: ed6ffdbb5fb0f9420319fbed74ebb38b293db73efdb94de8e88c3d82c0bd0276 -SHA1: e9949e3bb8ef7a37743b99bf255a15befa8c7090 -MD5sum: 011a7578dcef34821b8b30cf3b8eb99c +Filename: pool/main/r/rocblas-dev6.3.1/rocblas-dev6.3.1_4.3.0.60301-48~20.04_amd64.deb +Size: 99148 +SHA256: 0c37e2ba1fef9dd6c9f3744d835f85eb540cacdf5d621a11c34fa45578517ccf +SHA1: a36ce2e6fcac0d3ba31771e2685c7ba2a6232de0 +MD5sum: c7053545dd299d5b3232e573ec9c3690 Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs Maintainer: rocBLAS Maintainer -Version: 4.2.1.60202-116~20.04 -Installed-Size: 2530 +Version: 4.3.0.60301-48~20.04 +Installed-Size: 2888 -Package: rocblas-rpath6.2.2 +Package: rocblas-rpath6.3.1 Architecture: amd64 -Depends: hip-runtime-amd-rpath6.2.2 (>= 4.5.0), rocm-core-rpath6.2.2 +Depends: hipblaslt-rpath6.3.1 (>= 0.10), hip-runtime-amd-rpath6.3.1 (>= 4.5.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocblas-rpath6.2.2/rocblas-rpath6.2.2_4.2.1.60202-116~20.04_amd64.deb -Size: 144295048 -SHA256: 270389553f25e5da1ed58d9e5b8f93b4b477363482d93893fa58ed25d1b44c5d -SHA1: 6501576f08c8acf29eb059fb8a8e03528ea49024 -MD5sum: 3743a21173d649eea65740517a9e1590 +Filename: pool/main/r/rocblas-rpath6.3.1/rocblas-rpath6.3.1_4.3.0.60301-48~20.04_amd64.deb +Size: 149261164 +SHA256: ef0cadc618edfde07f17598f8a43996a621e02b9553716cec1970b2a5ce4a28e +SHA1: 5013489f568900006df60b9195768d4171a108eb +MD5sum: 8c0a9caa60ad78be86cab0a7739f491b Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs Maintainer: rocBLAS Maintainer -Recommends: rocblas-dev-rpath6.2.2 (>=4.2.1.60202) -Version: 4.2.1.60202-116~20.04 -Installed-Size: 5844976 +Recommends: rocblas-dev-rpath6.3.1 (>=4.3.0.60301) +Version: 4.3.0.60301-48~20.04 +Installed-Size: 3936328 -Package: rocblas6.2.2 +Package: rocblas6.3.1 Architecture: amd64 -Depends: hip-runtime-amd6.2.2 (>= 4.5.0), rocm-core6.2.2 +Depends: hipblaslt6.3.1 (>= 0.10), hip-runtime-amd6.3.1 (>= 4.5.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocblas6.2.2/rocblas6.2.2_4.2.1.60202-116~20.04_amd64.deb -Size: 144295224 -SHA256: bbedfd27c104ce00856ad62469fce083929c1f2dc3248ec6331d67add9e28e7b -SHA1: c79fd2e180f2c480c0e237e914cf551fff89a24f -MD5sum: d5de9e2f17d28acb0b49b1bf4d636df9 +Filename: pool/main/r/rocblas6.3.1/rocblas6.3.1_4.3.0.60301-48~20.04_amd64.deb +Size: 149261484 +SHA256: 9c114768aa5be108027e6cd04abb6bf8591badce9c22822df18b4fc50b77306b +SHA1: 0e60dd4df7f9cd3db96026f4c62c1a15500501c5 +MD5sum: ba5f510b5d23b728c72ce32fbe225726 Description: rocBLAS is the AMD library for BLAS in ROCm. Implemented using the HIP language and optimized for AMD GPUs Maintainer: rocBLAS Maintainer -Recommends: rocblas-dev6.2.2 (>=4.2.1.60202) -Version: 4.2.1.60202-116~20.04 -Installed-Size: 5844976 +Recommends: rocblas-dev6.3.1 (>=4.3.0.60301) +Version: 4.3.0.60301-48~20.04 +Installed-Size: 3936328 Package: rocdecode Architecture: amd64 -Depends: rocm-core, rocm-hip-runtime, libva2, libdrm-amdgpu1, mesa-amdgpu-va-drivers +Depends: rocm-core, rocm-hip-runtime, libva2-amdgpu, libva-amdgpu-drm2, libva-amdgpu-wayland2, libva-amdgpu-x11-2, mesa-amdgpu-va-drivers Priority: optional Section: devel -Filename: pool/main/r/rocdecode/rocdecode_0.6.0.60202-116~20.04_amd64.deb -Size: 164820 -SHA256: 3b9f6edfc772bd9fe75b3b2c888d483fb5acb4f9a45a60e8479f63a991475226 -SHA1: 9fc39efe05653d77e83b6d21c8a7e1db3c013f21 -MD5sum: a649d69b384901e277088839fe44f635 +Filename: pool/main/r/rocdecode/rocdecode_0.8.0.60301-48~20.04_amd64.deb +Size: 179876 +SHA256: edf53b101ed8c40ca0f23eaf4323a52328f34f67866d9b93c460fa5798c12dc1 +SHA1: e2b04b93e6606bce027850948433992ee9d25335 +MD5sum: 7fc00096f3a2707a2052020ab4f79d65 Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode runtime package provides rocDecode library and license.txt Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 860 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 927 Package: rocdecode-dev Architecture: amd64 -Depends: rocm-core, rocdecode, rocm-hip-runtime-dev, libva-dev, pkg-config, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev +Depends: rocm-core, rocdecode, rocm-hip-runtime-dev, libva-amdgpu-dev, pkg-config, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev Priority: optional Section: devel -Filename: pool/main/r/rocdecode-dev/rocdecode-dev_0.6.0.60202-116~20.04_amd64.deb -Size: 34708504 -SHA256: 767b71d7147d9d0a0fc01dba71c899e9976053938e7d882fbe086c51e66f1391 -SHA1: 059af7797cfbf1f3923954758db6f9fb7021fbd1 -MD5sum: 607ba82aab4edc8ce4a2e6d31898dc28 -Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode develop package provides rocDecode library, header files, samples, and license.txt +Filename: pool/main/r/rocdecode-dev/rocdecode-dev_0.8.0.60301-48~20.04_amd64.deb +Size: 42125430 +SHA256: ea0af5c9ffdeb00e7e26957442d5ba67d4295092ab6501509e851afb2c27030b +SHA1: c40d88860f97473125487097588c41ef34e4f559 +MD5sum: 6358043045b4dedeae6a84ee07e2e9b0 +Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode develop package provides rocDecode header files, and samples Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 35013 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 42269 -Package: rocdecode-dev-rpath6.2.2 +Package: rocdecode-dev-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, rocdecode-rpath6.2.2, rocm-hip-runtime-dev-rpath6.2.2, libva-dev, pkg-config, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev +Depends: rocm-core-rpath6.3.1, rocdecode-rpath6.3.1, rocm-hip-runtime-dev-rpath6.3.1, libva-amdgpu-dev, pkg-config, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev Priority: optional Section: devel -Filename: pool/main/r/rocdecode-dev-rpath6.2.2/rocdecode-dev-rpath6.2.2_0.6.0.60202-116~20.04_amd64.deb -Size: 34913388 -SHA256: f53383d37512a25c27dba38e4822ab4ec84659e2d3cfe39a8cecd7f6186db520 -SHA1: 7f16e720a29d9768a3e5448f77553322cec7607e -MD5sum: a30f59301ca9077acc07edf6c7fccc9c -Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode develop package provides rocDecode library, header files, samples, and license.txt +Filename: pool/main/r/rocdecode-dev-rpath6.3.1/rocdecode-dev-rpath6.3.1_0.8.0.60301-48~20.04_amd64.deb +Size: 42332024 +SHA256: f0bf7a86928af4e8c4065742eaad12d2c51ab683ada64b40355dddbf6cbae195 +SHA1: 1cb8d8ead59ee961b85ee740d9dfffe6c5543422 +MD5sum: 4221665754cdb4421e971e0ce5f19589 +Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode develop package provides rocDecode header files, and samples Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 35013 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 42269 -Package: rocdecode-dev6.2.2 +Package: rocdecode-dev6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, rocdecode6.2.2, rocm-hip-runtime-dev6.2.2, libva-dev, pkg-config, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev +Depends: rocm-core6.3.1, rocdecode6.3.1, rocm-hip-runtime-dev6.3.1, libva-amdgpu-dev, pkg-config, ffmpeg, libavcodec-dev, libavformat-dev, libavutil-dev Priority: optional Section: devel -Filename: pool/main/r/rocdecode-dev6.2.2/rocdecode-dev6.2.2_0.6.0.60202-116~20.04_amd64.deb -Size: 34913380 -SHA256: 4366c12381a5ed729c1b32c8857bca4f13aa4542892d896be4e8468ce8d386af -SHA1: f17916bd177623d21e1088f2de6e1efc4c73b967 -MD5sum: 11eb763946a2d8144095bd88138c3db9 -Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode develop package provides rocDecode library, header files, samples, and license.txt +Filename: pool/main/r/rocdecode-dev6.3.1/rocdecode-dev6.3.1_0.8.0.60301-48~20.04_amd64.deb +Size: 42331976 +SHA256: a47c814dcd26e79cd7a17162d7459beee5683c449267131e5db3572fe16adf9c +SHA1: 949888b12d688ee2d44f5cc4b9764071b2496210 +MD5sum: deea81f6f5decc527907e7f758a7070a +Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode develop package provides rocDecode header files, and samples Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 35013 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 42269 -Package: rocdecode-rpath6.2.2 +Package: rocdecode-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, rocm-hip-runtime-rpath6.2.2, libva2, libdrm-amdgpu1, mesa-amdgpu-va-drivers +Depends: rocm-core-rpath6.3.1, rocm-hip-runtime-rpath6.3.1, libva2-amdgpu, libva-amdgpu-drm2, libva-amdgpu-wayland2, libva-amdgpu-x11-2, mesa-amdgpu-va-drivers Priority: optional Section: devel -Filename: pool/main/r/rocdecode-rpath6.2.2/rocdecode-rpath6.2.2_0.6.0.60202-116~20.04_amd64.deb -Size: 123056 -SHA256: a572b8fa44cc87036dcd06d90e97c096573b1ab7f7372be8242acdf6dc77992f -SHA1: bd00edf84dc6c792e1dffff48256db8c741fa459 -MD5sum: 27b031e573e6d7b14ca7dd8dfb0b78db +Filename: pool/main/r/rocdecode-rpath6.3.1/rocdecode-rpath6.3.1_0.8.0.60301-48~20.04_amd64.deb +Size: 133692 +SHA256: fdb8772f88dece1f2f615237e912c99a8f2c9dc92b7e2329dc776f3c7d65cd75 +SHA1: 5b2e9d94896c0afb0c4508c7f85c105602b324e4 +MD5sum: 7a13a5b4826184fc9632768f4f8ff22b Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode runtime package provides rocDecode library and license.txt Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 860 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 927 Package: rocdecode-test Architecture: amd64 Depends: rocm-core, rocdecode-dev Priority: optional Section: devel -Filename: pool/main/r/rocdecode-test/rocdecode-test_0.6.0.60202-116~20.04_amd64.deb -Size: 6626 -SHA256: 3b6c3d4eb13a270f2eb198a3bbb9ca5a9fb3ee0bda0968fc425deb1387253fd1 -SHA1: 71a7a5205c36c485d220d6f0e8a80ab677076ae2 -MD5sum: b8ff26a998dc57a79fde82d301a5f82b +Filename: pool/main/r/rocdecode-test/rocdecode-test_0.8.0.60301-48~20.04_amd64.deb +Size: 6494 +SHA256: bda22f92020121b31550a3d861f3412329e0b19b978e2e8ccae8f456b3a86b01 +SHA1: 3fd945f396f65d376c56e83fa6acb704589acb2d +MD5sum: 4f93da8abd0e0dd12deac14c8e5c3ff0 Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode Test package provides rocDecode Test Components Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 58 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 50 -Package: rocdecode-test-rpath6.2.2 +Package: rocdecode-test-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, rocdecode-dev-rpath6.2.2 +Depends: rocm-core-rpath6.3.1, rocdecode-dev-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocdecode-test-rpath6.2.2/rocdecode-test-rpath6.2.2_0.6.0.60202-116~20.04_amd64.deb -Size: 6528 -SHA256: ab8689f812818e6cd897ec4c6ce81fe711797098df5b7b92fa59abd325c81aaa -SHA1: c2cc4b482bc28b0ea4477133069821c7e6223fac -MD5sum: 47cddf3b00250029dbec93c48a99b76f +Filename: pool/main/r/rocdecode-test-rpath6.3.1/rocdecode-test-rpath6.3.1_0.8.0.60301-48~20.04_amd64.deb +Size: 6408 +SHA256: f241485e7971dc8b46b0706581ea44a079628ba3f6289f9f936ad21f65128a72 +SHA1: 01aec82e4ed5da695624656632a504d8cc27fd77 +MD5sum: 0611cc2862cfae166b6bc51aab32ceef Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode Test package provides rocDecode Test Components Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 58 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 50 -Package: rocdecode-test6.2.2 +Package: rocdecode-test6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, rocdecode-dev6.2.2 +Depends: rocm-core6.3.1, rocdecode-dev6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocdecode-test6.2.2/rocdecode-test6.2.2_0.6.0.60202-116~20.04_amd64.deb -Size: 6524 -SHA256: f53e4a679796a0e61e301f20260196ab1223292159296b4f2f758afa71ced63b -SHA1: e7cb502e4f5bb431da02a7f258cb6421a399fd2e -MD5sum: 72b3f16e2eaa2e000dd55e2700303243 +Filename: pool/main/r/rocdecode-test6.3.1/rocdecode-test6.3.1_0.8.0.60301-48~20.04_amd64.deb +Size: 6404 +SHA256: 828d0d52b5fbe5838f81f65c5ac9b9b20f05976780badf17e0c4efef72f21d5a +SHA1: d379ade875343f48a1cbdfb155111f604af008f9 +MD5sum: fa7b5b5eeee41315d09ac491295d5698 Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode Test package provides rocDecode Test Components Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 58 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 50 -Package: rocdecode6.2.2 +Package: rocdecode6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, rocm-hip-runtime6.2.2, libva2, libdrm-amdgpu1, mesa-amdgpu-va-drivers +Depends: rocm-core6.3.1, rocm-hip-runtime6.3.1, libva2-amdgpu, libva-amdgpu-drm2, libva-amdgpu-wayland2, libva-amdgpu-x11-2, mesa-amdgpu-va-drivers Priority: optional Section: devel -Filename: pool/main/r/rocdecode6.2.2/rocdecode6.2.2_0.6.0.60202-116~20.04_amd64.deb -Size: 123136 -SHA256: 680be8eac981c75495660c9bcdf139703570937ce2082bc794a9a75fe8561c5d -SHA1: 9eb7dc5e35769b790bbbedd360cc5c70fa373dfe -MD5sum: 838f6f92c7ddc6603ea72c708a44f7bd +Filename: pool/main/r/rocdecode6.3.1/rocdecode6.3.1_0.8.0.60301-48~20.04_amd64.deb +Size: 133872 +SHA256: a9106dcf9e1b3ef1d7868dd6821897bbb102ef924536724c8b361bb91d3ae985 +SHA1: f00bbd8b9679c02a73728adb3621eeedd33e27b6 +MD5sum: 049ac623f9b7e54a216c6d4c2505c19a Description: AMD rocDecode is a high performance video decode SDK for AMD GPUs. rocDecode runtime package provides rocDecode library and license.txt Homepage: https://github.com/ROCm/rocDecode Maintainer: rocDecode Support -Version: 0.6.0.60202-116~20.04 -Installed-Size: 860 +Version: 0.8.0.60301-48~20.04 +Installed-Size: 927 Package: rocfft Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocfft/rocfft_1.0.29.60202-116~20.04_amd64.deb -Size: 100619296 -SHA256: abf0efb69e5ef7292a127f1bc48bd4008347d1b16731471e5f816665aa3824b0 -SHA1: cb65f8fe04b6720c7806596df9d583ca61ffacdd -MD5sum: 412650961e78f996965d4c3c57ee238a +Filename: pool/main/r/rocfft/rocfft_1.0.31.60301-48~20.04_amd64.deb +Size: 119523758 +SHA256: bdaf509494667db2c7052d7ba1bbde869abc945e5726cd3e2231cf7f4ed9b200 +SHA1: 1bc94b74c7931cd859a43304a1fe718578aa0908 +MD5sum: 8d5fcb1d90414114ebcdd8e5ec6804df Description: ROCm FFT library Maintainer: rocfft-maintainer@amd.com -Recommends: rocfft-dev (>=1.0.29.60202) -Version: 1.0.29.60202-116~20.04 -Installed-Size: 2083197 - -Package: rocfft-asan -Architecture: amd64 -Depends: rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocfft-asan/rocfft-asan_1.0.29.60202-116~20.04_amd64.deb -Size: 4694932 -SHA256: 463bba5d57d23c501d70b5107a3f7f4cf6ce1cbff69832faefc4d2fcf9123dcf -SHA1: 6d01b0c97c1cdb59cc3632aad5d152a03bc25d55 -MD5sum: af0b962205d85083e9a179f0b023f995 -Description: ROCm FFT library -Maintainer: rocfft-maintainer@amd.com -Recommends: rocfft-asan-dev (>=1.0.29.60202) -Version: 1.0.29.60202-116~20.04 -Installed-Size: 40988 - -Package: rocfft-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5190a68ffb5acf0f2c2e99b725aeacd25d1e7ac4 -Depends: rocfft-asan (= 1.0.29.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocfft-asan-dbgsym/rocfft-asan-dbgsym_1.0.29.60202-116~20.04_amd64.deb -Size: 21665926 -SHA256: 69439a8a15c2e659f2e68e129883db9c975b0dcd051dc9f1dbf54ce4fed39c26 -SHA1: 0b0a559f4d5ca5b76400cde25e071d2a4b462388 -MD5sum: 15607550c37d2e5b5b8b4f3f938aae4e -Description: debug symbols for rocfft-asan -Maintainer: rocfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.29.60202-116~20.04 -Installed-Size: 24795 - -Package: rocfft-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5190a68ffb5acf0f2c2e99b725aeacd25d1e7ac4 -Depends: rocfft-asan-rpath6.2.2 (= 1.0.29.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocfft-asan-dbgsym-rpath6.2.2/rocfft-asan-dbgsym-rpath6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 21666048 -SHA256: 6278e69bcc5ff4dccfde0518aa9d1425aaa210d8e278b02f0e41c5bdcf4758a1 -SHA1: 33090f6c6494e03e9811db943496dd5ea628f8a4 -MD5sum: 347be4582f64834aa525621a4bd801ef -Description: debug symbols for rocfft-asan -Maintainer: rocfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.29.60202-116~20.04 -Installed-Size: 24795 - -Package: rocfft-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5190a68ffb5acf0f2c2e99b725aeacd25d1e7ac4 -Depends: rocfft-asan6.2.2 (= 1.0.29.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocfft-asan-dbgsym6.2.2/rocfft-asan-dbgsym6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 21665568 -SHA256: ea624ef6fe3299d036e862aac5dac34d0d6218830371704b75af43affa4f9c5c -SHA1: a9b2f5d1bcfd8ab3c444d1a8d3f53ce58402ff75 -MD5sum: 4da44c67af27840fe58875a159dadbc6 -Description: debug symbols for rocfft-asan -Maintainer: rocfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.29.60202-116~20.04 -Installed-Size: 24795 - -Package: rocfft-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocfft-asan-rpath6.2.2/rocfft-asan-rpath6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 4686888 -SHA256: 9cc99786f0bd22fe089642dfd43d4b7445c83dac3bf9dd0607e96a325334a2ae -SHA1: 46ce74d3664de56bec7329044345a44c012561b4 -MD5sum: a1ed3ee71d7e518eb26e176df72e356f -Description: ROCm FFT library -Maintainer: rocfft-maintainer@amd.com -Recommends: rocfft-asan-dev (>=1.0.29.60202) -Version: 1.0.29.60202-116~20.04 -Installed-Size: 40988 - -Package: rocfft-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocfft-asan6.2.2/rocfft-asan6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 4688376 -SHA256: c9bf50d7d9cbce5a67b56e0c7afd7131405f0997cc3d90d6df786adfe9f985ed -SHA1: 08cbdb87e9cb38777a487a86318ffe2bbeb86660 -MD5sum: b46d962ee136ccc27db4b4a7dba36e77 -Description: ROCm FFT library -Maintainer: rocfft-maintainer@amd.com -Recommends: rocfft-asan-dev (>=1.0.29.60202) -Version: 1.0.29.60202-116~20.04 -Installed-Size: 40988 +Recommends: rocfft-dev (>=1.0.31.60301) +Version: 1.0.31.60301-48~20.04 +Installed-Size: 2677411 Package: rocfft-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 126abc910a9659a1b1b7fe468968d6f0dd685152 a067c448ad8dd97e851d90c68f32c23669b5a430 -Depends: rocfft (= 1.0.29.60202-116~20.04) +Build-Ids: 47cf0db666955fea389793848f2d3353bf7abdcf 412da0d80f71a1ef0a372f56a115119c2888a54d +Depends: rocfft (= 1.0.31.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocfft-dbgsym/rocfft-dbgsym_1.0.29.60202-116~20.04_amd64.deb -Size: 9987516 -SHA256: e54afa38c77a36116a153a1af83c9b13cf249b2909d04ba0c99ef8e49c2db28d -SHA1: 133b295951f1f34e18961e755d36749944348333 -MD5sum: a79c210745e3eebeea7d0d2d16e76ebb +Filename: pool/main/r/rocfft-dbgsym/rocfft-dbgsym_1.0.31.60301-48~20.04_amd64.deb +Size: 10176394 +SHA256: c904755a2b1da9cd4aee575b5e085f2e7d1a91d5dd8c2dead3e4d295f826bde3 +SHA1: 1de572fe64c7859228289b627f7dbe29b4689ca8 +MD5sum: dc08253a611aa18959e71ee832b1a28b Description: debug symbols for rocfft Maintainer: rocfft-maintainer@amd.com Package-Type: ddeb -Version: 1.0.29.60202-116~20.04 -Installed-Size: 65778 - -Package: rocfft-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 126abc910a9659a1b1b7fe468968d6f0dd685152 a067c448ad8dd97e851d90c68f32c23669b5a430 -Depends: rocfft-rpath6.2.2 (= 1.0.29.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocfft-dbgsym-rpath6.2.2/rocfft-dbgsym-rpath6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 9996824 -SHA256: 7ed6a9462ac14fee888aab89875eff51b816a16709501d5a17e91c0916f171ab -SHA1: ec103a2d549b62da3a03f8d68b282b928a2e24f8 -MD5sum: 76cfef9285991236fb95a46a5ca40379 -Description: debug symbols for rocfft -Maintainer: rocfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.29.60202-116~20.04 -Installed-Size: 65778 - -Package: rocfft-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 126abc910a9659a1b1b7fe468968d6f0dd685152 a067c448ad8dd97e851d90c68f32c23669b5a430 -Depends: rocfft6.2.2 (= 1.0.29.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocfft-dbgsym6.2.2/rocfft-dbgsym6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 9995728 -SHA256: a2bffd651d714121daf34158329d8d95ab69b093c7152adfa0b18aee27cd5248 -SHA1: ffaaf33ef0a78e72026968cece9a9d1468275038 -MD5sum: 3e6dd8a822ca5eb62d77916758d6e525 -Description: debug symbols for rocfft -Maintainer: rocfft-maintainer@amd.com -Package-Type: ddeb -Version: 1.0.29.60202-116~20.04 -Installed-Size: 65778 +Version: 1.0.31.60301-48~20.04 +Installed-Size: 67440 Package: rocfft-dev Architecture: amd64 -Depends: rocfft (>= 1.0.29.60202) +Depends: rocfft (>= 1.0.31.60301) Priority: optional Section: devel -Filename: pool/main/r/rocfft-dev/rocfft-dev_1.0.29.60202-116~20.04_amd64.deb -Size: 10490 -SHA256: b4a65b704be3eabddc9c4fbebaf42f29ab4afd43d852b6835a880a9cdc91b16c -SHA1: fb8796477cdc8b6dbbdec839e894b37348a0a88d -MD5sum: 5469ccebedb4fa9bd8a41595529b5b13 -Description: ROCm FFT library -Maintainer: rocfft-maintainer@amd.com -Version: 1.0.29.60202-116~20.04 -Installed-Size: 70 - -Package: rocfft-dev-rpath6.2.2 -Architecture: amd64 -Depends: rocfft-rpath6.2.2 (>= 1.0.29.60202) -Priority: optional -Section: devel -Filename: pool/main/r/rocfft-dev-rpath6.2.2/rocfft-dev-rpath6.2.2_1.0.29.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocfft-dev/rocfft-dev_1.0.31.60301-48~20.04_amd64.deb Size: 10648 -SHA256: fd7879f2b00c34e9314ece7ef6a4d99abf9c45add1b3b86b0c085b413f991d58 -SHA1: d860e5d6de99c280647d67b52055492de85df376 -MD5sum: 35a10bd2fb94978a30c21730f7fc2aba +SHA256: c689baec7c3b147bd6719d1255d23c03b6663553966b3bb0e61c91d9217204bc +SHA1: 60dd3fadcb6787b1c1ecaae88110dabcb312fd35 +MD5sum: b24568714abdeeb9b78856a64999359b Description: ROCm FFT library Maintainer: rocfft-maintainer@amd.com -Version: 1.0.29.60202-116~20.04 -Installed-Size: 70 +Version: 1.0.31.60301-48~20.04 +Installed-Size: 71 -Package: rocfft-dev6.2.2 +Package: rocfft-dev-rpath6.3.1 Architecture: amd64 -Depends: rocfft6.2.2 (>= 1.0.29.60202) +Depends: rocfft-rpath6.3.1 (>= 1.0.31.60301) Priority: optional Section: devel -Filename: pool/main/r/rocfft-dev6.2.2/rocfft-dev6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 10644 -SHA256: d8df1396be031851ce4786ef7e9db8083b1faf8caa8563363c56893af2f074e5 -SHA1: b276158dbe2757b867a3730013539eaac0c40e30 -MD5sum: ee33e3bcc4fc18274bc557f3b0f083f2 +Filename: pool/main/r/rocfft-dev-rpath6.3.1/rocfft-dev-rpath6.3.1_1.0.31.60301-48~20.04_amd64.deb +Size: 10812 +SHA256: 805f6daeb88a7a5233880f421eacdcb08cff4fda7b62cdc88cc3074c72deae6e +SHA1: 235d5d02f72b849b0925de8b81c3c809229af98e +MD5sum: 01d2ce67710598426a11abd0fe297e26 Description: ROCm FFT library Maintainer: rocfft-maintainer@amd.com -Version: 1.0.29.60202-116~20.04 -Installed-Size: 70 +Version: 1.0.31.60301-48~20.04 +Installed-Size: 71 -Package: rocfft-rpath6.2.2 +Package: rocfft-dev6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocfft6.3.1 (>= 1.0.31.60301) Priority: optional Section: devel -Filename: pool/main/r/rocfft-rpath6.2.2/rocfft-rpath6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 100613636 -SHA256: dff71adc36128873525c087e18c0d9fa600618aac60c519d31c219fea3eed82e -SHA1: 7b3623214ea9b49ab51843428ebd591cfd4adfab -MD5sum: 584bf36ed3fb5418b89ec6958513e0bb +Filename: pool/main/r/rocfft-dev6.3.1/rocfft-dev6.3.1_1.0.31.60301-48~20.04_amd64.deb +Size: 10800 +SHA256: 7aaf7e4370a99156ae17a23a5a263dc06b30e5414aab02bce1befa48c4139dd4 +SHA1: bbc16a66b66c435f6d750f73cab85670661afb06 +MD5sum: 6c77667aa670753f7fe35b84d22a7a2d Description: ROCm FFT library Maintainer: rocfft-maintainer@amd.com -Recommends: rocfft-dev-rpath6.2.2 (>=1.0.29.60202) -Version: 1.0.29.60202-116~20.04 -Installed-Size: 2083197 +Version: 1.0.31.60301-48~20.04 +Installed-Size: 71 -Package: rocfft6.2.2 +Package: rocfft-rpath6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocfft6.2.2/rocfft6.2.2_1.0.29.60202-116~20.04_amd64.deb -Size: 100615608 -SHA256: 262de5e8c9e95f88fa35c22d17468f09b89976e69a50a887eb655aa399a515c7 -SHA1: 5d6526227973600366d8ed4cd62964f07182f5ef -MD5sum: cc23d4b26b1a0dc7820c0de9ec2e5745 +Filename: pool/main/r/rocfft-rpath6.3.1/rocfft-rpath6.3.1_1.0.31.60301-48~20.04_amd64.deb +Size: 119526968 +SHA256: fca4c58b0fe43c9f0846b7cb4d996bb7eb1c9416eb41017847e04ae063843dd8 +SHA1: 92eca1cbf23de873711500d36ee426b6bf394051 +MD5sum: 3b5af633ac8afb3cd30a94523aa473af Description: ROCm FFT library Maintainer: rocfft-maintainer@amd.com -Recommends: rocfft-dev6.2.2 (>=1.0.29.60202) -Version: 1.0.29.60202-116~20.04 -Installed-Size: 2083197 +Recommends: rocfft-dev-rpath6.3.1 (>=1.0.31.60301) +Version: 1.0.31.60301-48~20.04 +Installed-Size: 2677411 + +Package: rocfft6.3.1 +Architecture: amd64 +Depends: rocm-core6.3.1 +Priority: optional +Section: devel +Filename: pool/main/r/rocfft6.3.1/rocfft6.3.1_1.0.31.60301-48~20.04_amd64.deb +Size: 119527756 +SHA256: 8fb5b6af531110d74a3001e60b5916290f930301de7b90a41cb34b4027843040 +SHA1: 33374740ff1788302ab3cc66a3b3e21dad59f298 +MD5sum: 921a2e8c56e6c3c0e42a9b98bc91b19a +Description: ROCm FFT library +Maintainer: rocfft-maintainer@amd.com +Recommends: rocfft-dev6.3.1 (>=1.0.31.60301) +Version: 1.0.31.60301-48~20.04 +Installed-Size: 2677411 + +Package: rocjpeg +Architecture: amd64 +Depends: rocm-core, rocm-hip-runtime, libva2-amdgpu, libva-amdgpu-drm2, libva-amdgpu-wayland2, libva-amdgpu-x11-2, mesa-amdgpu-va-drivers +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg/rocjpeg_0.6.0.60301-48~20.04_amd64.deb +Size: 180622 +SHA256: e696d5f562298704872e9acb85f4726967ddb27aa920a16fc6c3cef0244c7304 +SHA1: 0a1cfb5ceb98ebad3afbe5c3c6f4ce135b4c5b61 +MD5sum: ec6635cb3bf14d1b1b325f481e3fb4d6 +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG runtime package provides rocJPEG library and license.txt +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 1535 + +Package: rocjpeg-dev +Architecture: amd64 +Depends: rocm-core, rocjpeg, rocm-hip-runtime-dev, libva-amdgpu-dev, pkg-config +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg-dev/rocjpeg-dev_0.6.0.60301-48~20.04_amd64.deb +Size: 4384036 +SHA256: 5ebc4c35fac12c358e9b977b71e960bc786126b78406e647db640795fd0fad2a +SHA1: 21aa90d9231ce82b5a01ab415527bd5a146fd4ce +MD5sum: bd013c213641b81fd671cf497042cd3d +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG develop package provides rocJPEG library, header files, samples, and license.txt +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 4505 + +Package: rocjpeg-dev-rpath6.3.1 +Architecture: amd64 +Depends: rocm-core-rpath6.3.1, rocjpeg-rpath6.3.1, rocm-hip-runtime-dev-rpath6.3.1, libva-amdgpu-dev, pkg-config +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg-dev-rpath6.3.1/rocjpeg-dev-rpath6.3.1_0.6.0.60301-48~20.04_amd64.deb +Size: 4248556 +SHA256: ba536ce9a3f3f98bb0dc673f2ab3a440c8c6f19921ed4559369df2d49e038a6e +SHA1: 8912b6c286391b52aadf7775d202690419657bf2 +MD5sum: 4db0d51b3d4c1c90dab6ec20c67afaf5 +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG develop package provides rocJPEG library, header files, samples, and license.txt +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 4505 + +Package: rocjpeg-dev6.3.1 +Architecture: amd64 +Depends: rocm-core6.3.1, rocjpeg6.3.1, rocm-hip-runtime-dev6.3.1, libva-amdgpu-dev, pkg-config +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg-dev6.3.1/rocjpeg-dev6.3.1_0.6.0.60301-48~20.04_amd64.deb +Size: 4248544 +SHA256: 4a06ab49c845d58ffaf24f850d544b9834dcfd405dd84db343aeef8bac83e851 +SHA1: 0e74e5c23ceb145a155f177d78dae7d8a2dc58a8 +MD5sum: bf4ba73e172d3c6bf06f838a582f8abf +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG develop package provides rocJPEG library, header files, samples, and license.txt +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 4505 + +Package: rocjpeg-rpath6.3.1 +Architecture: amd64 +Depends: rocm-core-rpath6.3.1, rocm-hip-runtime-rpath6.3.1, libva2-amdgpu, libva-amdgpu-drm2, libva-amdgpu-wayland2, libva-amdgpu-x11-2, mesa-amdgpu-va-drivers +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg-rpath6.3.1/rocjpeg-rpath6.3.1_0.6.0.60301-48~20.04_amd64.deb +Size: 86832 +SHA256: 07468cbb539fe88546028f2eac2f0e2fc7016749e4d9ab4520c9f6059c482478 +SHA1: 6f5045686c7b151fc0a10b64a9c1fb0ddd38d37b +MD5sum: 6e944fe28b2b0384289de5b9d331fb84 +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG runtime package provides rocJPEG library and license.txt +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 1535 + +Package: rocjpeg-test +Architecture: amd64 +Depends: rocm-core, rocjpeg-dev +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg-test/rocjpeg-test_0.6.0.60301-48~20.04_amd64.deb +Size: 2494 +SHA256: b594d84ef46eabce1c8e7a6ab861e96e6fdc8897132b7094a84eda723dd03d04 +SHA1: 53f4c12960feff60f464844d77c858b98a37119f +MD5sum: f08340427f077b809ba954de33e6cad0 +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG Test package provides rocJPEG Test Components +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 37 + +Package: rocjpeg-test-rpath6.3.1 +Architecture: amd64 +Depends: rocm-core-rpath6.3.1, rocjpeg-dev-rpath6.3.1 +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg-test-rpath6.3.1/rocjpeg-test-rpath6.3.1_0.6.0.60301-48~20.04_amd64.deb +Size: 2652 +SHA256: 379bc2c3f8acb22bb808a161363c43d4a1daf51d651ac06fb4391a2257af3874 +SHA1: 8f258fdcec5054f8dca4e39805600510c07274aa +MD5sum: 47f61de5c38740ffaaf69f3f13c530f1 +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG Test package provides rocJPEG Test Components +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 37 + +Package: rocjpeg-test6.3.1 +Architecture: amd64 +Depends: rocm-core6.3.1, rocjpeg-dev6.3.1 +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg-test6.3.1/rocjpeg-test6.3.1_0.6.0.60301-48~20.04_amd64.deb +Size: 2648 +SHA256: 8a09ec781efb6610af559a3935676331b0f322284182d0eeb2e68b6e9c4124d5 +SHA1: f3b1dc1dd8791e2cfa9d79aff570b48fe527c8b2 +MD5sum: b2b19472ab1545fc358e2534f8b88108 +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG Test package provides rocJPEG Test Components +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 37 + +Package: rocjpeg6.3.1 +Architecture: amd64 +Depends: rocm-core6.3.1, rocm-hip-runtime6.3.1, libva2-amdgpu, libva-amdgpu-drm2, libva-amdgpu-wayland2, libva-amdgpu-x11-2, mesa-amdgpu-va-drivers +Priority: optional +Section: devel +Filename: pool/main/r/rocjpeg6.3.1/rocjpeg6.3.1_0.6.0.60301-48~20.04_amd64.deb +Size: 86756 +SHA256: c36a6a761c42ea64bcdd51924cf0e8b2bc80d274ab83920eec3b0cb95f74153c +SHA1: eb020f62b6436ede5d0c7dba542ee940e0f2796e +MD5sum: a64d047b7939cd2d8af21a507f5de668 +Description: AMD rocJPEG is a high performance JPEG decode SDK for AMD GPUs. rocJPEG runtime package provides rocJPEG library and license.txt +Homepage: https://github.com/ROCm/rocJPEG +Maintainer: rocJPEG Support +Version: 0.6.0.60301-48~20.04 +Installed-Size: 1535 Package: rocm Architecture: amd64 -Depends: rocm-utils (= 6.2.2.60202-116~20.04), rocm-developer-tools (= 6.2.2.60202-116~20.04), rocm-openmp-sdk (= 6.2.2.60202-116~20.04), rocm-opencl-sdk (= 6.2.2.60202-116~20.04), rocm-ml-sdk (= 6.2.2.60202-116~20.04), mivisionx (= 3.0.0.60202-116~20.04), migraphx (= 2.10.0.60202-116~20.04), rpp (= 1.8.0.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), migraphx-dev (= 2.10.0.60202-116~20.04), mivisionx-dev (= 3.0.0.60202-116~20.04), rpp-dev (= 1.8.0.60202-116~20.04) +Depends: rocm-utils (= 6.3.1.60301-48~20.04), rocm-developer-tools (= 6.3.1.60301-48~20.04), rocm-openmp-sdk (= 6.3.1.60301-48~20.04), rocm-opencl-sdk (= 6.3.1.60301-48~20.04), rocm-ml-sdk (= 6.3.1.60301-48~20.04), mivisionx (= 3.1.0.60301-48~20.04), migraphx (= 2.11.0.60301-48~20.04), rpp (= 1.9.1.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), migraphx-dev (= 2.11.0.60301-48~20.04), mivisionx-dev (= 3.1.0.60301-48~20.04), rpp-dev (= 1.9.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm/rocm_6.2.2.60202-116~20.04_amd64.deb -Size: 2070 -SHA256: 88f25e6319a83d69a99c01fa9e48f77c87e1f920b883999f37f64e89d3717413 -SHA1: f77845d4d8746136c85315bfc2db1dd097711e5c -MD5sum: 4d2d217e683d0aa90b6f1b53b8594de8 +Filename: pool/main/r/rocm/rocm_6.3.1.60301-48~20.04_amd64.deb +Size: 2134 +SHA256: afb97607b6617dfdaf9228e649bee237456a61801cb7f8199ffcc9b00fe5dc94 +SHA1: 373eb7230739c42c38d72003ab3d597a3fa0fbb1 +MD5sum: 27ae41340f75b470b6f473413d2af12b Description: Radeon Open Compute (ROCm) software stack meta package Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm dev support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-asan -Architecture: amd64 -Depends: rocm (= 6.2.2.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-developer-tools-asan (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan (= 6.2.2.60202-116~20.04), rocm-opencl-runtime-asan (= 6.2.2.60202-116~20.04), rocm-ml-libraries-asan (= 6.2.2.60202-116~20.04), mivisionx-asan (= 3.0.0.60202-116~20.04), migraphx-asan (= 2.10.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-asan/rocm-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 866 -SHA256: 4340e538b16dbd09b104d903d69e5848a8029a22cb9c39524659a0019394c0de -SHA1: e4422ffc30c935117ca3a39994533495c6153474 -MD5sum: d7dece40da9a777ab0e8a0f0a178f70d -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm (= 6.2.2.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-developer-tools-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-runtime-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-ml-libraries-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), mivisionx-asan-rpath6.2.2 (= 3.0.0.60202-116~20.04), migraphx-asan-rpath6.2.2 (= 2.10.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-asan-rpath6.2.2/rocm-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1064 -SHA256: 4f74c49171251721df69fd70296d5414d0a844265e7c6d6ed350536a56f43d99 -SHA1: 54ae89a5b4c13d095f9082314c87c77bbe1148fb -MD5sum: 33c625f293b9d7c082537dfba6571315 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-asan6.2.2 -Architecture: amd64 -Depends: rocm (= 6.2.2.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-developer-tools-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-runtime-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-ml-libraries-asan6.2.2 (= 6.2.2.60202-116~20.04), mivisionx-asan6.2.2 (= 3.0.0.60202-116~20.04), migraphx-asan6.2.2 (= 2.10.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-asan6.2.2/rocm-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1056 -SHA256: c9cbc95680d8e6f3703ba332ce36950ef19164366ad86b934659c736ef3d9f99 -SHA1: 0423fef60d2e1490309a391139ca42ad621ed264 -MD5sum: 35daeb7a00cc73c9054bbcb5b5aadf2b -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-bandwidth-test @@ -6382,47 +3691,47 @@ Architecture: amd64 Depends: libstdc++6, hsa-rocr Priority: optional Section: devel -Filename: pool/main/r/rocm-bandwidth-test/rocm-bandwidth-test_1.4.0.60202-116~20.04_amd64.deb -Size: 61130 -SHA256: 557a5448e348c2afbcac0fb245e07ecf14f1c8096acec1b585cc51a55c2ae536 -SHA1: 6e4b62169261c77482bffb7690d16aeb0df311d7 -MD5sum: 37ed3d1f3fd97e2a2d0616c61b91cd1d +Filename: pool/main/r/rocm-bandwidth-test/rocm-bandwidth-test_1.4.0.60301-48~20.04_amd64.deb +Size: 61100 +SHA256: 30361636228854715828f0a92eefb0f5b8438f7a0f8cc093a0a927e2c2b3a277 +SHA1: 0b56032f96ab846503ed7737f9fc90667135483b +MD5sum: f6baa7536f5777257be5ace767ec0bc8 Description: Diagnostic utility tool to measure PCIe bandwidth on ROCm platforms Homepage: https://github.com/RadeonOpenCompute/rocm_bandwidth_test Maintainer: TODO -Version: 1.4.0.60202-116~20.04 +Version: 1.4.0.60301-48~20.04 Installed-Size: 177 -Package: rocm-bandwidth-test-rpath6.2.2 +Package: rocm-bandwidth-test-rpath6.3.1 Architecture: amd64 -Depends: libstdc++6, hsa-rocr-rpath6.2.2 +Depends: libstdc++6, hsa-rocr-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-bandwidth-test-rpath6.2.2/rocm-bandwidth-test-rpath6.2.2_1.4.0.60202-116~20.04_amd64.deb -Size: 49716 -SHA256: e8a944b01979019839ad50da4dfce048852f883070ffb9e44b1e60a2344354c4 -SHA1: 025354cffd40b920c156b99d09c791eebcbba465 -MD5sum: aa4963ea17ccb8772164d7238fcb4f73 +Filename: pool/main/r/rocm-bandwidth-test-rpath6.3.1/rocm-bandwidth-test-rpath6.3.1_1.4.0.60301-48~20.04_amd64.deb +Size: 49692 +SHA256: 6caf895254a1591ac6ede1f21ef19eccd7e420c0edb68fa9b79d5622107fcb96 +SHA1: 06dbd36ef080ea3b24046030e00097717aeba182 +MD5sum: 85052a78bdf2c7dd9aea8bf91adedea1 Description: Diagnostic utility tool to measure PCIe bandwidth on ROCm platforms Homepage: https://github.com/RadeonOpenCompute/rocm_bandwidth_test Maintainer: TODO -Version: 1.4.0.60202-116~20.04 +Version: 1.4.0.60301-48~20.04 Installed-Size: 177 -Package: rocm-bandwidth-test6.2.2 +Package: rocm-bandwidth-test6.3.1 Architecture: amd64 -Depends: libstdc++6, hsa-rocr6.2.2 +Depends: libstdc++6, hsa-rocr6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-bandwidth-test6.2.2/rocm-bandwidth-test6.2.2_1.4.0.60202-116~20.04_amd64.deb -Size: 49676 -SHA256: c3c6ea3ba0dc81e4d5c9c9f958840497f5431e57a53f376fbb22d24766666c33 -SHA1: 2fd1b0b7cbb3261bb7c5983eb3f0fbd30bb2535f -MD5sum: 9f830634d0e84161e67d1b36d50d4f22 +Filename: pool/main/r/rocm-bandwidth-test6.3.1/rocm-bandwidth-test6.3.1_1.4.0.60301-48~20.04_amd64.deb +Size: 49700 +SHA256: 0af6da89a17346a6464daf9e6ca2888287280ccd6f1707340de04041e252b91f +SHA1: fb95181d1a0396750e1f45827128fdb8429e946e +MD5sum: 14631803b7c989bd12e0b0464ed23f22 Description: Diagnostic utility tool to measure PCIe bandwidth on ROCm platforms Homepage: https://github.com/RadeonOpenCompute/rocm_bandwidth_test Maintainer: TODO -Version: 1.4.0.60202-116~20.04 +Version: 1.4.0.60301-48~20.04 Installed-Size: 177 Package: rocm-cmake @@ -6430,737 +3739,317 @@ Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocm-cmake/rocm-cmake_0.13.0.60202-116~20.04_amd64.deb -Size: 24624 -SHA256: 31207fc63787c40320d8b3688a39d21c3566bf5bcde69e1772cabc8995caac1d -SHA1: 62206dbb5c2a54fa9483f9cc394a51662947ee89 -MD5sum: 5a35a11be0535a0cc9fe821b55b1ea0a +Filename: pool/main/r/rocm-cmake/rocm-cmake_0.14.0.60301-48~20.04_amd64.deb +Size: 24678 +SHA256: 5c63a1412af39f6cfb0026086a9b926d9c5f925b701ed6be91d341c1dc0080c8 +SHA1: d2558e881e24e9f5c7c6d570086e81d7e3b6feba +MD5sum: 708332776ad4a307205d5bd11cccba6b Description: rocm-cmake built using CMake Maintainer: Paul Fultz II pfultz@amd.com -Version: 0.13.0.60202-116~20.04 +Version: 0.14.0.60301-48~20.04 Installed-Size: 157 -Package: rocm-cmake-rpath6.2.2 +Package: rocm-cmake-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-cmake-rpath6.2.2/rocm-cmake-rpath6.2.2_0.13.0.60202-116~20.04_amd64.deb -Size: 24744 -SHA256: 641c636e610f6cb3539387c69ac06bd91254c5bd4e95c02c3dc7882c4f8988f6 -SHA1: aa8b284dc66bd452e74934831d9776c68602e49d -MD5sum: b0ad646508ffe470267af5f220cf5cf8 +Filename: pool/main/r/rocm-cmake-rpath6.3.1/rocm-cmake-rpath6.3.1_0.14.0.60301-48~20.04_amd64.deb +Size: 24796 +SHA256: f6c34790436288a3dca31a54f460ac45f0d34025da46227313ea5707f306c7b8 +SHA1: 3eaf502cd4e32722536c3c3bd2effe61bf7cb20b +MD5sum: 2383300e1c8232b4c0b3307cbae08868 Description: rocm-cmake built using CMake Maintainer: Paul Fultz II pfultz@amd.com -Version: 0.13.0.60202-116~20.04 +Version: 0.14.0.60301-48~20.04 Installed-Size: 157 -Package: rocm-cmake6.2.2 +Package: rocm-cmake6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-cmake6.2.2/rocm-cmake6.2.2_0.13.0.60202-116~20.04_amd64.deb -Size: 24748 -SHA256: 6dea74b5449f98e8eb68bd0600fe3091147f0c9b5a24d4173550944879204ba5 -SHA1: 6249f511fea69e2392e438462a32319ac48bc42c -MD5sum: e3ed4a0bd04d8a1a5235a19d92810ada +Filename: pool/main/r/rocm-cmake6.3.1/rocm-cmake6.3.1_0.14.0.60301-48~20.04_amd64.deb +Size: 24792 +SHA256: e64dfcb70eae5bd7ab11da7f5c744652d5ddd8e918f9af3be367e48070c5c70c +SHA1: 866ad07fd16233947a12cfab21cc4dac0f02eeb5 +MD5sum: 8eb3f1559d0ce5872af185d15adad6d0 Description: rocm-cmake built using CMake Maintainer: Paul Fultz II pfultz@amd.com -Version: 0.13.0.60202-116~20.04 +Version: 0.14.0.60301-48~20.04 Installed-Size: 157 Package: rocm-core Architecture: amd64 Priority: optional Section: devel -Filename: pool/main/r/rocm-core/rocm-core_6.2.2.60202-116~20.04_amd64.deb -Size: 10732 -SHA256: 0eb844163e0f1a7f71c593ff3331a6c4cc6bae2d2ca775802d2ad79fcf7f10e2 -SHA1: 86ebd4bca8b9126b0d5aaa3ed3b47ca8197e4f78 -MD5sum: 7aa94008ad13576cd9b10b33f738b4c3 +Filename: pool/main/r/rocm-core/rocm-core_6.3.1.60301-48~20.04_amd64.deb +Size: 14206 +SHA256: 6ca6c47369b00819d34fa8fde55f9c99a3da369bde4da2774b237d9b5bc91c48 +SHA1: 91e2258f40d34f881c42058a06c1a68d82c55344 +MD5sum: eee51ee3a67229482cfc40e071ca6839 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 110 +Version: 6.3.1.60301-48~20.04 +Installed-Size: 127 -Package: rocm-core-asan -Architecture: amd64 -Depends: rocm-core -Priority: optional -Section: devel -Filename: pool/main/r/rocm-core-asan/rocm-core-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 22902 -SHA256: 4ed319063477ddec5b5a9da08f43bbe5a7d346f84c31ae4ee2f893fab2efb139 -SHA1: 151bc2c786bd92d9c42c40f988b371759f3ea4ec -MD5sum: b89fe9ae200ac8d5b2f6a28838ca1a6c -Description: Radeon Open Compute (ROCm) AddressSanitizer Instrumented Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 263 - -Package: rocm-core-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core -Priority: optional -Section: devel -Filename: pool/main/r/rocm-core-asan-rpath6.2.2/rocm-core-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 16596 -SHA256: 31cbe5391dc0b1561dfd8ca05af376bc028062b4c51b557ea6cd655ce5b8080b -SHA1: 40d745c69f335fc066b7f321be96c1b33565d50b -MD5sum: 180c5856230a44807cc70ccd280e8c5c -Description: Radeon Open Compute (ROCm) AddressSanitizer Instrumented Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 263 - -Package: rocm-core-asan6.2.2 -Architecture: amd64 -Depends: rocm-core -Priority: optional -Section: devel -Filename: pool/main/r/rocm-core-asan6.2.2/rocm-core-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 16528 -SHA256: f1753e41837855bfc23696e85e49a0709a59d74d7f0343e737cc5c9244939f73 -SHA1: 4b23898ae69da7008472d89434b729a0c54a9b51 -MD5sum: 65d604fa37c56515fe4fd6ecfb60a397 -Description: Radeon Open Compute (ROCm) AddressSanitizer Instrumented Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 263 - -Package: rocm-core-rpath6.2.2 +Package: rocm-core-rpath6.3.1 Architecture: amd64 Priority: optional Section: devel -Filename: pool/main/r/rocm-core-rpath6.2.2/rocm-core-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 9800 -SHA256: bb1ad1b2b589a9f4023e244f9644f8a67d18963d84f2673a00e623d16fea7212 -SHA1: 2af716b5a92ce5a6a679d67d273645217817bf50 -MD5sum: 475ad31680dbe7d3ec672e460499f8d5 +Filename: pool/main/r/rocm-core-rpath6.3.1/rocm-core-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 12384 +SHA256: 5eb1c1c34660be60e074829fb34ccf350144e1eac498e2447bc325872530b8bc +SHA1: 8c32a3efa2ed5a0212e26e1576ce70ccb6f7699b +MD5sum: 4f2ea7bf0db08d24473b501fec99c163 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 110 +Version: 6.3.1.60301-48~20.04 +Installed-Size: 127 -Package: rocm-core6.2.2 +Package: rocm-core6.3.1 Architecture: amd64 Priority: optional Section: devel -Filename: pool/main/r/rocm-core6.2.2/rocm-core6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 9796 -SHA256: 4a58d1630f8afa5a43b4f0d3e10202b45e3d3230d8bddbce7a10906ba5e5584a -SHA1: 18fd6d66028d086bf049df5e3be8bcc277061787 -MD5sum: 08ed3233fd2ee39d51685d2a494ed4b4 +Filename: pool/main/r/rocm-core6.3.1/rocm-core6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 12392 +SHA256: 5a8d2ff06f866989b93a25578ac7a7c2593ed2cc4b64d6ca66698951ded25d01 +SHA1: 1d47a0c865f37c6be9a7a96aef5348bf1a38909a +MD5sum: 9b48a91ca0e973c4e0921f644c95f8cb Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 110 +Version: 6.3.1.60301-48~20.04 +Installed-Size: 127 Package: rocm-dbgapi Architecture: amd64 Depends: comgr(>=1.2.0), rocm-core, pci.ids Priority: optional Section: devel -Filename: pool/main/r/rocm-dbgapi/rocm-dbgapi_0.76.0.60202-116~20.04_amd64.deb -Size: 1730956 -SHA256: 9231e0ddf9118057cac4456dfc10219c3bd9058f44ff883b5c92d9cb14c183d5 -SHA1: 88829100ea95063ba0a757bfe7fb5fe7ef23bc98 -MD5sum: 0c18badb7a280ca614c5c98269dfdfc8 +Filename: pool/main/r/rocm-dbgapi/rocm-dbgapi_0.77.0.60301-48~20.04_amd64.deb +Size: 1754988 +SHA256: 7958c46a63459624b017126e9f8082793cb890045b7f90dafd5db8525b50c5a6 +SHA1: 5cfc918c1392e718694af70ae6290fce95f5373f +MD5sum: 169dfc6f4f9dd9296d1d819d57af9f3a Description: Library to provide AMD GPU debugger API Non ASAN libraries, include files for the ROCM-DBGAPI Maintainer: ROCm Debugger Support -Version: 0.76.0.60202-116~20.04 -Installed-Size: 7367 - -Package: rocm-dbgapi-asan -Architecture: amd64 -Depends: comgr-asan(>=1.2.0), rocm-core-asan, pci.ids -Priority: optional -Section: devel -Filename: pool/main/r/rocm-dbgapi-asan/rocm-dbgapi-asan_0.76.0.60202-116~20.04_amd64.deb -Size: 754514 -SHA256: e61c7603d321f85e63ce06871132d3beeef8c75efc4321d6d3f17ba0ad6eb5d7 -SHA1: f1b3d5037f6a37f13c7bcb2ad2a85b234b7593a8 -MD5sum: 9abb8821540d851fae7134c0d6167093 -Description: Library to provide AMD GPU debugger API - ASAN libraries for the ROCM-DBGAPI -Maintainer: ROCm Debugger Support -Version: 0.76.0.60202-116~20.04 -Installed-Size: 7901 - -Package: rocm-dbgapi-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: fa60551eb22cd4746235981d2084d160d542b299 -Depends: rocm-dbgapi-asan (= 0.76.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-dbgapi-asan-dbgsym/rocm-dbgapi-asan-dbgsym_0.76.0.60202-116~20.04_amd64.deb -Size: 4740596 -SHA256: 2a17bdb5fb803dd69e46eecf839daa30546ccb3709eafea6417436d1c86b2c6d -SHA1: 163abd48df4f3f7882d2b39e0d23e0abfcafcf51 -MD5sum: a37b29d96e6cf44a8114a24385dc7379 -Description: debug symbols for rocm-dbgapi-asan -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 0.76.0.60202-116~20.04 -Installed-Size: 18280 - -Package: rocm-dbgapi-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: fa60551eb22cd4746235981d2084d160d542b299 -Depends: rocm-dbgapi-asan-rpath6.2.2 (= 0.76.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-dbgapi-asan-dbgsym-rpath6.2.2/rocm-dbgapi-asan-dbgsym-rpath6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 2808484 -SHA256: d389a061f6e13b1adb60e034b2f47c22085354b88f47ae39ffb5b686786437a5 -SHA1: 96a3b59fce20b1239cd33cf4d6617ce80b899c25 -MD5sum: f03a7856ca47245ffa4d9973824e4a11 -Description: debug symbols for rocm-dbgapi-asan -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 0.76.0.60202-116~20.04 -Installed-Size: 18280 - -Package: rocm-dbgapi-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: fa60551eb22cd4746235981d2084d160d542b299 -Depends: rocm-dbgapi-asan6.2.2 (= 0.76.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-dbgapi-asan-dbgsym6.2.2/rocm-dbgapi-asan-dbgsym6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 2807632 -SHA256: f5d6e8337b2c815a000a5e2c0dcb4405dc5e106616b5f77ac92d5c88124a51b6 -SHA1: e08bcdcf5ac570157b76c7a478769dd3f361a57d -MD5sum: 24ea4ba78ea8c72f5a5c1297848a0242 -Description: debug symbols for rocm-dbgapi-asan -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 0.76.0.60202-116~20.04 -Installed-Size: 18280 - -Package: rocm-dbgapi-asan-rpath6.2.2 -Architecture: amd64 -Depends: comgr-asan-rpath6.2.2(>=1.2.0), rocm-core-asan-rpath6.2.2, pci.ids -Priority: optional -Section: devel -Filename: pool/main/r/rocm-dbgapi-asan-rpath6.2.2/rocm-dbgapi-asan-rpath6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 451744 -SHA256: 7245e2e81f2d02c4ea0baa21495121e47caff9c5ea6b104d9ceb6ee0daf5cfd4 -SHA1: a4f555c6c52ae8f53def1a77199114383c9a8366 -MD5sum: 50234f5192f33ee92c3d5a17848ee070 -Description: Library to provide AMD GPU debugger API - ASAN libraries for the ROCM-DBGAPI -Maintainer: ROCm Debugger Support -Version: 0.76.0.60202-116~20.04 -Installed-Size: 7901 - -Package: rocm-dbgapi-asan6.2.2 -Architecture: amd64 -Depends: comgr-asan6.2.2(>=1.2.0), rocm-core-asan6.2.2, pci.ids -Priority: optional -Section: devel -Filename: pool/main/r/rocm-dbgapi-asan6.2.2/rocm-dbgapi-asan6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 451668 -SHA256: d75156af306fa5d357b2d62a13cf74a3853f111c54b65753a15bb74fbd46d7cc -SHA1: 08a372020dc08f26c95ab3a574c399fffb7e97c1 -MD5sum: 6227ed8c260e94fa6a8f8b8e61904559 -Description: Library to provide AMD GPU debugger API - ASAN libraries for the ROCM-DBGAPI -Maintainer: ROCm Debugger Support -Version: 0.76.0.60202-116~20.04 -Installed-Size: 7901 +Version: 0.77.0.60301-48~20.04 +Installed-Size: 7505 Package: rocm-dbgapi-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: b50eb0c252172d4e19e0f058fe3ae57d359a9865 -Depends: rocm-dbgapi (= 0.76.0.60202-116~20.04) +Build-Ids: a6b8363ecc5766457dc4a3aff7a400cfe9fa45f8 +Depends: rocm-dbgapi (= 0.77.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocm-dbgapi-dbgsym/rocm-dbgapi-dbgsym_0.76.0.60202-116~20.04_amd64.deb -Size: 11620730 -SHA256: d0d0fc1387f071adf73bd2b74ff0c45f2ebb78c203c5a90c74b78653d1f74920 -SHA1: 032b8d1106a5018b12c12715bbb7a0c8677d5e5b -MD5sum: db33aba58df29027cf270706a1a0ec08 +Filename: pool/main/r/rocm-dbgapi-dbgsym/rocm-dbgapi-dbgsym_0.77.0.60301-48~20.04_amd64.deb +Size: 11740482 +SHA256: 7bfb8608665f2dea65e26be1f24c0ba9fb4ff011f179a8ff5e10fab580bf7326 +SHA1: 59e1d3066a3717d65f7bc252488a7cd8cdf87f37 +MD5sum: 07bf2e29c54e0abaa8c2f71c7e4fc008 Description: debug symbols for rocm-dbgapi Maintainer: ROCm Debugger Support Package-Type: ddeb -Version: 0.76.0.60202-116~20.04 -Installed-Size: 47932 +Version: 0.77.0.60301-48~20.04 +Installed-Size: 48461 -Package: rocm-dbgapi-dbgsym-rpath6.2.2 +Package: rocm-dbgapi-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: b50eb0c252172d4e19e0f058fe3ae57d359a9865 -Depends: rocm-dbgapi-rpath6.2.2 (= 0.76.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-dbgapi-dbgsym-rpath6.2.2/rocm-dbgapi-dbgsym-rpath6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 7260420 -SHA256: bdfb25f0f6ac51b12373c071d289f981537b9224784280a8586a8b1e23869584 -SHA1: 509d55c44753e191a4e566fc2c33850b8982a6c5 -MD5sum: 36b0107af8fa5fbe307f6684a2ff1664 -Description: debug symbols for rocm-dbgapi -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 0.76.0.60202-116~20.04 -Installed-Size: 47932 - -Package: rocm-dbgapi-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: b50eb0c252172d4e19e0f058fe3ae57d359a9865 -Depends: rocm-dbgapi6.2.2 (= 0.76.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-dbgapi-dbgsym6.2.2/rocm-dbgapi-dbgsym6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 7260416 -SHA256: 27b57193f687a794dc9144a6549f34ce85ce742422f7cde4122e4bedb1320468 -SHA1: f9ff724f74ac749a83ac6fa70f5eb70b4e048269 -MD5sum: 0a0ed14c9c3a02fb09b551d8ce803dff -Description: debug symbols for rocm-dbgapi -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 0.76.0.60202-116~20.04 -Installed-Size: 47932 - -Package: rocm-dbgapi-rpath6.2.2 -Architecture: amd64 -Depends: comgr-rpath6.2.2(>=1.2.0), rocm-core-rpath6.2.2, pci.ids +Depends: comgr-rpath6.3.1(>=1.2.0), rocm-core-rpath6.3.1, pci.ids Priority: optional Section: devel -Filename: pool/main/r/rocm-dbgapi-rpath6.2.2/rocm-dbgapi-rpath6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 1350048 -SHA256: bfecda202682b6be0264da4afa356463587a66a763ee7f6d10559f7a0fcf181d -SHA1: 1db9067605f4d937136a50b9a0a30e058c042520 -MD5sum: 50e780f3e6b0dfa2dc97701038b8af86 +Filename: pool/main/r/rocm-dbgapi-rpath6.3.1/rocm-dbgapi-rpath6.3.1_0.77.0.60301-48~20.04_amd64.deb +Size: 1367964 +SHA256: e0c41935f0c7a059235b905697c38d5a26669fced55e5668b0c86c3134671da1 +SHA1: 86711eb2101885a3fd32a1bc46f36dbf9c129a57 +MD5sum: 40ab88ed04a44e93fae8822c240b1c90 Description: Library to provide AMD GPU debugger API Non ASAN libraries, include files for the ROCM-DBGAPI Maintainer: ROCm Debugger Support -Version: 0.76.0.60202-116~20.04 -Installed-Size: 7367 +Version: 0.77.0.60301-48~20.04 +Installed-Size: 7505 -Package: rocm-dbgapi6.2.2 +Package: rocm-dbgapi6.3.1 Architecture: amd64 -Depends: comgr6.2.2(>=1.2.0), rocm-core6.2.2, pci.ids +Depends: comgr6.3.1(>=1.2.0), rocm-core6.3.1, pci.ids Priority: optional Section: devel -Filename: pool/main/r/rocm-dbgapi6.2.2/rocm-dbgapi6.2.2_0.76.0.60202-116~20.04_amd64.deb -Size: 1350292 -SHA256: 60e9695c0a910d3175f3920a69f7cd0efdb9b1d201631b0e5d2a18a3176c4ee5 -SHA1: e497327610aefef8aad235b6c837e928d21a1d23 -MD5sum: 80bf366d2f98db548560d9c8e29d4cc7 +Filename: pool/main/r/rocm-dbgapi6.3.1/rocm-dbgapi6.3.1_0.77.0.60301-48~20.04_amd64.deb +Size: 1367688 +SHA256: 610026c6ee792b7db3a0c08c23bd2124783f2d01f0275097564e2f8280b99769 +SHA1: eb40bb1627e73d105503552f4e33d419924f9153 +MD5sum: fbb6ea65db1ca4a44a2e57be071a11ee Description: Library to provide AMD GPU debugger API Non ASAN libraries, include files for the ROCM-DBGAPI Maintainer: ROCm Debugger Support -Version: 0.76.0.60202-116~20.04 -Installed-Size: 7367 +Version: 0.77.0.60301-48~20.04 +Installed-Size: 7505 Package: rocm-debug-agent Architecture: amd64 Depends: rocm-dbgapi, rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocm-debug-agent/rocm-debug-agent_2.0.3.60202-116~20.04_amd64.deb -Size: 54122 -SHA256: b420823cae5049a6325c3e14278cdef663096fb4fc9a9dd68058297ec2582aa3 -SHA1: 27cef8cf8ed9e9d7613b82913711b88a7a52269f -MD5sum: 095e473b2bfc2a33235284eff3a56c97 +Filename: pool/main/r/rocm-debug-agent/rocm-debug-agent_2.0.3.60301-48~20.04_amd64.deb +Size: 54112 +SHA256: a31f1478216a8656bff72dbebc060d199f3b74db54d3201545c5f6bbc4ac89b6 +SHA1: e987bc54917b15928deb434b868a5ee8996fd36b +MD5sum: cce9c6dfb38211360a7595ff20028428 Description: Radeon Open Compute Debug Agent (ROCdebug-agent) Dynamic libraries for the ROCdebug-agent Maintainer: ROCm Debugger Support -Version: 2.0.3.60202-116~20.04 +Version: 2.0.3.60301-48~20.04 Installed-Size: 263 -Package: rocm-debug-agent-asan -Architecture: amd64 -Depends: rocm-dbgapi-asan, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocm-debug-agent-asan/rocm-debug-agent-asan_2.0.3.60202-116~20.04_amd64.deb -Size: 88596 -SHA256: b165f819a19576dfd453ed2f88759aaa55d4c80d96db30f285879e8a5d550c83 -SHA1: 5c0e47f1e1ebb889a22d862291fdb1be8637cc68 -MD5sum: efc9c7c553c43af30f6dba389f2c3468 -Description: Radeon Open Compute Debug Agent (ROCdebug-agent) - AddressSanitizer libraries for the ROCdebug-agent -Maintainer: ROCm Debugger Support -Version: 2.0.3.60202-116~20.04 -Installed-Size: 499 - -Package: rocm-debug-agent-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: dc000cdfcbd0c98135ae29385a2869a5aec33714 -Depends: rocm-debug-agent-asan (= 2.0.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-debug-agent-asan-dbgsym/rocm-debug-agent-asan-dbgsym_2.0.3.60202-116~20.04_amd64.deb -Size: 439176 -SHA256: c3786755669e17127f417203fa026357134c27728d20e9f4ef3e2094e1e7c53f -SHA1: 9cdc7d3dc84e079fc0e7c053d417608c3a434dc7 -MD5sum: 0010b1963b2e18d9c6366c7412a75d0b -Description: debug symbols for rocm-debug-agent-asan -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 2.0.3.60202-116~20.04 -Installed-Size: 1436 - -Package: rocm-debug-agent-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: dc000cdfcbd0c98135ae29385a2869a5aec33714 -Depends: rocm-debug-agent-asan-rpath6.2.2 (= 2.0.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-debug-agent-asan-dbgsym-rpath6.2.2/rocm-debug-agent-asan-dbgsym-rpath6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 325780 -SHA256: cff63facaaa4b6e3e8dad7479fbfdfc105a3577ce9ca660c83dfbce499ca1df2 -SHA1: 61fdac7582800ffb3a26321cfc03b349f64a5762 -MD5sum: b74bf3307af3f90401ae5bc66e49e1ec -Description: debug symbols for rocm-debug-agent-asan -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 2.0.3.60202-116~20.04 -Installed-Size: 1436 - -Package: rocm-debug-agent-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: dc000cdfcbd0c98135ae29385a2869a5aec33714 -Depends: rocm-debug-agent-asan6.2.2 (= 2.0.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-debug-agent-asan-dbgsym6.2.2/rocm-debug-agent-asan-dbgsym6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 325700 -SHA256: 30d076ee19b796bfab49b59a065b8bc002fdf6cbb892117686d546bfbf19bdac -SHA1: fdcc170e2ee6e953fc0832b38372aaa91070c285 -MD5sum: 87caf76e486a14bf5113df9b666234ab -Description: debug symbols for rocm-debug-agent-asan -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 2.0.3.60202-116~20.04 -Installed-Size: 1436 - -Package: rocm-debug-agent-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-dbgapi-asan-rpath6.2.2, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-debug-agent-asan-rpath6.2.2/rocm-debug-agent-asan-rpath6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 71076 -SHA256: 995220681abcfc0801cd67bbea02e48e1136ed9be658fa64375e3ceeb7af232f -SHA1: 1a3a289f8be8561173b6f08e01b5eb8f8e816710 -MD5sum: 654e37d0b84582ebeb87979137279722 -Description: Radeon Open Compute Debug Agent (ROCdebug-agent) - AddressSanitizer libraries for the ROCdebug-agent -Maintainer: ROCm Debugger Support -Version: 2.0.3.60202-116~20.04 -Installed-Size: 499 - -Package: rocm-debug-agent-asan6.2.2 -Architecture: amd64 -Depends: rocm-dbgapi-asan6.2.2, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-debug-agent-asan6.2.2/rocm-debug-agent-asan6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 71012 -SHA256: 5d9319d012c016c445895dd6a253bfbfa09d8c9760a4cac72100b1c4208f3c6c -SHA1: d78fd52634c1f6fb1f61f064144b519a968b164a -MD5sum: c4f673c5f2f6c59c62e2d24de95f17bd -Description: Radeon Open Compute Debug Agent (ROCdebug-agent) - AddressSanitizer libraries for the ROCdebug-agent -Maintainer: ROCm Debugger Support -Version: 2.0.3.60202-116~20.04 -Installed-Size: 499 - Package: rocm-debug-agent-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 5559ca3618ae1b760af3f6aa17f447a6647d8b43 -Depends: rocm-debug-agent (= 2.0.3.60202-116~20.04) +Build-Ids: 53a0ba841ec2cf3dbb9ef07569ad326490ed0bd1 +Depends: rocm-debug-agent (= 2.0.3.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocm-debug-agent-dbgsym/rocm-debug-agent-dbgsym_2.0.3.60202-116~20.04_amd64.deb -Size: 706068 -SHA256: 473ce424f91b90790e5bbaa65c3792a68399d0e296e570eaa02597e97cc0f83e -SHA1: 91403aa58c56378961ee283d89b7cb39755fd4c6 -MD5sum: 0a57b766628521cfc9d6981171f86fda +Filename: pool/main/r/rocm-debug-agent-dbgsym/rocm-debug-agent-dbgsym_2.0.3.60301-48~20.04_amd64.deb +Size: 706350 +SHA256: 14d5ba831b6e9ff06a011762d8a0d86d88e0e65ef032983556bf3e11b8cb8195 +SHA1: 5504b2a9336eb7f0086df1ae51010f38fcb889db +MD5sum: 83f9480dc619aa23c084a3d76b388fc0 Description: debug symbols for rocm-debug-agent Maintainer: ROCm Debugger Support Package-Type: ddeb -Version: 2.0.3.60202-116~20.04 -Installed-Size: 2552 +Version: 2.0.3.60301-48~20.04 +Installed-Size: 2553 -Package: rocm-debug-agent-dbgsym-rpath6.2.2 +Package: rocm-debug-agent-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5559ca3618ae1b760af3f6aa17f447a6647d8b43 -Depends: rocm-debug-agent-rpath6.2.2 (= 2.0.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-debug-agent-dbgsym-rpath6.2.2/rocm-debug-agent-dbgsym-rpath6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 530004 -SHA256: cba481b6e7fa1144c9cce98769ad22f7d4a6f862cb7270a1141ef8ec7dae85e6 -SHA1: b56c83e608f8917e905937ee696850ccf28e0df8 -MD5sum: 49b669f561096fdf0be3aaa1c94af7af -Description: debug symbols for rocm-debug-agent -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 2.0.3.60202-116~20.04 -Installed-Size: 2552 - -Package: rocm-debug-agent-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5559ca3618ae1b760af3f6aa17f447a6647d8b43 -Depends: rocm-debug-agent6.2.2 (= 2.0.3.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-debug-agent-dbgsym6.2.2/rocm-debug-agent-dbgsym6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 530012 -SHA256: 1597d205dc3acf756a8bfba914ca5cd3c28f4a7af318a49bb8d525c9e3a7428e -SHA1: 921edc3de263f6eba4eb98aec0e39e480cf8de13 -MD5sum: 186b3e22ecc231fafd0d24413068fa41 -Description: debug symbols for rocm-debug-agent -Maintainer: ROCm Debugger Support -Package-Type: ddeb -Version: 2.0.3.60202-116~20.04 -Installed-Size: 2552 - -Package: rocm-debug-agent-rpath6.2.2 -Architecture: amd64 -Depends: rocm-dbgapi-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: rocm-dbgapi-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-debug-agent-rpath6.2.2/rocm-debug-agent-rpath6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 45100 -SHA256: 801a1997e6f40699ef0692bbcf7788fd8ca7375d6728fd0e21369b57dbcfcf41 -SHA1: 9249230a0cf7af3b3f83a6c9efff2174d12bff65 -MD5sum: 980019d403e10e8a19cb2e308b17a248 +Filename: pool/main/r/rocm-debug-agent-rpath6.3.1/rocm-debug-agent-rpath6.3.1_2.0.3.60301-48~20.04_amd64.deb +Size: 44928 +SHA256: fdf83b7575c2c14743c034351f73cff62cfeab0abc9c0739421f242c7a85680e +SHA1: de3a5d9047fea9495067286899ace3e9ef554652 +MD5sum: bf6dd53b6c1ab6341edf56a8d0247d9b Description: Radeon Open Compute Debug Agent (ROCdebug-agent) Dynamic libraries for the ROCdebug-agent Maintainer: ROCm Debugger Support -Version: 2.0.3.60202-116~20.04 +Version: 2.0.3.60301-48~20.04 Installed-Size: 263 -Package: rocm-debug-agent6.2.2 +Package: rocm-debug-agent6.3.1 Architecture: amd64 -Depends: rocm-dbgapi6.2.2, rocm-core6.2.2 +Depends: rocm-dbgapi6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-debug-agent6.2.2/rocm-debug-agent6.2.2_2.0.3.60202-116~20.04_amd64.deb -Size: 45088 -SHA256: 2dade24867c82278adef95e8e628b2574dc4298c85b2653d2b39439cc566c74e -SHA1: 7aea5bfd3b0cee3e29f04ad235f1383f9bb55985 -MD5sum: 6cc8cd6e664e97bbab1f70d884eee106 +Filename: pool/main/r/rocm-debug-agent6.3.1/rocm-debug-agent6.3.1_2.0.3.60301-48~20.04_amd64.deb +Size: 44960 +SHA256: b80557a4d9c6661167c93ab1d578c3471d7bebe52a2d572e6639814e82a66c20 +SHA1: 74915473af5fdc36d839e7cc2b86a34df91124ab +MD5sum: 910fe1251dfff43c1f536d0157d17d0e Description: Radeon Open Compute Debug Agent (ROCdebug-agent) Dynamic libraries for the ROCdebug-agent Maintainer: ROCm Debugger Support -Version: 2.0.3.60202-116~20.04 +Version: 2.0.3.60301-48~20.04 Installed-Size: 263 Package: rocm-dev Architecture: amd64 -Depends: amd-smi-lib (= 24.6.3.60202-116~20.04), comgr (= 2.8.0.60202-116~20.04), hip-doc (= 6.2.41134.60202-116~20.04), hipify-clang (= 18.0.0.60202-116~20.04), hip-runtime-amd (= 6.2.41134.60202-116~20.04), hip-samples (= 6.2.41134.60202-116~20.04), hipcc (= 1.1.1.60202-116~20.04), hsa-rocr (= 1.14.0.60202-116~20.04), hsa-amd-aqlprofile (= 1.0.0.60202.60202-116~20.04), rocm-llvm (= 18.0.0.24355.60202-116~20.04), openmp-extras-runtime (= 18.62.0.60202-116~20.04), rocm-cmake (= 0.13.0.60202-116~20.04), rocm-dbgapi (= 0.76.0.60202-116~20.04), rocm-debug-agent (= 2.0.3.60202-116~20.04), rocm-device-libs (= 1.0.0.60202-116~20.04), rocm-gdb (= 14.2.60202-116~20.04), rocm-smi-lib (= 7.3.0.60202-116~20.04), rocm-utils (= 6.2.2.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), rocm-opencl (= 2.0.0.60202-116~20.04), rocm-opencl-icd-loader (= 1.2.60202-116~20.04), rocprofiler-register (= 0.4.0.60202-116~20.04), rocprofiler (= 2.0.60202.60202-116~20.04), rocprofiler-plugins (= 2.0.60202.60202-116~20.04), roctracer (= 4.1.60202.60202-116~20.04), rocprofiler-sdk (= 0.4.0-116~20.04), rocprofiler-sdk-roctx (= 0.4.0-116~20.04), hip-dev (= 6.2.41134.60202-116~20.04), hsa-rocr-dev (= 1.14.0.60202-116~20.04), hsakmt-roct-dev (= 20240607.4.05.60202-116~20.04), rocprofiler-register (= 0.4.0.60202-116~20.04), rocprofiler-dev (= 2.0.60202.60202-116~20.04), roctracer-dev (= 4.1.60202.60202-116~20.04), openmp-extras-dev (= 18.62.0.60202-116~20.04), rocm-opencl-dev (= 2.0.0.60202-116~20.04) +Depends: amd-smi-lib (= 24.7.1.60301-48~20.04), comgr (= 2.8.0.60301-48~20.04), hip-doc (= 6.3.42133.60301-48~20.04), hipify-clang (= 18.0.0.60301-48~20.04), hip-runtime-amd (= 6.3.42133.60301-48~20.04), hip-samples (= 6.3.42133.60301-48~20.04), hipcc (= 1.1.1.60301-48~20.04), hsa-rocr (= 1.14.0.60301-48~20.04), hsa-amd-aqlprofile (= 1.0.0.60301-48~20.04), rocm-llvm (= 18.0.0.24491.60301-48~20.04), openmp-extras-runtime (= 18.63.0.60301-48~20.04), rocm-cmake (= 0.14.0.60301-48~20.04), rocm-dbgapi (= 0.77.0.60301-48~20.04), rocm-debug-agent (= 2.0.3.60301-48~20.04), rocm-device-libs (= 1.0.0.60301-48~20.04), rocm-gdb (= 15.2.60301-48~20.04), rocm-smi-lib (= 7.4.0.60301-48~20.04), rocm-utils (= 6.3.1.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), rocm-opencl (= 2.0.0.60301-48~20.04), rocprofiler-register (= 0.4.0.60301-48~20.04), rocprofiler (= 2.0.60301.60301-48~20.04), rocprofiler-plugins (= 2.0.60301.60301-48~20.04), roctracer (= 4.1.60301.60301-48~20.04), rocprofiler-sdk (= 0.5.0-48~20.04), rocprofiler-sdk-roctx (= 0.5.0-48~20.04), hip-dev (= 6.3.42133.60301-48~20.04), hsa-rocr-dev (= 1.14.0.60301-48~20.04), rocprofiler-register (= 0.4.0.60301-48~20.04), rocprofiler-dev (= 2.0.60301.60301-48~20.04), roctracer-dev (= 4.1.60301.60301-48~20.04), openmp-extras-dev (= 18.63.0.60301-48~20.04), rocm-opencl-dev (= 2.0.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-dev/rocm-dev_6.2.2.60202-116~20.04_amd64.deb -Size: 2482 -SHA256: 80ad1f6e43216b3eee65fcca9fddc29602dee6c9c57e0308cbb9549aceb149ce -SHA1: dc49a241679eba21cbf109908a0eff1eb821fe99 -MD5sum: cba5be5a642167dd5306f41fc287218c +Filename: pool/main/r/rocm-dev/rocm-dev_6.3.1.60301-48~20.04_amd64.deb +Size: 2542 +SHA256: 03565ae175606117f474581215630da0351f79525c2b7ecc88058e2c0c48f60d +SHA1: 8e6c825ddb73a8cd1fb5f32427b3e6ebe1e7c3ce +MD5sum: 26ecc90d678782256dcc0a0793db41b1 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-dev-asan +Package: rocm-dev-rpath6.3.1 Architecture: amd64 -Depends: rocm-dev (= 6.2.2.60202-116~20.04), comgr-asan (= 2.8.0.60202-116~20.04), hip-runtime-amd-asan (= 6.2.41134.60202-116~20.04), hsa-rocr-asan (= 1.14.0.60202-116~20.04), hsa-amd-aqlprofile-asan (= 1.0.0.60202.60202-116~20.04), openmp-extras-asan (= 18.62.0.60202-116~20.04), rocm-dbgapi-asan (= 0.76.0.60202-116~20.04), rocm-debug-agent-asan (= 2.0.3.60202-116~20.04), rocm-smi-lib-asan (= 7.3.0.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-opencl-asan (= 2.0.0.60202-116~20.04), rocprofiler-asan (= 2.0.60202.60202-116~20.04), roctracer-asan (= 4.1.60202.60202-116~20.04), hsakmt-roct-asan (= 20240607.4.05.60202-116~20.04), amd-smi-lib-asan (= 24.6.3.60202-116~20.04) +Depends: amd-smi-lib-rpath6.3.1 (= 24.7.1.60301-48~20.04), comgr-rpath6.3.1 (= 2.8.0.60301-48~20.04), hip-doc-rpath6.3.1 (= 6.3.42133.60301-48~20.04), hipify-clang-rpath6.3.1 (= 18.0.0.60301-48~20.04), hip-runtime-amd-rpath6.3.1 (= 6.3.42133.60301-48~20.04), hip-samples-rpath6.3.1 (= 6.3.42133.60301-48~20.04), hipcc-rpath6.3.1 (= 1.1.1.60301-48~20.04), hsa-rocr-rpath6.3.1 (= 1.14.0.60301-48~20.04), hsa-amd-aqlprofile-rpath6.3.1 (= 1.0.0.60301-48~20.04), rocm-llvm-rpath6.3.1 (= 18.0.0.24491.60301-48~20.04), openmp-extras-runtime-rpath6.3.1 (= 18.63.0.60301-48~20.04), rocm-cmake-rpath6.3.1 (= 0.14.0.60301-48~20.04), rocm-dbgapi-rpath6.3.1 (= 0.77.0.60301-48~20.04), rocm-debug-agent-rpath6.3.1 (= 2.0.3.60301-48~20.04), rocm-device-libs-rpath6.3.1 (= 1.0.0.60301-48~20.04), rocm-gdb-rpath6.3.1 (= 15.2.60301-48~20.04), rocm-smi-lib-rpath6.3.1 (= 7.4.0.60301-48~20.04), rocm-utils-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-rpath6.3.1 (= 2.0.0.60301-48~20.04), rocprofiler-register-rpath6.3.1 (= 0.4.0.60301-48~20.04), rocprofiler-rpath6.3.1 (= 2.0.60301.60301-48~20.04), rocprofiler-plugins-rpath6.3.1 (= 2.0.60301.60301-48~20.04), roctracer-rpath6.3.1 (= 4.1.60301.60301-48~20.04), rocprofiler-sdk-rpath6.3.1 (= 0.5.0-48~20.04), rocprofiler-sdk-roctx-rpath6.3.1 (= 0.5.0-48~20.04), hip-dev-rpath6.3.1 (= 6.3.42133.60301-48~20.04), hsa-rocr-dev-rpath6.3.1 (= 1.14.0.60301-48~20.04), rocprofiler-register-rpath6.3.1 (= 0.4.0.60301-48~20.04), rocprofiler-dev-rpath6.3.1 (= 2.0.60301.60301-48~20.04), roctracer-dev-rpath6.3.1 (= 4.1.60301.60301-48~20.04), openmp-extras-dev-rpath6.3.1 (= 18.63.0.60301-48~20.04), rocm-opencl-dev-rpath6.3.1 (= 2.0.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-dev-asan/rocm-dev-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 974 -SHA256: 55343f5dee7bb35785b35ce84d04c840043d2b85ab5df1917ef823f7ba4040dc -SHA1: 9c1e2431689e6dda3c9d62ac369a4d3f43220156 -MD5sum: 9c75d0f2864b39232a8be90de2a870ac +Filename: pool/main/r/rocm-dev-rpath6.3.1/rocm-dev-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2676 +SHA256: be75fcd84a38314fd255c5d43d5305a558938234eaf1a09749bebaa4e6ea6d02 +SHA1: 1113a2ab86d7ed1dbdc59aab971b6d5131ea327a +MD5sum: f5ef100b4ffb8d0be1507a5c2c4eb5ce Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-dev-asan-rpath6.2.2 +Package: rocm-dev6.3.1 Architecture: amd64 -Depends: rocm-dev (= 6.2.2.60202-116~20.04), comgr-asan-rpath6.2.2 (= 2.8.0.60202-116~20.04), hip-runtime-amd-asan-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hsa-rocr-asan-rpath6.2.2 (= 1.14.0.60202-116~20.04), hsa-amd-aqlprofile-asan-rpath6.2.2 (= 1.0.0.60202.60202-116~20.04), openmp-extras-asan-rpath6.2.2 (= 18.62.0.60202-116~20.04), rocm-dbgapi-asan-rpath6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent-asan-rpath6.2.2 (= 2.0.3.60202-116~20.04), rocm-smi-lib-asan-rpath6.2.2 (= 7.3.0.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-asan-rpath6.2.2 (= 2.0.0.60202-116~20.04), rocprofiler-asan-rpath6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-asan-rpath6.2.2 (= 4.1.60202.60202-116~20.04), hsakmt-roct-asan-rpath6.2.2 (= 20240607.4.05.60202-116~20.04), amd-smi-lib-asan-rpath6.2.2 (= 24.6.3.60202-116~20.04) +Depends: amd-smi-lib6.3.1 (= 24.7.1.60301-48~20.04), comgr6.3.1 (= 2.8.0.60301-48~20.04), hip-doc6.3.1 (= 6.3.42133.60301-48~20.04), hipify-clang6.3.1 (= 18.0.0.60301-48~20.04), hip-runtime-amd6.3.1 (= 6.3.42133.60301-48~20.04), hip-samples6.3.1 (= 6.3.42133.60301-48~20.04), hipcc6.3.1 (= 1.1.1.60301-48~20.04), hsa-rocr6.3.1 (= 1.14.0.60301-48~20.04), hsa-amd-aqlprofile6.3.1 (= 1.0.0.60301-48~20.04), rocm-llvm6.3.1 (= 18.0.0.24491.60301-48~20.04), openmp-extras-runtime6.3.1 (= 18.63.0.60301-48~20.04), rocm-cmake6.3.1 (= 0.14.0.60301-48~20.04), rocm-dbgapi6.3.1 (= 0.77.0.60301-48~20.04), rocm-debug-agent6.3.1 (= 2.0.3.60301-48~20.04), rocm-device-libs6.3.1 (= 1.0.0.60301-48~20.04), rocm-gdb6.3.1 (= 15.2.60301-48~20.04), rocm-smi-lib6.3.1 (= 7.4.0.60301-48~20.04), rocm-utils6.3.1 (= 6.3.1.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl6.3.1 (= 2.0.0.60301-48~20.04), rocprofiler-register6.3.1 (= 0.4.0.60301-48~20.04), rocprofiler6.3.1 (= 2.0.60301.60301-48~20.04), rocprofiler-plugins6.3.1 (= 2.0.60301.60301-48~20.04), roctracer6.3.1 (= 4.1.60301.60301-48~20.04), rocprofiler-sdk6.3.1 (= 0.5.0-48~20.04), rocprofiler-sdk-roctx6.3.1 (= 0.5.0-48~20.04), hip-dev6.3.1 (= 6.3.42133.60301-48~20.04), hsa-rocr-dev6.3.1 (= 1.14.0.60301-48~20.04), rocprofiler-register6.3.1 (= 0.4.0.60301-48~20.04), rocprofiler-dev6.3.1 (= 2.0.60301.60301-48~20.04), roctracer-dev6.3.1 (= 4.1.60301.60301-48~20.04), openmp-extras-dev6.3.1 (= 18.63.0.60301-48~20.04), rocm-opencl-dev6.3.1 (= 2.0.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-dev-asan-rpath6.2.2/rocm-dev-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1180 -SHA256: 38f520b676dc3a16baad5ee5bd7e7a12bd9e566029f83eb2190edde5a9c8ce14 -SHA1: 4b4588b272673293cc79bc17fe1abd840b9ee349 -MD5sum: 667949a874117d6fd2c970f9593c0709 +Filename: pool/main/r/rocm-dev6.3.1/rocm-dev6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2676 +SHA256: 4e54c99c2719a463407268fbd2023329f2fa915dc9a831bdef9248a03610a3ae +SHA1: fd4e7cafd8b9c8c71aa3b9e3d966df8c9c559208 +MD5sum: 8622e4ed9504ca89421e5426257befff Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-dev-asan6.2.2 -Architecture: amd64 -Depends: rocm-dev (= 6.2.2.60202-116~20.04), comgr-asan6.2.2 (= 2.8.0.60202-116~20.04), hip-runtime-amd-asan6.2.2 (= 6.2.41134.60202-116~20.04), hsa-rocr-asan6.2.2 (= 1.14.0.60202-116~20.04), hsa-amd-aqlprofile-asan6.2.2 (= 1.0.0.60202.60202-116~20.04), openmp-extras-asan6.2.2 (= 18.62.0.60202-116~20.04), rocm-dbgapi-asan6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent-asan6.2.2 (= 2.0.3.60202-116~20.04), rocm-smi-lib-asan6.2.2 (= 7.3.0.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-asan6.2.2 (= 2.0.0.60202-116~20.04), rocprofiler-asan6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-asan6.2.2 (= 4.1.60202.60202-116~20.04), hsakmt-roct-asan6.2.2 (= 20240607.4.05.60202-116~20.04), amd-smi-lib-asan6.2.2 (= 24.6.3.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-dev-asan6.2.2/rocm-dev-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1172 -SHA256: d3db3bbb321b42974786040c70af9e9cef00fd0aa882d1c27d32c4797eb0f65a -SHA1: 61f0b8397dfd0ef37f1f7e67dd085fe1b63cb881 -MD5sum: d8bf2fb8f31dda83b25511ae6cc0c8f0 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-dev-rpath6.2.2 -Architecture: amd64 -Depends: amd-smi-lib-rpath6.2.2 (= 24.6.3.60202-116~20.04), comgr-rpath6.2.2 (= 2.8.0.60202-116~20.04), hip-doc-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hipify-clang-rpath6.2.2 (= 18.0.0.60202-116~20.04), hip-runtime-amd-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hip-samples-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hipcc-rpath6.2.2 (= 1.1.1.60202-116~20.04), hsa-rocr-rpath6.2.2 (= 1.14.0.60202-116~20.04), hsa-amd-aqlprofile-rpath6.2.2 (= 1.0.0.60202.60202-116~20.04), rocm-llvm-rpath6.2.2 (= 18.0.0.24355.60202-116~20.04), openmp-extras-runtime-rpath6.2.2 (= 18.62.0.60202-116~20.04), rocm-cmake-rpath6.2.2 (= 0.13.0.60202-116~20.04), rocm-dbgapi-rpath6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent-rpath6.2.2 (= 2.0.3.60202-116~20.04), rocm-device-libs-rpath6.2.2 (= 1.0.0.60202-116~20.04), rocm-gdb-rpath6.2.2 (= 14.2.60202-116~20.04), rocm-smi-lib-rpath6.2.2 (= 7.3.0.60202-116~20.04), rocm-utils-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-rpath6.2.2 (= 2.0.0.60202-116~20.04), rocm-opencl-icd-loader-rpath6.2.2 (= 1.2.60202-116~20.04), rocprofiler-register-rpath6.2.2 (= 0.4.0.60202-116~20.04), rocprofiler-rpath6.2.2 (= 2.0.60202.60202-116~20.04), rocprofiler-plugins-rpath6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-rpath6.2.2 (= 4.1.60202.60202-116~20.04), rocprofiler-sdk-rpath6.2.2 (= 0.4.0-116~20.04), rocprofiler-sdk-roctx-rpath6.2.2 (= 0.4.0-116~20.04), hip-dev-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hsa-rocr-dev-rpath6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev-rpath6.2.2 (= 20240607.4.05.60202-116~20.04), rocprofiler-register-rpath6.2.2 (= 0.4.0.60202-116~20.04), rocprofiler-dev-rpath6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-dev-rpath6.2.2 (= 4.1.60202.60202-116~20.04), openmp-extras-dev-rpath6.2.2 (= 18.62.0.60202-116~20.04), rocm-opencl-dev-rpath6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-dev-rpath6.2.2/rocm-dev-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2640 -SHA256: 264769227a845786edd99d4be9bc9f8639e180000ee82646a8d6471e2af80d9e -SHA1: 60aaffbf5288d303863e0430860d8912c4b7fe78 -MD5sum: 8ce93c2a6d9858b45d927b7fe79511ea -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-dev6.2.2 -Architecture: amd64 -Depends: amd-smi-lib6.2.2 (= 24.6.3.60202-116~20.04), comgr6.2.2 (= 2.8.0.60202-116~20.04), hip-doc6.2.2 (= 6.2.41134.60202-116~20.04), hipify-clang6.2.2 (= 18.0.0.60202-116~20.04), hip-runtime-amd6.2.2 (= 6.2.41134.60202-116~20.04), hip-samples6.2.2 (= 6.2.41134.60202-116~20.04), hipcc6.2.2 (= 1.1.1.60202-116~20.04), hsa-rocr6.2.2 (= 1.14.0.60202-116~20.04), hsa-amd-aqlprofile6.2.2 (= 1.0.0.60202.60202-116~20.04), rocm-llvm6.2.2 (= 18.0.0.24355.60202-116~20.04), openmp-extras-runtime6.2.2 (= 18.62.0.60202-116~20.04), rocm-cmake6.2.2 (= 0.13.0.60202-116~20.04), rocm-dbgapi6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent6.2.2 (= 2.0.3.60202-116~20.04), rocm-device-libs6.2.2 (= 1.0.0.60202-116~20.04), rocm-gdb6.2.2 (= 14.2.60202-116~20.04), rocm-smi-lib6.2.2 (= 7.3.0.60202-116~20.04), rocm-utils6.2.2 (= 6.2.2.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl6.2.2 (= 2.0.0.60202-116~20.04), rocm-opencl-icd-loader6.2.2 (= 1.2.60202-116~20.04), rocprofiler-register6.2.2 (= 0.4.0.60202-116~20.04), rocprofiler6.2.2 (= 2.0.60202.60202-116~20.04), rocprofiler-plugins6.2.2 (= 2.0.60202.60202-116~20.04), roctracer6.2.2 (= 4.1.60202.60202-116~20.04), rocprofiler-sdk6.2.2 (= 0.4.0-116~20.04), rocprofiler-sdk-roctx6.2.2 (= 0.4.0-116~20.04), hip-dev6.2.2 (= 6.2.41134.60202-116~20.04), hsa-rocr-dev6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev6.2.2 (= 20240607.4.05.60202-116~20.04), rocprofiler-register6.2.2 (= 0.4.0.60202-116~20.04), rocprofiler-dev6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-dev6.2.2 (= 4.1.60202.60202-116~20.04), openmp-extras-dev6.2.2 (= 18.62.0.60202-116~20.04), rocm-opencl-dev6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-dev6.2.2/rocm-dev6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2636 -SHA256: 462c328cf0635dc8a25162aa730dd6cd99f3d2b72f13dc9849a4df2f19f1357d -SHA1: e73306f12cd5325b10a96e17fa5909faaf91e6c1 -MD5sum: cbe82554655953c74d8560618d250f1d -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-developer-tools Architecture: amd64 -Depends: amd-smi-lib (= 24.6.3.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), rocm-language-runtime (= 6.2.2.60202-116~20.04), rocm-dbgapi (= 0.76.0.60202-116~20.04), rocm-debug-agent (= 2.0.3.60202-116~20.04), rocm-gdb (= 14.2.60202-116~20.04), hsa-amd-aqlprofile (= 1.0.0.60202.60202-116~20.04), rocm-smi-lib (= 7.3.0.60202-116~20.04), rocprofiler-register (= 0.4.0.60202-116~20.04), rocprofiler (= 2.0.60202.60202-116~20.04), rocprofiler-plugins (= 2.0.60202.60202-116~20.04), roctracer (= 4.1.60202.60202-116~20.04), rocprofiler-sdk (= 0.4.0-116~20.04), rocprofiler-sdk-roctx (= 0.4.0-116~20.04), rocprofiler-dev (= 2.0.60202.60202-116~20.04), roctracer-dev (= 4.1.60202.60202-116~20.04) +Depends: amd-smi-lib (= 24.7.1.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), rocm-language-runtime (= 6.3.1.60301-48~20.04), rocm-dbgapi (= 0.77.0.60301-48~20.04), rocm-debug-agent (= 2.0.3.60301-48~20.04), rocm-gdb (= 15.2.60301-48~20.04), hsa-amd-aqlprofile (= 1.0.0.60301-48~20.04), rocm-smi-lib (= 7.4.0.60301-48~20.04), rocprofiler-register (= 0.4.0.60301-48~20.04), rocprofiler (= 2.0.60301.60301-48~20.04), rocprofiler-plugins (= 2.0.60301.60301-48~20.04), roctracer (= 4.1.60301.60301-48~20.04), rocprofiler-sdk (= 0.5.0-48~20.04), rocprofiler-sdk-roctx (= 0.5.0-48~20.04), rocprofiler-dev (= 2.0.60301.60301-48~20.04), roctracer-dev (= 4.1.60301.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-developer-tools/rocm-developer-tools_6.2.2.60202-116~20.04_amd64.deb -Size: 2176 -SHA256: 0b5bf0ec579556c24f73eed69f234d9286e54d122441220b7ff14627422fff64 -SHA1: 921737b00479e03d59d44fa48da10a07c13e5ab8 -MD5sum: ad413f59e0a66808e205c17d28414b88 +Filename: pool/main/r/rocm-developer-tools/rocm-developer-tools_6.3.1.60301-48~20.04_amd64.deb +Size: 2252 +SHA256: d3a50016194a12de7ba3c2948e24792ae406e9042d611066a5a27bc44e3a6d3e +SHA1: 6f4d0f784eb2ed96c5ab671e856abe319a4d5959 +MD5sum: 7c429e88e5c28752003986fc11f35353 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-developer-tools-asan +Package: rocm-developer-tools-rpath6.3.1 Architecture: amd64 -Depends: rocm-developer-tools (= 6.2.2.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan (= 6.2.2.60202-116~20.04), rocm-dbgapi-asan (= 0.76.0.60202-116~20.04), rocm-debug-agent-asan (= 2.0.3.60202-116~20.04), hsa-amd-aqlprofile-asan (= 1.0.0.60202.60202-116~20.04), rocm-smi-lib-asan (= 7.3.0.60202-116~20.04), amd-smi-lib-asan (= 24.6.3.60202-116~20.04), rocprofiler-asan (= 2.0.60202.60202-116~20.04), roctracer-asan (= 4.1.60202.60202-116~20.04) +Depends: amd-smi-lib-rpath6.3.1 (= 24.7.1.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-language-runtime-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-dbgapi-rpath6.3.1 (= 0.77.0.60301-48~20.04), rocm-debug-agent-rpath6.3.1 (= 2.0.3.60301-48~20.04), rocm-gdb-rpath6.3.1 (= 15.2.60301-48~20.04), hsa-amd-aqlprofile-rpath6.3.1 (= 1.0.0.60301-48~20.04), rocm-smi-lib-rpath6.3.1 (= 7.4.0.60301-48~20.04), rocprofiler-register-rpath6.3.1 (= 0.4.0.60301-48~20.04), rocprofiler-rpath6.3.1 (= 2.0.60301.60301-48~20.04), rocprofiler-plugins-rpath6.3.1 (= 2.0.60301.60301-48~20.04), roctracer-rpath6.3.1 (= 4.1.60301.60301-48~20.04), rocprofiler-sdk-rpath6.3.1 (= 0.5.0-48~20.04), rocprofiler-sdk-roctx-rpath6.3.1 (= 0.5.0-48~20.04), rocprofiler-dev-rpath6.3.1 (= 2.0.60301.60301-48~20.04), roctracer-dev-rpath6.3.1 (= 4.1.60301.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-developer-tools-asan/rocm-developer-tools-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 924 -SHA256: 883db6bf8c67d8170724c9a3b77b1fc5aace048f8562117d2347cb563f0c22bb -SHA1: db7d2f548bb4a23cdacda85568f6e027a1006f76 -MD5sum: 2df1ee3be6574f470d174e03be6fa917 +Filename: pool/main/r/rocm-developer-tools-rpath6.3.1/rocm-developer-tools-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2388 +SHA256: 0039e3d52b0d08d99ab3cd6a114c847ea429ac0ae7c812d0876f11f113039fc5 +SHA1: c2a88af179cdc5e47bdd471b610041f613377c6f +MD5sum: 2d754f02c2307b3e6b58ed4fb5c8568c Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-developer-tools-asan-rpath6.2.2 +Package: rocm-developer-tools6.3.1 Architecture: amd64 -Depends: rocm-developer-tools (= 6.2.2.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-dbgapi-asan-rpath6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent-asan-rpath6.2.2 (= 2.0.3.60202-116~20.04), hsa-amd-aqlprofile-asan-rpath6.2.2 (= 1.0.0.60202.60202-116~20.04), rocm-smi-lib-asan-rpath6.2.2 (= 7.3.0.60202-116~20.04), amd-smi-lib-asan-rpath6.2.2 (= 24.6.3.60202-116~20.04), rocprofiler-asan-rpath6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-asan-rpath6.2.2 (= 4.1.60202.60202-116~20.04) +Depends: amd-smi-lib6.3.1 (= 24.7.1.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-language-runtime6.3.1 (= 6.3.1.60301-48~20.04), rocm-dbgapi6.3.1 (= 0.77.0.60301-48~20.04), rocm-debug-agent6.3.1 (= 2.0.3.60301-48~20.04), rocm-gdb6.3.1 (= 15.2.60301-48~20.04), hsa-amd-aqlprofile6.3.1 (= 1.0.0.60301-48~20.04), rocm-smi-lib6.3.1 (= 7.4.0.60301-48~20.04), rocprofiler-register6.3.1 (= 0.4.0.60301-48~20.04), rocprofiler6.3.1 (= 2.0.60301.60301-48~20.04), rocprofiler-plugins6.3.1 (= 2.0.60301.60301-48~20.04), roctracer6.3.1 (= 4.1.60301.60301-48~20.04), rocprofiler-sdk6.3.1 (= 0.5.0-48~20.04), rocprofiler-sdk-roctx6.3.1 (= 0.5.0-48~20.04), rocprofiler-dev6.3.1 (= 2.0.60301.60301-48~20.04), roctracer-dev6.3.1 (= 4.1.60301.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-developer-tools-asan-rpath6.2.2/rocm-developer-tools-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1128 -SHA256: fc0324f4fe38435d028bd9178813dfc921be73ea4ccccfd0a24da14123db4215 -SHA1: 8754cdf1e164f6b87813f38adddbadf514565369 -MD5sum: 8a50cc65d8a20e10f4c2702e04ce9724 +Filename: pool/main/r/rocm-developer-tools6.3.1/rocm-developer-tools6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2388 +SHA256: de1452f01bb2e3a4d96b0cd46882fffd3d430ca7494db9e98884afa92d03ec6d +SHA1: 36b4462464e1b7faca30bd98aa9f6cb6c2d9aa85 +MD5sum: 228669c75d83c3cbd6c4cb51c4427a0d Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-developer-tools-asan6.2.2 -Architecture: amd64 -Depends: rocm-developer-tools (= 6.2.2.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-dbgapi-asan6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent-asan6.2.2 (= 2.0.3.60202-116~20.04), hsa-amd-aqlprofile-asan6.2.2 (= 1.0.0.60202.60202-116~20.04), rocm-smi-lib-asan6.2.2 (= 7.3.0.60202-116~20.04), amd-smi-lib-asan6.2.2 (= 24.6.3.60202-116~20.04), rocprofiler-asan6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-asan6.2.2 (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-developer-tools-asan6.2.2/rocm-developer-tools-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1120 -SHA256: 08b1c080d77770c15cc0c93267c841fc3d35da96bbd3221326b66c13a900cd7e -SHA1: 56023064d7c335620e43e29b777b238636a124bc -MD5sum: f3be38fe632d013fa72fa1dc057a8262 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-developer-tools-rpath6.2.2 -Architecture: amd64 -Depends: amd-smi-lib-rpath6.2.2 (= 24.6.3.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-dbgapi-rpath6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent-rpath6.2.2 (= 2.0.3.60202-116~20.04), rocm-gdb-rpath6.2.2 (= 14.2.60202-116~20.04), hsa-amd-aqlprofile-rpath6.2.2 (= 1.0.0.60202.60202-116~20.04), rocm-smi-lib-rpath6.2.2 (= 7.3.0.60202-116~20.04), rocprofiler-register-rpath6.2.2 (= 0.4.0.60202-116~20.04), rocprofiler-rpath6.2.2 (= 2.0.60202.60202-116~20.04), rocprofiler-plugins-rpath6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-rpath6.2.2 (= 4.1.60202.60202-116~20.04), rocprofiler-sdk-rpath6.2.2 (= 0.4.0-116~20.04), rocprofiler-sdk-roctx-rpath6.2.2 (= 0.4.0-116~20.04), rocprofiler-dev-rpath6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-dev-rpath6.2.2 (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-developer-tools-rpath6.2.2/rocm-developer-tools-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2332 -SHA256: d7a326d5c4aaf6105934bba43bc00281484363a3bcd0e620acd37196cfc7b21b -SHA1: e1aca54427e4608a3d74cbe3b3b251f7be78d889 -MD5sum: 9e8cc7bb810811e919fa36dc8bfa6be3 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-developer-tools6.2.2 -Architecture: amd64 -Depends: amd-smi-lib6.2.2 (= 24.6.3.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime6.2.2 (= 6.2.2.60202-116~20.04), rocm-dbgapi6.2.2 (= 0.76.0.60202-116~20.04), rocm-debug-agent6.2.2 (= 2.0.3.60202-116~20.04), rocm-gdb6.2.2 (= 14.2.60202-116~20.04), hsa-amd-aqlprofile6.2.2 (= 1.0.0.60202.60202-116~20.04), rocm-smi-lib6.2.2 (= 7.3.0.60202-116~20.04), rocprofiler-register6.2.2 (= 0.4.0.60202-116~20.04), rocprofiler6.2.2 (= 2.0.60202.60202-116~20.04), rocprofiler-plugins6.2.2 (= 2.0.60202.60202-116~20.04), roctracer6.2.2 (= 4.1.60202.60202-116~20.04), rocprofiler-sdk6.2.2 (= 0.4.0-116~20.04), rocprofiler-sdk-roctx6.2.2 (= 0.4.0-116~20.04), rocprofiler-dev6.2.2 (= 2.0.60202.60202-116~20.04), roctracer-dev6.2.2 (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-developer-tools6.2.2/rocm-developer-tools6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2328 -SHA256: 8462b9b602a48a09d2ae47d70bfe7fa12150708cca4fde949867d92c2e483a69 -SHA1: 4ff8ff622f6dc153b2a2e0fcf492232f336ab322 -MD5sum: 42bf05069dbf4d37d80bf4d07b9deedf -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-device-libs @@ -7168,1632 +4057,972 @@ Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocm-device-libs/rocm-device-libs_1.0.0.60202-116~20.04_amd64.deb -Size: 717744 -SHA256: c06570df2de10c233f6d8af26a4fc74373fbab7ff5c0f0a3ff0e9854e41068cc -SHA1: 29deb99526d011ff758f9fbf4d2c7223597d5d58 -MD5sum: d9ce86726dd0ea03f03ad04dfa9f1594 +Filename: pool/main/r/rocm-device-libs/rocm-device-libs_1.0.0.60301-48~20.04_amd64.deb +Size: 719796 +SHA256: 3d42fbc42fa4771f6c1314d5a4da923221be4bdd55d12c6c3867a4aed00d5561 +SHA1: c002035a09342483f015dd77be98a9e05c640877 +MD5sum: 1ea2d2006eb3f17ca27abb800ce3cc1d Description: Radeon Open Compute - device libraries This package includes LLVM bitcode libraries. Homepage: https://github.com/RadeonOpenCompute/ROCm-Device-Libs Maintainer: ROCm Compiler Support -Version: 1.0.0.60202-116~20.04 -Installed-Size: 3326 +Version: 1.0.0.60301-48~20.04 +Installed-Size: 3344 -Package: rocm-device-libs-rpath6.2.2 +Package: rocm-device-libs-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-device-libs-rpath6.2.2/rocm-device-libs-rpath6.2.2_1.0.0.60202-116~20.04_amd64.deb -Size: 467264 -SHA256: 9951a0af8b2044e71da0b900ed4cc119c34dcc2582782600f10174e8e6e7d426 -SHA1: 23e881c4d6b10099aef7ba090c5e090d17adeb2f -MD5sum: 9562e7119ecf351bceb957dfcbf6caab +Filename: pool/main/r/rocm-device-libs-rpath6.3.1/rocm-device-libs-rpath6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 469332 +SHA256: 38ddcf381727c4d335e05ed4984ad68bfeb3508e445b49ea8d8ef021decc95ad +SHA1: f925bd0229ea8c482881e816f139061e4c58be4d +MD5sum: 135349b1f64361a09fd908ef6ecf3012 Description: Radeon Open Compute - device libraries This package includes LLVM bitcode libraries. Homepage: https://github.com/RadeonOpenCompute/ROCm-Device-Libs Maintainer: ROCm Compiler Support -Version: 1.0.0.60202-116~20.04 -Installed-Size: 3326 +Version: 1.0.0.60301-48~20.04 +Installed-Size: 3344 -Package: rocm-device-libs6.2.2 +Package: rocm-device-libs6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-device-libs6.2.2/rocm-device-libs6.2.2_1.0.0.60202-116~20.04_amd64.deb -Size: 467240 -SHA256: ce3eee024a6de77072208738a45998b058171e7fa12d3045a3f66c698e35a0b4 -SHA1: 1d9886c160676be9c2738566d01fec15a65339ea -MD5sum: 06f3c3627082409dec44e127a8228197 +Filename: pool/main/r/rocm-device-libs6.3.1/rocm-device-libs6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 469004 +SHA256: ebcae9b3e911e02ef49890ee4b048c11ea365872f056504393b11e3f6c5ea5c2 +SHA1: aa2ded9a04f069a57799b38f9182cecad4e3d11d +MD5sum: 01dde7dc6915b47a5d90744cfa64d8ff Description: Radeon Open Compute - device libraries This package includes LLVM bitcode libraries. Homepage: https://github.com/RadeonOpenCompute/ROCm-Device-Libs Maintainer: ROCm Compiler Support -Version: 1.0.0.60202-116~20.04 -Installed-Size: 3326 +Version: 1.0.0.60301-48~20.04 +Installed-Size: 3344 Package: rocm-gdb -Version: 14.2.60202-116~20.04 +Version: 15.2.60301-48~20.04 Maintainer: ROCm Debugger Support Priority: optional Section: utils -Filename: pool/main/r/rocm-gdb/rocm-gdb_14.2.60202-116~20.04_amd64.deb -Size: 110134884 -SHA256: 6df50aa0d2e1327cfea792ae1140cd50a82bf59cac648fc1189d47370fce527b -SHA1: d835ec228b078ae5bc7d66dafdd20eb459b6dc7a -MD5sum: f77d83f611284d9462cc008e47daae03 +Filename: pool/main/r/rocm-gdb/rocm-gdb_15.2.60301-48~20.04_amd64.deb +Size: 113666384 +SHA256: a3d8836cfd87d9e95b56cbbe19fab1decde48805aae7c570b1cd0726a6049df3 +SHA1: fa5365551dca38769fb6be167be5f38f4d59fb2a +MD5sum: 911c9f3a376478ba245965238d641ec3 Description: ROCgdb This is ROCgdb, the AMD ROCm source-level debugger for Linux, based on GDB, the GNU source-level debugger. Architecture: amd64 Essential: no -Depends: libc6 (>= 2.29), libexpat1 (>= 2.0.1), libgcc-s1 (>= 4.2), libgmp10, liblzma5 (>= 5.1.1alpha+20110809), libmpfr6 (>= 3.1.3), libncursesw6 (>= 6), libpython3.8 (>= 3.8.2), libstdc++6 (>= 7), libtinfo6 (>= 6), zlib1g (>= 1:1.2.0), rocm-dbgapi, rocm-core +Depends: libc6 (>= 2.29), libexpat1 (>= 2.0.1), libgcc-s1 (>= 4.2), libgmp10, liblzma5 (>= 5.1.1alpha+20110809), libmpfr6 (>= 3.1.3), libncursesw6 (>= 6), libstdc++6 (>= 7), libtinfo6 (>= 6), libzstd1 (>= 1.3.2), zlib1g (>= 1:1.2.0), rocm-dbgapi, rocm-core -Package: rocm-gdb-rpath6.2.2 -Version: 14.2.60202-116~20.04 +Package: rocm-gdb-rpath6.3.1 +Version: 15.2.60301-48~20.04 Maintainer: ROCm Debugger Support Priority: optional Section: utils -Filename: pool/main/r/rocm-gdb-rpath6.2.2/rocm-gdb-rpath6.2.2_14.2.60202-116~20.04_amd64.deb -Size: 66404204 -SHA256: d4aa7f72c8412a66e2191fa4e8ad865bdc9743b19776ed45de79bf3500460692 -SHA1: 8fe3f9751791edeba189877372d378a92f2f34e6 -MD5sum: 8e1726eb679abf0bcb4f60147ab35ab6 +Filename: pool/main/r/rocm-gdb-rpath6.3.1/rocm-gdb-rpath6.3.1_15.2.60301-48~20.04_amd64.deb +Size: 68297484 +SHA256: d3b8d020ad3986b03d011d048ca1a9ff595e18d0ce94abf5b4ad6bd6b9b61b13 +SHA1: ab437dd1aa3ee3e502f05a981a1aa1e0787b3813 +MD5sum: 10d29d12814ddb9517879b2144ad81b8 Description: ROCgdb This is ROCgdb, the AMD ROCm source-level debugger for Linux, based on GDB, the GNU source-level debugger. Architecture: amd64 Essential: no -Depends: libc6 (>= 2.29), libexpat1 (>= 2.0.1), libgcc-s1 (>= 4.2), libgmp10, liblzma5 (>= 5.1.1alpha+20110809), libmpfr6 (>= 3.1.3), libncursesw6 (>= 6), libpython3.8 (>= 3.8.2), libstdc++6 (>= 7), libtinfo6 (>= 6), zlib1g (>= 1:1.2.0), rocm-dbgapi-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: libc6 (>= 2.29), libexpat1 (>= 2.0.1), libgcc-s1 (>= 4.2), libgmp10, liblzma5 (>= 5.1.1alpha+20110809), libmpfr6 (>= 3.1.3), libncursesw6 (>= 6), libstdc++6 (>= 7), libtinfo6 (>= 6), libzstd1 (>= 1.3.2), zlib1g (>= 1:1.2.0), rocm-dbgapi-rpath6.3.1, rocm-core-rpath6.3.1 -Package: rocm-gdb6.2.2 -Version: 14.2.60202-116~20.04 +Package: rocm-gdb6.3.1 +Version: 15.2.60301-48~20.04 Maintainer: ROCm Debugger Support Priority: optional Section: utils -Filename: pool/main/r/rocm-gdb6.2.2/rocm-gdb6.2.2_14.2.60202-116~20.04_amd64.deb -Size: 66402800 -SHA256: 516452d407f2bb972603ac9faa810949b36d8703543e7805f129d2c44a5afeed -SHA1: 4e122b5a60100bf843772dceb48352d230b8a787 -MD5sum: 6a82b38af9e85e0f5f8a3b04be3987c8 +Filename: pool/main/r/rocm-gdb6.3.1/rocm-gdb6.3.1_15.2.60301-48~20.04_amd64.deb +Size: 68299696 +SHA256: 66a7fdfcecf51418681eb4d57a647033d1e013cbcf7d9ad5e940a972d7d44a80 +SHA1: b87029f0729a736126f174b542b897d6a452457e +MD5sum: d01c7fd47cd9025c52d5710900dd4ccc Description: ROCgdb This is ROCgdb, the AMD ROCm source-level debugger for Linux, based on GDB, the GNU source-level debugger. Architecture: amd64 Essential: no -Depends: libc6 (>= 2.29), libexpat1 (>= 2.0.1), libgcc-s1 (>= 4.2), libgmp10, liblzma5 (>= 5.1.1alpha+20110809), libmpfr6 (>= 3.1.3), libncursesw6 (>= 6), libpython3.8 (>= 3.8.2), libstdc++6 (>= 7), libtinfo6 (>= 6), zlib1g (>= 1:1.2.0), rocm-dbgapi6.2.2, rocm-core6.2.2 +Depends: libc6 (>= 2.29), libexpat1 (>= 2.0.1), libgcc-s1 (>= 4.2), libgmp10, liblzma5 (>= 5.1.1alpha+20110809), libmpfr6 (>= 3.1.3), libncursesw6 (>= 6), libstdc++6 (>= 7), libtinfo6 (>= 6), libzstd1 (>= 1.3.2), zlib1g (>= 1:1.2.0), rocm-dbgapi6.3.1, rocm-core6.3.1 Package: rocm-hip-libraries Architecture: amd64 -Depends: rocm-core (= 6.2.2.60202-116~20.04), rocm-smi-lib (= 7.3.0.60202-116~20.04), rocm-hip-runtime (= 6.2.2.60202-116~20.04), hipblas (= 2.2.0.60202-116~20.04), hipblaslt (= 0.8.0.60202-116~20.04), hipfft (= 1.0.15.60202-116~20.04), hipsparse (= 3.1.1.60202-116~20.04), hipsolver (= 2.2.0.60202-116~20.04), hiptensor (= 1.3.0.60202-116~20.04), rccl (= 2.20.5.60202-116~20.04), rocalution (= 3.2.0.60202-116~20.04), rocblas (= 4.2.1.60202-116~20.04), rocfft (= 1.0.29.60202-116~20.04), rocrand (= 3.1.0.60202-116~20.04), hiprand (= 2.11.0.60202-116~20.04), rocsolver (= 3.26.0.60202-116~20.04), rocsparse (= 3.2.0.60202-116~20.04), hipsparselt (= 0.2.1.60202-116~20.04) +Depends: rocm-core (= 6.3.1.60301-48~20.04), rocm-smi-lib (= 7.4.0.60301-48~20.04), rocm-hip-runtime (= 6.3.1.60301-48~20.04), hipblas (= 2.3.0.60301-48~20.04), hipblaslt (= 0.10.0.60301-48~20.04), hipfft (= 1.0.17.60301-48~20.04), hipsparse (= 3.1.2.60301-48~20.04), hipsolver (= 2.3.0.60301-48~20.04), hiptensor (= 1.4.0.60301-48~20.04), rccl (= 2.21.5.60301-48~20.04), rocalution (= 3.2.1.60301-48~20.04), rocblas (= 4.3.0.60301-48~20.04), rocfft (= 1.0.31.60301-48~20.04), rocrand (= 3.2.0.60301-48~20.04), hiprand (= 2.11.1.60301-48~20.04), rocsolver (= 3.27.0.60301-48~20.04), rocsparse (= 3.3.0.60301-48~20.04), hipsparselt (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-libraries/rocm-hip-libraries_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-hip-libraries/rocm-hip-libraries_6.3.1.60301-48~20.04_amd64.deb Size: 948 -SHA256: b6d5fd6ed7de139ce8e892152f720275925b7138ca90632b00b4b201c8c41d62 -SHA1: 5f55ff4ae3c4d41c7acd2853cf9458d458cb7f7a -MD5sum: 7004192668c98004026f6119b6a69191 +SHA256: 771e0c2e2909004308174d252b989734abcaf429c3dfaa520b3786b69cc67474 +SHA1: b7b9d2c46788b0a417be19e2ccd048717aef75b6 +MD5sum: 534871ec964c9384440d45584caa23d3 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-libraries-asan +Package: rocm-hip-libraries-rpath6.3.1 Architecture: amd64 -Depends: rocm-hip-libraries (= 6.2.2.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-smi-lib-asan (= 7.3.0.60202-116~20.04), rocm-hip-runtime-asan (= 6.2.2.60202-116~20.04), hipblas-asan (= 2.2.0.60202-116~20.04), hipblaslt-asan (= 0.8.0.60202-116~20.04), hipfft-asan (= 1.0.15.60202-116~20.04), hipsparse-asan (= 3.1.1.60202-116~20.04), hipsolver-asan (= 2.2.0.60202-116~20.04), rocalution-asan (= 3.2.0.60202-116~20.04), rocblas-asan (= 4.2.1.60202-116~20.04), rocfft-asan (= 1.0.29.60202-116~20.04), rocsolver-asan (= 3.26.0.60202-116~20.04), rocsparse-asan (= 3.2.0.60202-116~20.04), hipsparselt-asan (= 0.2.1.60202-116~20.04), rocrand-asan (= 3.1.0.60202-116~20.04), hiprand-asan (= 2.11.0.60202-116~20.04), hiptensor-asan (= 1.3.0.60202-116~20.04), rccl-asan (= 2.20.5.60202-116~20.04) +Depends: rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-smi-lib-rpath6.3.1 (= 7.4.0.60301-48~20.04), rocm-hip-runtime-rpath6.3.1 (= 6.3.1.60301-48~20.04), hipblas-rpath6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt-rpath6.3.1 (= 0.10.0.60301-48~20.04), hipfft-rpath6.3.1 (= 1.0.17.60301-48~20.04), hipsparse-rpath6.3.1 (= 3.1.2.60301-48~20.04), hipsolver-rpath6.3.1 (= 2.3.0.60301-48~20.04), hiptensor-rpath6.3.1 (= 1.4.0.60301-48~20.04), rccl-rpath6.3.1 (= 2.21.5.60301-48~20.04), rocalution-rpath6.3.1 (= 3.2.1.60301-48~20.04), rocblas-rpath6.3.1 (= 4.3.0.60301-48~20.04), rocfft-rpath6.3.1 (= 1.0.31.60301-48~20.04), rocrand-rpath6.3.1 (= 3.2.0.60301-48~20.04), hiprand-rpath6.3.1 (= 2.11.1.60301-48~20.04), rocsolver-rpath6.3.1 (= 3.27.0.60301-48~20.04), rocsparse-rpath6.3.1 (= 3.3.0.60301-48~20.04), hipsparselt-rpath6.3.1 (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-libraries-asan/rocm-hip-libraries-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 966 -SHA256: 68549aa7d596a3a811288259d9af17277cb5318917f93b91ee450fe93febd1d0 -SHA1: e749ce20f5a21ee09ab022bd20bf0da6b582672f -MD5sum: d5bc122c3554748984e42d354e76c4d4 +Filename: pool/main/r/rocm-hip-libraries-rpath6.3.1/rocm-hip-libraries-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1148 +SHA256: 6d8a99a6139ec29cc2ddfc4220c49981df78717963b7852c3553dfaf3bdd4323 +SHA1: fbbce13064e5fc9472d64435517cf92cdf022523 +MD5sum: d5f11b18a3adda4e54b0656d43fc0623 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-libraries-asan-rpath6.2.2 +Package: rocm-hip-libraries6.3.1 Architecture: amd64 -Depends: rocm-hip-libraries (= 6.2.2.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-smi-lib-asan-rpath6.2.2 (= 7.3.0.60202-116~20.04), rocm-hip-runtime-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), hipblas-asan-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-asan-rpath6.2.2 (= 0.8.0.60202-116~20.04), hipfft-asan-rpath6.2.2 (= 1.0.15.60202-116~20.04), hipsparse-asan-rpath6.2.2 (= 3.1.1.60202-116~20.04), hipsolver-asan-rpath6.2.2 (= 2.2.0.60202-116~20.04), rocalution-asan-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocblas-asan-rpath6.2.2 (= 4.2.1.60202-116~20.04), rocfft-asan-rpath6.2.2 (= 1.0.29.60202-116~20.04), rocsolver-asan-rpath6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-asan-rpath6.2.2 (= 3.2.0.60202-116~20.04), hipsparselt-asan-rpath6.2.2 (= 0.2.1.60202-116~20.04), rocrand-asan-rpath6.2.2 (= 3.1.0.60202-116~20.04), hiprand-asan-rpath6.2.2 (= 2.11.0.60202-116~20.04), hiptensor-asan-rpath6.2.2 (= 1.3.0.60202-116~20.04), rccl-asan-rpath6.2.2 (= 2.20.5.60202-116~20.04) +Depends: rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-smi-lib6.3.1 (= 7.4.0.60301-48~20.04), rocm-hip-runtime6.3.1 (= 6.3.1.60301-48~20.04), hipblas6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt6.3.1 (= 0.10.0.60301-48~20.04), hipfft6.3.1 (= 1.0.17.60301-48~20.04), hipsparse6.3.1 (= 3.1.2.60301-48~20.04), hipsolver6.3.1 (= 2.3.0.60301-48~20.04), hiptensor6.3.1 (= 1.4.0.60301-48~20.04), rccl6.3.1 (= 2.21.5.60301-48~20.04), rocalution6.3.1 (= 3.2.1.60301-48~20.04), rocblas6.3.1 (= 4.3.0.60301-48~20.04), rocfft6.3.1 (= 1.0.31.60301-48~20.04), rocrand6.3.1 (= 3.2.0.60301-48~20.04), hiprand6.3.1 (= 2.11.1.60301-48~20.04), rocsolver6.3.1 (= 3.27.0.60301-48~20.04), rocsparse6.3.1 (= 3.3.0.60301-48~20.04), hipsparselt6.3.1 (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-libraries-asan-rpath6.2.2/rocm-hip-libraries-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1164 -SHA256: cafcc83aa7b85fd6ca4c004717ac6850714d5bda13fc5b3402221e0d9613f13a -SHA1: be9b9fe419aa0ded09dd54ec2c887b9f251a9a7b -MD5sum: f6ad4629f743e9813c79cb8c7887d4f4 +Filename: pool/main/r/rocm-hip-libraries6.3.1/rocm-hip-libraries6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1140 +SHA256: 69c7ca7d0ee60b335a7451a74b8ee36c0ea4e1c8c9952d3531b86994dd5fb13f +SHA1: d355433a3043fb03a0d6de9151b4b622237cbb15 +MD5sum: 162013c0b1683b356cd12915c25cba0c Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-hip-libraries-asan6.2.2 -Architecture: amd64 -Depends: rocm-hip-libraries (= 6.2.2.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-smi-lib-asan6.2.2 (= 7.3.0.60202-116~20.04), rocm-hip-runtime-asan6.2.2 (= 6.2.2.60202-116~20.04), hipblas-asan6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-asan6.2.2 (= 0.8.0.60202-116~20.04), hipfft-asan6.2.2 (= 1.0.15.60202-116~20.04), hipsparse-asan6.2.2 (= 3.1.1.60202-116~20.04), hipsolver-asan6.2.2 (= 2.2.0.60202-116~20.04), rocalution-asan6.2.2 (= 3.2.0.60202-116~20.04), rocblas-asan6.2.2 (= 4.2.1.60202-116~20.04), rocfft-asan6.2.2 (= 1.0.29.60202-116~20.04), rocsolver-asan6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-asan6.2.2 (= 3.2.0.60202-116~20.04), hipsparselt-asan6.2.2 (= 0.2.1.60202-116~20.04), rocrand-asan6.2.2 (= 3.1.0.60202-116~20.04), hiprand-asan6.2.2 (= 2.11.0.60202-116~20.04), hiptensor-asan6.2.2 (= 1.3.0.60202-116~20.04), rccl-asan6.2.2 (= 2.20.5.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-hip-libraries-asan6.2.2/rocm-hip-libraries-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1164 -SHA256: fbd7f73e3780a9ee7be1a81c4dc221a7e7eefb9a791b01a40218b07e37cd9607 -SHA1: 8048d569edb3ee0d08de328cf651e5dd2e782d7e -MD5sum: 693d37d6e9986bcb48a2b2a38281aaea -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-hip-libraries-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-smi-lib-rpath6.2.2 (= 7.3.0.60202-116~20.04), rocm-hip-runtime-rpath6.2.2 (= 6.2.2.60202-116~20.04), hipblas-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-rpath6.2.2 (= 0.8.0.60202-116~20.04), hipfft-rpath6.2.2 (= 1.0.15.60202-116~20.04), hipsparse-rpath6.2.2 (= 3.1.1.60202-116~20.04), hipsolver-rpath6.2.2 (= 2.2.0.60202-116~20.04), hiptensor-rpath6.2.2 (= 1.3.0.60202-116~20.04), rccl-rpath6.2.2 (= 2.20.5.60202-116~20.04), rocalution-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocblas-rpath6.2.2 (= 4.2.1.60202-116~20.04), rocfft-rpath6.2.2 (= 1.0.29.60202-116~20.04), rocrand-rpath6.2.2 (= 3.1.0.60202-116~20.04), hiprand-rpath6.2.2 (= 2.11.0.60202-116~20.04), rocsolver-rpath6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-rpath6.2.2 (= 3.2.0.60202-116~20.04), hipsparselt-rpath6.2.2 (= 0.2.1.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-hip-libraries-rpath6.2.2/rocm-hip-libraries-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1152 -SHA256: 7637ec70cc5d3d27024b0dd16027a1a726417661787ef265cc03e54ffa09d193 -SHA1: 6bff408c78cbc0d9bcff4770b77a29017d48ce42 -MD5sum: f5647e18710e8ce3a72752adb0c4dda2 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-hip-libraries6.2.2 -Architecture: amd64 -Depends: rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-smi-lib6.2.2 (= 7.3.0.60202-116~20.04), rocm-hip-runtime6.2.2 (= 6.2.2.60202-116~20.04), hipblas6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt6.2.2 (= 0.8.0.60202-116~20.04), hipfft6.2.2 (= 1.0.15.60202-116~20.04), hipsparse6.2.2 (= 3.1.1.60202-116~20.04), hipsolver6.2.2 (= 2.2.0.60202-116~20.04), hiptensor6.2.2 (= 1.3.0.60202-116~20.04), rccl6.2.2 (= 2.20.5.60202-116~20.04), rocalution6.2.2 (= 3.2.0.60202-116~20.04), rocblas6.2.2 (= 4.2.1.60202-116~20.04), rocfft6.2.2 (= 1.0.29.60202-116~20.04), rocrand6.2.2 (= 3.1.0.60202-116~20.04), hiprand6.2.2 (= 2.11.0.60202-116~20.04), rocsolver6.2.2 (= 3.26.0.60202-116~20.04), rocsparse6.2.2 (= 3.2.0.60202-116~20.04), hipsparselt6.2.2 (= 0.2.1.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-hip-libraries6.2.2/rocm-hip-libraries6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1144 -SHA256: 10038af95ed40c96375e3a948a6fe6e5f84b14e2b30be18d404f3c9d520bf36b -SHA1: a925b7b4dcbc2f73b518faabae52091117005cdc -MD5sum: d8282b0a92c0fe154383afb2275497f8 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-hip-runtime Architecture: amd64 -Depends: rocm-core (= 6.2.2.60202-116~20.04), rocm-language-runtime (= 6.2.2.60202-116~20.04), rocminfo (= 1.0.0.60202-116~20.04), hip-runtime-amd (= 6.2.41134.60202-116~20.04) +Depends: rocm-core (= 6.3.1.60301-48~20.04), rocm-language-runtime (= 6.3.1.60301-48~20.04), rocminfo (= 1.0.0.60301-48~20.04), hip-runtime-amd (= 6.3.42133.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-runtime/rocm-hip-runtime_6.2.2.60202-116~20.04_amd64.deb -Size: 2030 -SHA256: 5788c38d2f3599d5e5cceaeef2a3233e6527cefd8c8f3d861735100a8bba3030 -SHA1: 77f70999e42b4e0d5841430cec6c5ac726759d28 -MD5sum: 196b31d2eee7a500a1500905822862bd +Filename: pool/main/r/rocm-hip-runtime/rocm-hip-runtime_6.3.1.60301-48~20.04_amd64.deb +Size: 2102 +SHA256: f6cc2ce69dd260c138de6a106e6ac83bd95183d6506b26cc4a960f25f667ddad +SHA1: 75382d3006ffc5456902575b1a7b2c31f9ec41d0 +MD5sum: a16b82878205d52e0fb4eb3799fec19a Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-hip-runtime-asan -Architecture: amd64 -Depends: rocm-hip-runtime (= 6.2.2.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan (= 6.2.2.60202-116~20.04), hip-runtime-amd-asan (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-hip-runtime-asan/rocm-hip-runtime-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 836 -SHA256: 9dfc11140cdc1b0413d044f8fc2c7c5b955bc2e00c4ce32c8262ba455b3b9fda -SHA1: 0cee691fadc679765df6bb32a3a5f37961f9c57a -MD5sum: 476e8176e3f997b6bab2984d261cbffe -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-hip-runtime-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-hip-runtime (= 6.2.2.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), hip-runtime-amd-asan-rpath6.2.2 (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-hip-runtime-asan-rpath6.2.2/rocm-hip-runtime-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1040 -SHA256: 354aeca06d7c1668e58348c2e811a287aa4f0aa8edecdba677016d9cb11def2e -SHA1: 57f1b3a8f49ae202c30b4535462ce604bfa2026f -MD5sum: a7064697b37947d3a67c7ef9a62471f9 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-hip-runtime-asan6.2.2 -Architecture: amd64 -Depends: rocm-hip-runtime (= 6.2.2.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan6.2.2 (= 6.2.2.60202-116~20.04), hip-runtime-amd-asan6.2.2 (= 6.2.41134.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-hip-runtime-asan6.2.2/rocm-hip-runtime-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1044 -SHA256: 80fb28d0363c1472b6917dc2d85ee4221cb08e9153a8a151122175091b92656e -SHA1: ade65d17bd22367750ae37ec03955e920da2202a -MD5sum: bd363f004e53112394fc274f014ae6d5 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-hip-runtime-dev Architecture: amd64 -Depends: rocm-core (= 6.2.2.60202-116~20.04), rocm-device-libs (= 1.0.0.60202-116~20.04), rocm-hip-runtime (= 6.2.2.60202-116~20.04), rocm-cmake (= 0.13.0.60202-116~20.04), rocm-llvm (= 18.0.0.24355.60202-116~20.04), hipcc (= 1.1.1.60202-116~20.04), hipify-clang (= 18.0.0.60202-116~20.04), hip-doc (= 6.2.41134.60202-116~20.04), hip-samples (= 6.2.41134.60202-116~20.04), hip-dev (= 6.2.41134.60202-116~20.04), hsa-rocr-dev (= 1.14.0.60202-116~20.04), hsakmt-roct-dev (= 20240607.4.05.60202-116~20.04) +Depends: rocm-core (= 6.3.1.60301-48~20.04), rocm-device-libs (= 1.0.0.60301-48~20.04), rocm-hip-runtime (= 6.3.1.60301-48~20.04), rocm-cmake (= 0.14.0.60301-48~20.04), rocm-llvm (= 18.0.0.24491.60301-48~20.04), hipcc (= 1.1.1.60301-48~20.04), hipify-clang (= 18.0.0.60301-48~20.04), hip-doc (= 6.3.42133.60301-48~20.04), hip-samples (= 6.3.42133.60301-48~20.04), hip-dev (= 6.3.42133.60301-48~20.04), hsa-rocr-dev (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-runtime-dev/rocm-hip-runtime-dev_6.2.2.60202-116~20.04_amd64.deb -Size: 2222 -SHA256: d852bd16cdffa5b1b9ab2bf267e715e876798f6091436288a9f1233ec8b423d8 -SHA1: 99c57d965f3743b1efe362889e04dd1b23d27596 -MD5sum: f75a1a905e7f16b3bc1bef5791ecacab +Filename: pool/main/r/rocm-hip-runtime-dev/rocm-hip-runtime-dev_6.3.1.60301-48~20.04_amd64.deb +Size: 2286 +SHA256: 27b45b1765644b03f7dbc34de2d7a3499833500de3f52c8cda104ee5b68c8931 +SHA1: f72b1a37199f3a0e2842bc6fe98c298e3a15671f +MD5sum: ea2f64ae1ae9d17b30a6c8c7dca19397 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-runtime-dev-rpath6.2.2 +Package: rocm-hip-runtime-dev-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-device-libs-rpath6.2.2 (= 1.0.0.60202-116~20.04), rocm-hip-runtime-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-cmake-rpath6.2.2 (= 0.13.0.60202-116~20.04), rocm-llvm-rpath6.2.2 (= 18.0.0.24355.60202-116~20.04), hipcc-rpath6.2.2 (= 1.1.1.60202-116~20.04), hipify-clang-rpath6.2.2 (= 18.0.0.60202-116~20.04), hip-doc-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hip-samples-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hip-dev-rpath6.2.2 (= 6.2.41134.60202-116~20.04), hsa-rocr-dev-rpath6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev-rpath6.2.2 (= 20240607.4.05.60202-116~20.04) +Depends: rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-device-libs-rpath6.3.1 (= 1.0.0.60301-48~20.04), rocm-hip-runtime-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-cmake-rpath6.3.1 (= 0.14.0.60301-48~20.04), rocm-llvm-rpath6.3.1 (= 18.0.0.24491.60301-48~20.04), hipcc-rpath6.3.1 (= 1.1.1.60301-48~20.04), hipify-clang-rpath6.3.1 (= 18.0.0.60301-48~20.04), hip-doc-rpath6.3.1 (= 6.3.42133.60301-48~20.04), hip-samples-rpath6.3.1 (= 6.3.42133.60301-48~20.04), hip-dev-rpath6.3.1 (= 6.3.42133.60301-48~20.04), hsa-rocr-dev-rpath6.3.1 (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-runtime-dev-rpath6.2.2/rocm-hip-runtime-dev-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2380 -SHA256: e8d0233bcce376eeb04119dc20caf39fb861f3a54a06a92573a0d0b99c6d3a1a -SHA1: 185e7502fb628bb7542915fec7a8fd4e316daabd -MD5sum: 7526c67c43a3f707f047e55042e7713b +Filename: pool/main/r/rocm-hip-runtime-dev-rpath6.3.1/rocm-hip-runtime-dev-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2424 +SHA256: 774576a3310779ccc0460dca874bf308ca25118d06539aae6801ce4e5b166966 +SHA1: d1d859866ed7459a30b5bd94a09152d475f642c6 +MD5sum: 67f67744bff08c864fdaf667d05df043 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-runtime-dev6.2.2 +Package: rocm-hip-runtime-dev6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-device-libs6.2.2 (= 1.0.0.60202-116~20.04), rocm-hip-runtime6.2.2 (= 6.2.2.60202-116~20.04), rocm-cmake6.2.2 (= 0.13.0.60202-116~20.04), rocm-llvm6.2.2 (= 18.0.0.24355.60202-116~20.04), hipcc6.2.2 (= 1.1.1.60202-116~20.04), hipify-clang6.2.2 (= 18.0.0.60202-116~20.04), hip-doc6.2.2 (= 6.2.41134.60202-116~20.04), hip-samples6.2.2 (= 6.2.41134.60202-116~20.04), hip-dev6.2.2 (= 6.2.41134.60202-116~20.04), hsa-rocr-dev6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev6.2.2 (= 20240607.4.05.60202-116~20.04) +Depends: rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-device-libs6.3.1 (= 1.0.0.60301-48~20.04), rocm-hip-runtime6.3.1 (= 6.3.1.60301-48~20.04), rocm-cmake6.3.1 (= 0.14.0.60301-48~20.04), rocm-llvm6.3.1 (= 18.0.0.24491.60301-48~20.04), hipcc6.3.1 (= 1.1.1.60301-48~20.04), hipify-clang6.3.1 (= 18.0.0.60301-48~20.04), hip-doc6.3.1 (= 6.3.42133.60301-48~20.04), hip-samples6.3.1 (= 6.3.42133.60301-48~20.04), hip-dev6.3.1 (= 6.3.42133.60301-48~20.04), hsa-rocr-dev6.3.1 (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-runtime-dev6.2.2/rocm-hip-runtime-dev6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2372 -SHA256: bd02bc902f58a94f68b995df830e35449fe6c3beeb6d9227ca9963cb6c74bafe -SHA1: eb5e90e9188b5ddcb929ed68a6a9e3963532e01e -MD5sum: 48eb9b7cbd5e38f94fc91239cbb2bc41 +Filename: pool/main/r/rocm-hip-runtime-dev6.3.1/rocm-hip-runtime-dev6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2420 +SHA256: 26cdf20c371a057fe44da0c5411a8240522c6a8913874a0bc2d0de492765ce7e +SHA1: 8870493c300b3f3c474bf0c8b28251d41511d6c1 +MD5sum: f026938e5b365fd8f496e205faf73d13 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-runtime-rpath6.2.2 +Package: rocm-hip-runtime-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocminfo-rpath6.2.2 (= 1.0.0.60202-116~20.04), hip-runtime-amd-rpath6.2.2 (= 6.2.41134.60202-116~20.04) +Depends: rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-language-runtime-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocminfo-rpath6.3.1 (= 1.0.0.60301-48~20.04), hip-runtime-amd-rpath6.3.1 (= 6.3.42133.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-runtime-rpath6.2.2/rocm-hip-runtime-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2204 -SHA256: 351958619c24ce0f75b5ea75ea64c2159fff3d901bf302d1671ebd519c538126 -SHA1: a2734eb510f777d6f009c59326ffb0e14c435045 -MD5sum: 6fa73df2a788ea24ceb8add5241b91d5 +Filename: pool/main/r/rocm-hip-runtime-rpath6.3.1/rocm-hip-runtime-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2252 +SHA256: f883d631eec4aa092099fdd68ca1faba1e995dad58afc2695eb0e7b6363b6d49 +SHA1: c38a0600c18f742c687afb79dec1c8aa47ab2ad8 +MD5sum: 9b0eeaed4daac7349c722bbd46f4dea9 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-runtime6.2.2 +Package: rocm-hip-runtime6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime6.2.2 (= 6.2.2.60202-116~20.04), rocminfo6.2.2 (= 1.0.0.60202-116~20.04), hip-runtime-amd6.2.2 (= 6.2.41134.60202-116~20.04) +Depends: rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-language-runtime6.3.1 (= 6.3.1.60301-48~20.04), rocminfo6.3.1 (= 1.0.0.60301-48~20.04), hip-runtime-amd6.3.1 (= 6.3.42133.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-runtime6.2.2/rocm-hip-runtime6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2188 -SHA256: 1ce6cae08e08ee905f83013e68e74bc03fe945a2208c3fc7138578bc544f1aa6 -SHA1: fe6a602347d450607d92ffcdf9dfd3cbfd77c951 -MD5sum: 12558d77b62895c4080c95ae332c5b2c +Filename: pool/main/r/rocm-hip-runtime6.3.1/rocm-hip-runtime6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2240 +SHA256: 6fc953af5cffdeecbdc62987bd6ed873f997223d436f654dfc3076ba57b1a2eb +SHA1: a25c18e4ca7e251f10fc8ab457441ef92ca59166 +MD5sum: e7714d6d3a79b5abdf4649f92f73489b Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-hip-sdk Architecture: amd64 -Depends: rocm-hip-libraries (= 6.2.2.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), rocm-hip-runtime-dev (= 6.2.2.60202-116~20.04), composablekernel-dev (= 1.1.0.60202-116~20.04), hipblas-dev (= 2.2.0.60202-116~20.04), hipblaslt-dev (= 0.8.0.60202-116~20.04), hipcub-dev (= 3.2.0.60202-116~20.04), hipfft-dev (= 1.0.15.60202-116~20.04), hipsparse-dev (= 3.1.1.60202-116~20.04), hipsolver-dev (= 2.2.0.60202-116~20.04), hipfort-dev (= 0.4.0.60202-116~20.04), hiptensor-dev (= 1.3.0.60202-116~20.04), rccl-dev (= 2.20.5.60202-116~20.04), rocalution-dev (= 3.2.0.60202-116~20.04), rocblas-dev (= 4.2.1.60202-116~20.04), rocfft-dev (= 1.0.29.60202-116~20.04), rocprim-dev (= 3.2.0.60202-116~20.04), rocrand-dev (= 3.1.0.60202-116~20.04), hiprand-dev (= 2.11.0.60202-116~20.04), rocsolver-dev (= 3.26.0.60202-116~20.04), rocsparse-dev (= 3.2.0.60202-116~20.04), rocthrust-dev (= 3.1.0.60202-116~20.04), rocwmma-dev (= 1.5.0.60202-116~20.04), hipsparselt-dev (= 0.2.1.60202-116~20.04) +Depends: rocm-hip-libraries (= 6.3.1.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), rocm-hip-runtime-dev (= 6.3.1.60301-48~20.04), composablekernel-dev (= 1.1.0.60301-48~20.04), hipblas-dev (= 2.3.0.60301-48~20.04), hipblaslt-dev (= 0.10.0.60301-48~20.04), hipcub-dev (= 3.3.0.60301-48~20.04), hipfft-dev (= 1.0.17.60301-48~20.04), hipsparse-dev (= 3.1.2.60301-48~20.04), hipsolver-dev (= 2.3.0.60301-48~20.04), hipfort-dev (= 0.5.0.60301-48~20.04), hiptensor-dev (= 1.4.0.60301-48~20.04), rccl-dev (= 2.21.5.60301-48~20.04), rocalution-dev (= 3.2.1.60301-48~20.04), rocblas-dev (= 4.3.0.60301-48~20.04), rocfft-dev (= 1.0.31.60301-48~20.04), rocprim-dev (= 3.3.0.60301-48~20.04), rocrand-dev (= 3.2.0.60301-48~20.04), hiprand-dev (= 2.11.1.60301-48~20.04), rocsolver-dev (= 3.27.0.60301-48~20.04), rocsparse-dev (= 3.3.0.60301-48~20.04), rocthrust-dev (= 3.3.0.60301-48~20.04), rocwmma-dev (= 1.6.0.60301-48~20.04), hipsparselt-dev (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-sdk/rocm-hip-sdk_6.2.2.60202-116~20.04_amd64.deb -Size: 2192 -SHA256: 83c415aac6323fd82179b77faf5478640952157a9ffb340f0526465067f320a6 -SHA1: 1432b94bc318b800a56b0e1daa9f6bb860a2b2f9 -MD5sum: eb55b6972b9fa3e57abb2d2f9d5e606f +Filename: pool/main/r/rocm-hip-sdk/rocm-hip-sdk_6.3.1.60301-48~20.04_amd64.deb +Size: 2264 +SHA256: eedb737e0633fb7361aee173b2d8b65f368629960793229e13230bfbffaca12c +SHA1: 9bb12d3f01577633f8a17e5091ef84836bbe1b04 +MD5sum: 481a8c740859220c52cbe0a2877d1926 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-sdk-rpath6.2.2 +Package: rocm-hip-sdk-rpath6.3.1 Architecture: amd64 -Depends: rocm-hip-libraries-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-hip-runtime-dev-rpath6.2.2 (= 6.2.2.60202-116~20.04), composablekernel-dev-rpath6.2.2 (= 1.1.0.60202-116~20.04), hipblas-dev-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-dev-rpath6.2.2 (= 0.8.0.60202-116~20.04), hipcub-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), hipfft-dev-rpath6.2.2 (= 1.0.15.60202-116~20.04), hipsparse-dev-rpath6.2.2 (= 3.1.1.60202-116~20.04), hipsolver-dev-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipfort-dev-rpath6.2.2 (= 0.4.0.60202-116~20.04), hiptensor-dev-rpath6.2.2 (= 1.3.0.60202-116~20.04), rccl-dev-rpath6.2.2 (= 2.20.5.60202-116~20.04), rocalution-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocblas-dev-rpath6.2.2 (= 4.2.1.60202-116~20.04), rocfft-dev-rpath6.2.2 (= 1.0.29.60202-116~20.04), rocprim-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocrand-dev-rpath6.2.2 (= 3.1.0.60202-116~20.04), hiprand-dev-rpath6.2.2 (= 2.11.0.60202-116~20.04), rocsolver-dev-rpath6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocthrust-dev-rpath6.2.2 (= 3.1.0.60202-116~20.04), rocwmma-dev-rpath6.2.2 (= 1.5.0.60202-116~20.04), hipsparselt-dev-rpath6.2.2 (= 0.2.1.60202-116~20.04) +Depends: rocm-hip-libraries-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-hip-runtime-dev-rpath6.3.1 (= 6.3.1.60301-48~20.04), composablekernel-dev-rpath6.3.1 (= 1.1.0.60301-48~20.04), hipblas-dev-rpath6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt-dev-rpath6.3.1 (= 0.10.0.60301-48~20.04), hipcub-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), hipfft-dev-rpath6.3.1 (= 1.0.17.60301-48~20.04), hipsparse-dev-rpath6.3.1 (= 3.1.2.60301-48~20.04), hipsolver-dev-rpath6.3.1 (= 2.3.0.60301-48~20.04), hipfort-dev-rpath6.3.1 (= 0.5.0.60301-48~20.04), hiptensor-dev-rpath6.3.1 (= 1.4.0.60301-48~20.04), rccl-dev-rpath6.3.1 (= 2.21.5.60301-48~20.04), rocalution-dev-rpath6.3.1 (= 3.2.1.60301-48~20.04), rocblas-dev-rpath6.3.1 (= 4.3.0.60301-48~20.04), rocfft-dev-rpath6.3.1 (= 1.0.31.60301-48~20.04), rocprim-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), rocrand-dev-rpath6.3.1 (= 3.2.0.60301-48~20.04), hiprand-dev-rpath6.3.1 (= 2.11.1.60301-48~20.04), rocsolver-dev-rpath6.3.1 (= 3.27.0.60301-48~20.04), rocsparse-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), rocthrust-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), rocwmma-dev-rpath6.3.1 (= 1.6.0.60301-48~20.04), hipsparselt-dev-rpath6.3.1 (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-sdk-rpath6.2.2/rocm-hip-sdk-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2340 -SHA256: 0237f336c030bd785584e3a389c0542643adabca925047a20bc7ece840c3f59a -SHA1: 3bbca8eeca8552715665e0a8164332426f8586a1 -MD5sum: 5caabfc33aba9e13d9092e356c4a8a91 +Filename: pool/main/r/rocm-hip-sdk-rpath6.3.1/rocm-hip-sdk-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2388 +SHA256: 043ffe9effa815bb56d6e971afcb4f12b64bb5e03fb1aaa3395541d9e2d0c032 +SHA1: 0ccf52fe8700dcf67735dfa09aeba2da55bc80e2 +MD5sum: 8d5b22723d2badae6b02ddfc65c0c74e Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-hip-sdk6.2.2 +Package: rocm-hip-sdk6.3.1 Architecture: amd64 -Depends: rocm-hip-libraries6.2.2 (= 6.2.2.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-hip-runtime-dev6.2.2 (= 6.2.2.60202-116~20.04), composablekernel-dev6.2.2 (= 1.1.0.60202-116~20.04), hipblas-dev6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-dev6.2.2 (= 0.8.0.60202-116~20.04), hipcub-dev6.2.2 (= 3.2.0.60202-116~20.04), hipfft-dev6.2.2 (= 1.0.15.60202-116~20.04), hipsparse-dev6.2.2 (= 3.1.1.60202-116~20.04), hipsolver-dev6.2.2 (= 2.2.0.60202-116~20.04), hipfort-dev6.2.2 (= 0.4.0.60202-116~20.04), hiptensor-dev6.2.2 (= 1.3.0.60202-116~20.04), rccl-dev6.2.2 (= 2.20.5.60202-116~20.04), rocalution-dev6.2.2 (= 3.2.0.60202-116~20.04), rocblas-dev6.2.2 (= 4.2.1.60202-116~20.04), rocfft-dev6.2.2 (= 1.0.29.60202-116~20.04), rocprim-dev6.2.2 (= 3.2.0.60202-116~20.04), rocrand-dev6.2.2 (= 3.1.0.60202-116~20.04), hiprand-dev6.2.2 (= 2.11.0.60202-116~20.04), rocsolver-dev6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-dev6.2.2 (= 3.2.0.60202-116~20.04), rocthrust-dev6.2.2 (= 3.1.0.60202-116~20.04), rocwmma-dev6.2.2 (= 1.5.0.60202-116~20.04), hipsparselt-dev6.2.2 (= 0.2.1.60202-116~20.04) +Depends: rocm-hip-libraries6.3.1 (= 6.3.1.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-hip-runtime-dev6.3.1 (= 6.3.1.60301-48~20.04), composablekernel-dev6.3.1 (= 1.1.0.60301-48~20.04), hipblas-dev6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt-dev6.3.1 (= 0.10.0.60301-48~20.04), hipcub-dev6.3.1 (= 3.3.0.60301-48~20.04), hipfft-dev6.3.1 (= 1.0.17.60301-48~20.04), hipsparse-dev6.3.1 (= 3.1.2.60301-48~20.04), hipsolver-dev6.3.1 (= 2.3.0.60301-48~20.04), hipfort-dev6.3.1 (= 0.5.0.60301-48~20.04), hiptensor-dev6.3.1 (= 1.4.0.60301-48~20.04), rccl-dev6.3.1 (= 2.21.5.60301-48~20.04), rocalution-dev6.3.1 (= 3.2.1.60301-48~20.04), rocblas-dev6.3.1 (= 4.3.0.60301-48~20.04), rocfft-dev6.3.1 (= 1.0.31.60301-48~20.04), rocprim-dev6.3.1 (= 3.3.0.60301-48~20.04), rocrand-dev6.3.1 (= 3.2.0.60301-48~20.04), hiprand-dev6.3.1 (= 2.11.1.60301-48~20.04), rocsolver-dev6.3.1 (= 3.27.0.60301-48~20.04), rocsparse-dev6.3.1 (= 3.3.0.60301-48~20.04), rocthrust-dev6.3.1 (= 3.3.0.60301-48~20.04), rocwmma-dev6.3.1 (= 1.6.0.60301-48~20.04), hipsparselt-dev6.3.1 (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-hip-sdk6.2.2/rocm-hip-sdk6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2332 -SHA256: f0110990239781c5de411ed404850a6d9d9a5eb6e09d4cd28f8d5f1204b15cc9 -SHA1: 010a99fd23f4c56bff7995f9b4dd6624d855b0c9 -MD5sum: b01dbb40a6596094a73f2837b0e10862 +Filename: pool/main/r/rocm-hip-sdk6.3.1/rocm-hip-sdk6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2384 +SHA256: 44bce52ddc484f94810e8e5863690e466e00d6d2093c5bc074f231471e082e94 +SHA1: a777d4dc271968d47a4e41590714c24e4770841b +MD5sum: f123c51fd915bb4b3ac7a3fa88839ce6 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-khronos-cts -Architecture: amd64 -Depends: rocm-core, rocm-opencl-icd-loader -Priority: optional -Section: devel -Filename: pool/main/r/rocm-khronos-cts/rocm-khronos-cts_3.0.0.60202-116~20.04_amd64.deb -Size: 8309264 -SHA256: 9a6102cb97cd7417ceeb262458e5b600251239c1cba5014e663b91cdb8eee6c5 -SHA1: d8939d11706094b5c92f9f6ac9aa6d16b9d285be -MD5sum: b132e8929f1d7665751b768471ec7abf -Description: CLConform built using CMake -Maintainer: ROCm OpenCL Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 24079 - -Package: rocm-khronos-cts-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 94e9917906b3ce3d0ca64e31e75247644c9a46ce 9c37af5c1c6d62d20844a1f13b33c45e415a3055 98b06959a1d9de91d7c65a6491d461280d524b60 5366c00d77471b19badf16b8538bd8b74bdbbb91 c8cc61352a916478de98236803c6ca44605b3a66 68f4f8a8bf9bb317c67ac1322f1aa41680422df8 732d242066175d6f183fcc01caf1637e7f136be6 1bbdf6e4ce5a5d854e5f1b472af2c0ce58a4cba5 45b66ce9dc4a938fb93e94f69741581a24422784 045693d56269ce19aadf568552f22d46133f9632 714b4d6b129ba80811ebf5f449c238fbe5912f93 7cda9e0482c9280818978a5d1cba225c00ccb645 857a0dbc0d5684074269ba2862d9e7b9d00a45d0 e75fb162b1b7ceeae1e8dad92ed7ede977e05c8b 81bb62eb33d0952e982828c06eac7281ec35ca33 56a8425f61d034eddd7a3bdbb479038f135b9b96 b0bfdc5b73ebb8005b9148ee759b16033b458290 5267465a18ef8ff7bb24554a0e0ed4470fb3d0a6 2a4c642ffe919adb48a4f2058ad08f88bf335f57 489e092eb67f21cd078a326726ee0f36d726b1dc 7f9613c11119ee83427dd12fb45138f633261e89 fe5cbfece7bf1615b428255aa71b11fc6b4ecfcd b58a7f822e726b70acc4e7823edefd820514b25a 564610a456f0f4ab8d493a2b12f1ae13231caded 5db3a42379e42caa7f744437084aed5d19760566 7781e23422823e38e19bad64b995826e1c429363 4c9dfa4efe2d5ecfbce8b7ff8b1dff1d6cbd4f84 727fa19224b7e5305f20fdf1713a32e35acc1b49 f6cc343dd946f75d1c31a33cf674adbd93ae402a b88b5d1a1820aab4fa1b841584b60c5ed11b89c4 80b6e472fb5ad023ba99a5ba97205bdcfc99f7c5 99e52da9e711c4a0ba4a8d4183817af6c6c46d32 a2b170517b8425c8abdd3aa628405c0b753d6ce7 bb2af8446cf57726e4a900ca63e7bf9f82ad5639 9491e7c8905060234d37707cf00d0e74e455c26b fb33d11866ac9fc0e291ee3f0039c39970ba5bb6 1eea99c5cda0bdffbec92ce946e42699b8e147d7 1ffd33ddd7b7e8a58a28c12ff664e1963faf399d 10c268330940980c139aad706c6268cf8d85c3d3 49970265e0f28910457feadfe07424d8e1702eae 6863af6c17608d60c16868b35e7ef477a64260d3 2a5e889f9d3e7ae8d584e986a1c63844bf9b0ddb b55b56eda641a927ec21309b8d209f75fe373ac3 b916b3ba12c8268c2dd0d4174aa9c8417a207a7c 7ffe5de18e09db0356896173c72e081c75cde566 828ba05644f03f264b6a5419ecec7f00b1cbfdb2 -Depends: rocm-khronos-cts (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-khronos-cts-dbgsym/rocm-khronos-cts-dbgsym_3.0.0.60202-116~20.04_amd64.deb -Size: 85608890 -SHA256: 765f8fd255ba18fb7326f32c54553470700c2f25f1135f7fb390d5f9fa3a175b -SHA1: 42f8cda256ddcfedf3e6711b92abb04ddf532b38 -MD5sum: b8fced7edadcbbf3b53ca0b57ab6416c -Description: debug symbols for rocm-khronos-cts -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 341286 - -Package: rocm-khronos-cts-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 94e9917906b3ce3d0ca64e31e75247644c9a46ce 9c37af5c1c6d62d20844a1f13b33c45e415a3055 98b06959a1d9de91d7c65a6491d461280d524b60 5366c00d77471b19badf16b8538bd8b74bdbbb91 c8cc61352a916478de98236803c6ca44605b3a66 68f4f8a8bf9bb317c67ac1322f1aa41680422df8 732d242066175d6f183fcc01caf1637e7f136be6 1bbdf6e4ce5a5d854e5f1b472af2c0ce58a4cba5 45b66ce9dc4a938fb93e94f69741581a24422784 045693d56269ce19aadf568552f22d46133f9632 714b4d6b129ba80811ebf5f449c238fbe5912f93 7cda9e0482c9280818978a5d1cba225c00ccb645 857a0dbc0d5684074269ba2862d9e7b9d00a45d0 e75fb162b1b7ceeae1e8dad92ed7ede977e05c8b 81bb62eb33d0952e982828c06eac7281ec35ca33 56a8425f61d034eddd7a3bdbb479038f135b9b96 b0bfdc5b73ebb8005b9148ee759b16033b458290 5267465a18ef8ff7bb24554a0e0ed4470fb3d0a6 2a4c642ffe919adb48a4f2058ad08f88bf335f57 489e092eb67f21cd078a326726ee0f36d726b1dc 7f9613c11119ee83427dd12fb45138f633261e89 fe5cbfece7bf1615b428255aa71b11fc6b4ecfcd b58a7f822e726b70acc4e7823edefd820514b25a 564610a456f0f4ab8d493a2b12f1ae13231caded 5db3a42379e42caa7f744437084aed5d19760566 7781e23422823e38e19bad64b995826e1c429363 4c9dfa4efe2d5ecfbce8b7ff8b1dff1d6cbd4f84 727fa19224b7e5305f20fdf1713a32e35acc1b49 f6cc343dd946f75d1c31a33cf674adbd93ae402a b88b5d1a1820aab4fa1b841584b60c5ed11b89c4 80b6e472fb5ad023ba99a5ba97205bdcfc99f7c5 99e52da9e711c4a0ba4a8d4183817af6c6c46d32 a2b170517b8425c8abdd3aa628405c0b753d6ce7 bb2af8446cf57726e4a900ca63e7bf9f82ad5639 9491e7c8905060234d37707cf00d0e74e455c26b fb33d11866ac9fc0e291ee3f0039c39970ba5bb6 1eea99c5cda0bdffbec92ce946e42699b8e147d7 1ffd33ddd7b7e8a58a28c12ff664e1963faf399d 10c268330940980c139aad706c6268cf8d85c3d3 49970265e0f28910457feadfe07424d8e1702eae 6863af6c17608d60c16868b35e7ef477a64260d3 2a5e889f9d3e7ae8d584e986a1c63844bf9b0ddb b55b56eda641a927ec21309b8d209f75fe373ac3 b916b3ba12c8268c2dd0d4174aa9c8417a207a7c 7ffe5de18e09db0356896173c72e081c75cde566 828ba05644f03f264b6a5419ecec7f00b1cbfdb2 -Depends: rocm-khronos-cts-rpath6.2.2 (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-khronos-cts-dbgsym-rpath6.2.2/rocm-khronos-cts-dbgsym-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 46597724 -SHA256: a1bebc6614b5e6d30b16b9135cdc27c295bb08f5c5ae6771f30ffb39848cd200 -SHA1: 4883f9932443ce2852b6e5145370663378561314 -MD5sum: e556c80b1b825980466d045bfcda270a -Description: debug symbols for rocm-khronos-cts -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 341286 - -Package: rocm-khronos-cts-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 94e9917906b3ce3d0ca64e31e75247644c9a46ce 9c37af5c1c6d62d20844a1f13b33c45e415a3055 98b06959a1d9de91d7c65a6491d461280d524b60 5366c00d77471b19badf16b8538bd8b74bdbbb91 c8cc61352a916478de98236803c6ca44605b3a66 68f4f8a8bf9bb317c67ac1322f1aa41680422df8 732d242066175d6f183fcc01caf1637e7f136be6 1bbdf6e4ce5a5d854e5f1b472af2c0ce58a4cba5 45b66ce9dc4a938fb93e94f69741581a24422784 045693d56269ce19aadf568552f22d46133f9632 714b4d6b129ba80811ebf5f449c238fbe5912f93 7cda9e0482c9280818978a5d1cba225c00ccb645 857a0dbc0d5684074269ba2862d9e7b9d00a45d0 e75fb162b1b7ceeae1e8dad92ed7ede977e05c8b 81bb62eb33d0952e982828c06eac7281ec35ca33 56a8425f61d034eddd7a3bdbb479038f135b9b96 b0bfdc5b73ebb8005b9148ee759b16033b458290 5267465a18ef8ff7bb24554a0e0ed4470fb3d0a6 2a4c642ffe919adb48a4f2058ad08f88bf335f57 489e092eb67f21cd078a326726ee0f36d726b1dc 7f9613c11119ee83427dd12fb45138f633261e89 fe5cbfece7bf1615b428255aa71b11fc6b4ecfcd b58a7f822e726b70acc4e7823edefd820514b25a 564610a456f0f4ab8d493a2b12f1ae13231caded 5db3a42379e42caa7f744437084aed5d19760566 7781e23422823e38e19bad64b995826e1c429363 4c9dfa4efe2d5ecfbce8b7ff8b1dff1d6cbd4f84 727fa19224b7e5305f20fdf1713a32e35acc1b49 f6cc343dd946f75d1c31a33cf674adbd93ae402a b88b5d1a1820aab4fa1b841584b60c5ed11b89c4 80b6e472fb5ad023ba99a5ba97205bdcfc99f7c5 99e52da9e711c4a0ba4a8d4183817af6c6c46d32 a2b170517b8425c8abdd3aa628405c0b753d6ce7 bb2af8446cf57726e4a900ca63e7bf9f82ad5639 9491e7c8905060234d37707cf00d0e74e455c26b fb33d11866ac9fc0e291ee3f0039c39970ba5bb6 1eea99c5cda0bdffbec92ce946e42699b8e147d7 1ffd33ddd7b7e8a58a28c12ff664e1963faf399d 10c268330940980c139aad706c6268cf8d85c3d3 49970265e0f28910457feadfe07424d8e1702eae 6863af6c17608d60c16868b35e7ef477a64260d3 2a5e889f9d3e7ae8d584e986a1c63844bf9b0ddb b55b56eda641a927ec21309b8d209f75fe373ac3 b916b3ba12c8268c2dd0d4174aa9c8417a207a7c 7ffe5de18e09db0356896173c72e081c75cde566 828ba05644f03f264b6a5419ecec7f00b1cbfdb2 -Depends: rocm-khronos-cts6.2.2 (= 3.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-khronos-cts-dbgsym6.2.2/rocm-khronos-cts-dbgsym6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 46599844 -SHA256: c2ef89fac02a01d0bf31cd5779cfc9b349bf521da542a8bb6f1de0e752e45e19 -SHA1: bd58d39a7d252c664cc45cc4d4f7e84a0a885cce -MD5sum: 078be9726562359627b5efa3379e6415 -Description: debug symbols for rocm-khronos-cts -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 3.0.0.60202-116~20.04 -Installed-Size: 341286 - -Package: rocm-khronos-cts-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2, rocm-opencl-icd-loader-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-khronos-cts-rpath6.2.2/rocm-khronos-cts-rpath6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 3529220 -SHA256: e0429568803a6a5dd29fafca6e09b1c85bb3f1d957e1880cc2ca8b4822af01a0 -SHA1: 54a937327717dddb93f28f7a769cbb0815d753d6 -MD5sum: 1688cdbe2e9571b64970fb943052254e -Description: CLConform built using CMake -Maintainer: ROCm OpenCL Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 24079 - -Package: rocm-khronos-cts6.2.2 -Architecture: amd64 -Depends: rocm-core6.2.2, rocm-opencl-icd-loader6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-khronos-cts6.2.2/rocm-khronos-cts6.2.2_3.0.0.60202-116~20.04_amd64.deb -Size: 3531420 -SHA256: 72e5620d89a1a3efbe8cd4b0c1bd37f738d8394aef494d2051603bc328a1a38a -SHA1: eaa9e02d9ecb87c03bc84ff801f111240ff24168 -MD5sum: 18801dcb3b4d7396fd05f34aa581d475 -Description: CLConform built using CMake -Maintainer: ROCm OpenCL Support -Version: 3.0.0.60202-116~20.04 -Installed-Size: 24079 - Package: rocm-language-runtime Architecture: amd64 -Depends: comgr (= 2.8.0.60202-116~20.04), hsa-rocr (= 1.14.0.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), openmp-extras-runtime (= 18.62.0.60202-116~20.04) +Depends: comgr (= 2.8.0.60301-48~20.04), hsa-rocr (= 1.14.0.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), openmp-extras-runtime (= 18.63.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-language-runtime/rocm-language-runtime_6.2.2.60202-116~20.04_amd64.deb -Size: 834 -SHA256: d70626b42ee6951a18efe3875e36beb04ccecde77153d98a538802b1950334ad -SHA1: f1a4064e9ce55bf5320b81d546de0863972a5cc3 -MD5sum: 910f8fa2171e5f9e8c212c3f42705e25 +Filename: pool/main/r/rocm-language-runtime/rocm-language-runtime_6.3.1.60301-48~20.04_amd64.deb +Size: 840 +SHA256: 68af9467edb6aee37e5c0ecc48eb610f9b6942e99861775182e34792933f442a +SHA1: e279c7d8ebbd094937708b6c262a7d2a624603d3 +MD5sum: 38b62c5378c98d8346d795ef6eaac173 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-language-runtime-asan +Package: rocm-language-runtime-rpath6.3.1 Architecture: amd64 -Depends: rocm-language-runtime (= 6.2.2.60202-116~20.04), comgr-asan (= 2.8.0.60202-116~20.04), hsakmt-roct-asan (= 20240607.4.05.60202-116~20.04), hsa-rocr-asan (= 1.14.0.60202-116~20.04), openmp-extras-asan (= 18.62.0.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04) +Depends: comgr-rpath6.3.1 (= 2.8.0.60301-48~20.04), hsa-rocr-rpath6.3.1 (= 1.14.0.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), openmp-extras-runtime-rpath6.3.1 (= 18.63.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-language-runtime-asan/rocm-language-runtime-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 874 -SHA256: be77f52763eda8f8509a4b9f865129052f2d391959d039aaae9aa5de7b759b88 -SHA1: 49f39d8432964941fb01db3ba76600f5d84bcdca -MD5sum: 2ca183d12214a71e0376216a73264bde +Filename: pool/main/r/rocm-language-runtime-rpath6.3.1/rocm-language-runtime-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1052 +SHA256: 11b50e393017de78f8371b07d5c8adc96c62b67eb619ea26b740d0ed50175358 +SHA1: de253790c0c158ad43c3b5d0878e183d3442f076 +MD5sum: 1c44853e88d7d2714f6abf80185a45a5 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-language-runtime-asan-rpath6.2.2 +Package: rocm-language-runtime6.3.1 Architecture: amd64 -Depends: rocm-language-runtime (= 6.2.2.60202-116~20.04), comgr-asan-rpath6.2.2 (= 2.8.0.60202-116~20.04), hsakmt-roct-asan-rpath6.2.2 (= 20240607.4.05.60202-116~20.04), hsa-rocr-asan-rpath6.2.2 (= 1.14.0.60202-116~20.04), openmp-extras-asan-rpath6.2.2 (= 18.62.0.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04) +Depends: comgr6.3.1 (= 2.8.0.60301-48~20.04), hsa-rocr6.3.1 (= 1.14.0.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), openmp-extras-runtime6.3.1 (= 18.63.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-language-runtime-asan-rpath6.2.2/rocm-language-runtime-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1080 -SHA256: b0b24c2e7a66cbd917bcc17348bdfbd7d2d5e45e65d0a28c77727d0c0851d776 -SHA1: d9ba2089aec2b5545084a0b312075a804eaad503 -MD5sum: 7ffc9d4334ab8f7d744e9157653d5f30 +Filename: pool/main/r/rocm-language-runtime6.3.1/rocm-language-runtime6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1028 +SHA256: 0998fab652dd1d194875525c13fcd262040c9036f5fb9cd86eaa3c6e7b90e4c2 +SHA1: cdcec98df39339a38fe8eef4b77c2fcbefaa4679 +MD5sum: 7b332633672d670b3526cf49699f8111 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-language-runtime-asan6.2.2 -Architecture: amd64 -Depends: rocm-language-runtime (= 6.2.2.60202-116~20.04), comgr-asan6.2.2 (= 2.8.0.60202-116~20.04), hsakmt-roct-asan6.2.2 (= 20240607.4.05.60202-116~20.04), hsa-rocr-asan6.2.2 (= 1.14.0.60202-116~20.04), openmp-extras-asan6.2.2 (= 18.62.0.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-language-runtime-asan6.2.2/rocm-language-runtime-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1080 -SHA256: 2f3f10bcbea978dcfe2323aed80777f678e3b74445c381fa44488a50bfba884a -SHA1: 6d8066345c06ed6e9a5342705b2d19f5eabef8e5 -MD5sum: 6ca3a247541cf01677a7c966cc6e09a2 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-language-runtime-rpath6.2.2 -Architecture: amd64 -Depends: comgr-rpath6.2.2 (= 2.8.0.60202-116~20.04), hsa-rocr-rpath6.2.2 (= 1.14.0.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), openmp-extras-runtime-rpath6.2.2 (= 18.62.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-language-runtime-rpath6.2.2/rocm-language-runtime-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1040 -SHA256: 3f5ae4b9ff1efeac8918634ffd5e922cb979d3dc96d028c0e6386ac7f001b5f4 -SHA1: 8a49bb39c9ec3de2947d5b4e08b12caeea85eba8 -MD5sum: be944d4f69c9af0e6ecdc60e201fa85b -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-language-runtime6.2.2 -Architecture: amd64 -Depends: comgr6.2.2 (= 2.8.0.60202-116~20.04), hsa-rocr6.2.2 (= 1.14.0.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), openmp-extras-runtime6.2.2 (= 18.62.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-language-runtime6.2.2/rocm-language-runtime6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1024 -SHA256: fd925ded8c216eab36bf131d851fcefa5018a7872a2b0f89a811159533fb3b15 -SHA1: 8023795166b439a6737e6a97a866346635b33124 -MD5sum: c25f4a647725933c270e627b8deefe25 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-libs Architecture: amd64 -Depends: hipblas (= 2.2.0.60202-116~20.04), hipblaslt (= 0.8.0.60202-116~20.04), hipfft (= 1.0.15.60202-116~20.04), hipsolver (= 2.2.0.60202-116~20.04), hipsparse (= 3.1.1.60202-116~20.04), hiptensor (= 1.3.0.60202-116~20.04), miopen-hip (= 3.2.0.60202-116~20.04), half (= 1.12.0.60202-116~20.04), rccl (= 2.20.5.60202-116~20.04), rocalution (= 3.2.0.60202-116~20.04), rocblas (= 4.2.1.60202-116~20.04), rocfft (= 1.0.29.60202-116~20.04), rocrand (= 3.1.0.60202-116~20.04), hiprand (= 2.11.0.60202-116~20.04), rocsolver (= 3.26.0.60202-116~20.04), rocsparse (= 3.2.0.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), hipsparselt (= 0.2.1.60202-116~20.04), composablekernel-dev (= 1.1.0.60202-116~20.04), hipblas-dev (= 2.2.0.60202-116~20.04), hipblaslt-dev (= 0.8.0.60202-116~20.04), hipcub-dev (= 3.2.0.60202-116~20.04), hipfft-dev (= 1.0.15.60202-116~20.04), hipsolver-dev (= 2.2.0.60202-116~20.04), hipsparse-dev (= 3.1.1.60202-116~20.04), hiptensor-dev (= 1.3.0.60202-116~20.04), miopen-hip-dev (= 3.2.0.60202-116~20.04), rccl-dev (= 2.20.5.60202-116~20.04), rocalution-dev (= 3.2.0.60202-116~20.04), rocblas-dev (= 4.2.1.60202-116~20.04), rocfft-dev (= 1.0.29.60202-116~20.04), rocprim-dev (= 3.2.0.60202-116~20.04), rocrand-dev (= 3.1.0.60202-116~20.04), hiprand-dev (= 2.11.0.60202-116~20.04), rocsolver-dev (= 3.26.0.60202-116~20.04), rocsparse-dev (= 3.2.0.60202-116~20.04), rocthrust-dev (= 3.1.0.60202-116~20.04), rocwmma-dev (= 1.5.0.60202-116~20.04), hipsparselt-dev (= 0.2.1.60202-116~20.04) +Depends: hipblas (= 2.3.0.60301-48~20.04), hipblaslt (= 0.10.0.60301-48~20.04), hipfft (= 1.0.17.60301-48~20.04), hipsolver (= 2.3.0.60301-48~20.04), hipsparse (= 3.1.2.60301-48~20.04), hiptensor (= 1.4.0.60301-48~20.04), miopen-hip (= 3.3.0.60301-48~20.04), half (= 1.12.0.60301-48~20.04), rccl (= 2.21.5.60301-48~20.04), rocalution (= 3.2.1.60301-48~20.04), rocblas (= 4.3.0.60301-48~20.04), rocfft (= 1.0.31.60301-48~20.04), rocrand (= 3.2.0.60301-48~20.04), hiprand (= 2.11.1.60301-48~20.04), rocsolver (= 3.27.0.60301-48~20.04), rocsparse (= 3.3.0.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), hipsparselt (= 0.2.2.60301-48~20.04), composablekernel-dev (= 1.1.0.60301-48~20.04), hipblas-dev (= 2.3.0.60301-48~20.04), hipblaslt-dev (= 0.10.0.60301-48~20.04), hipcub-dev (= 3.3.0.60301-48~20.04), hipfft-dev (= 1.0.17.60301-48~20.04), hipsolver-dev (= 2.3.0.60301-48~20.04), hipsparse-dev (= 3.1.2.60301-48~20.04), hiptensor-dev (= 1.4.0.60301-48~20.04), miopen-hip-dev (= 3.3.0.60301-48~20.04), rccl-dev (= 2.21.5.60301-48~20.04), rocalution-dev (= 3.2.1.60301-48~20.04), rocblas-dev (= 4.3.0.60301-48~20.04), rocfft-dev (= 1.0.31.60301-48~20.04), rocprim-dev (= 3.3.0.60301-48~20.04), rocrand-dev (= 3.2.0.60301-48~20.04), hiprand-dev (= 2.11.1.60301-48~20.04), rocsolver-dev (= 3.27.0.60301-48~20.04), rocsparse-dev (= 3.3.0.60301-48~20.04), rocthrust-dev (= 3.3.0.60301-48~20.04), rocwmma-dev (= 1.6.0.60301-48~20.04), hipsparselt-dev (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-libs/rocm-libs_6.2.2.60202-116~20.04_amd64.deb -Size: 1064 -SHA256: 94781697b92f126c381331ef849a92cb1c5b8badb2d552e22e36216f6ef57ea0 -SHA1: 37fc15b1569772b60992949f48637185d783321f -MD5sum: 8d9d2fe65e76cdfbfb28d81322b5f8ef +Filename: pool/main/r/rocm-libs/rocm-libs_6.3.1.60301-48~20.04_amd64.deb +Size: 1058 +SHA256: 1b6f7b4eff627e797539c8f0a5a311873af06173bcbb9f46d166ba04ac910018 +SHA1: 25e2ba2741fc098a18b3e4ce98fd910f87d02bcb +MD5sum: 6de2c060ab2fd44db77a3877a23dbc29 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-libs-rpath6.2.2 +Package: rocm-libs-rpath6.3.1 Architecture: amd64 -Depends: hipblas-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-rpath6.2.2 (= 0.8.0.60202-116~20.04), hipfft-rpath6.2.2 (= 1.0.15.60202-116~20.04), hipsolver-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipsparse-rpath6.2.2 (= 3.1.1.60202-116~20.04), hiptensor-rpath6.2.2 (= 1.3.0.60202-116~20.04), miopen-hip-rpath6.2.2 (= 3.2.0.60202-116~20.04), half-rpath6.2.2 (= 1.12.0.60202-116~20.04), rccl-rpath6.2.2 (= 2.20.5.60202-116~20.04), rocalution-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocblas-rpath6.2.2 (= 4.2.1.60202-116~20.04), rocfft-rpath6.2.2 (= 1.0.29.60202-116~20.04), rocrand-rpath6.2.2 (= 3.1.0.60202-116~20.04), hiprand-rpath6.2.2 (= 2.11.0.60202-116~20.04), rocsolver-rpath6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), hipsparselt-rpath6.2.2 (= 0.2.1.60202-116~20.04), composablekernel-dev-rpath6.2.2 (= 1.1.0.60202-116~20.04), hipblas-dev-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-dev-rpath6.2.2 (= 0.8.0.60202-116~20.04), hipcub-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), hipfft-dev-rpath6.2.2 (= 1.0.15.60202-116~20.04), hipsolver-dev-rpath6.2.2 (= 2.2.0.60202-116~20.04), hipsparse-dev-rpath6.2.2 (= 3.1.1.60202-116~20.04), hiptensor-dev-rpath6.2.2 (= 1.3.0.60202-116~20.04), miopen-hip-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), rccl-dev-rpath6.2.2 (= 2.20.5.60202-116~20.04), rocalution-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocblas-dev-rpath6.2.2 (= 4.2.1.60202-116~20.04), rocfft-dev-rpath6.2.2 (= 1.0.29.60202-116~20.04), rocprim-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocrand-dev-rpath6.2.2 (= 3.1.0.60202-116~20.04), hiprand-dev-rpath6.2.2 (= 2.11.0.60202-116~20.04), rocsolver-dev-rpath6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04), rocthrust-dev-rpath6.2.2 (= 3.1.0.60202-116~20.04), rocwmma-dev-rpath6.2.2 (= 1.5.0.60202-116~20.04), hipsparselt-dev-rpath6.2.2 (= 0.2.1.60202-116~20.04) +Depends: hipblas-rpath6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt-rpath6.3.1 (= 0.10.0.60301-48~20.04), hipfft-rpath6.3.1 (= 1.0.17.60301-48~20.04), hipsolver-rpath6.3.1 (= 2.3.0.60301-48~20.04), hipsparse-rpath6.3.1 (= 3.1.2.60301-48~20.04), hiptensor-rpath6.3.1 (= 1.4.0.60301-48~20.04), miopen-hip-rpath6.3.1 (= 3.3.0.60301-48~20.04), half-rpath6.3.1 (= 1.12.0.60301-48~20.04), rccl-rpath6.3.1 (= 2.21.5.60301-48~20.04), rocalution-rpath6.3.1 (= 3.2.1.60301-48~20.04), rocblas-rpath6.3.1 (= 4.3.0.60301-48~20.04), rocfft-rpath6.3.1 (= 1.0.31.60301-48~20.04), rocrand-rpath6.3.1 (= 3.2.0.60301-48~20.04), hiprand-rpath6.3.1 (= 2.11.1.60301-48~20.04), rocsolver-rpath6.3.1 (= 3.27.0.60301-48~20.04), rocsparse-rpath6.3.1 (= 3.3.0.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), hipsparselt-rpath6.3.1 (= 0.2.2.60301-48~20.04), composablekernel-dev-rpath6.3.1 (= 1.1.0.60301-48~20.04), hipblas-dev-rpath6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt-dev-rpath6.3.1 (= 0.10.0.60301-48~20.04), hipcub-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), hipfft-dev-rpath6.3.1 (= 1.0.17.60301-48~20.04), hipsolver-dev-rpath6.3.1 (= 2.3.0.60301-48~20.04), hipsparse-dev-rpath6.3.1 (= 3.1.2.60301-48~20.04), hiptensor-dev-rpath6.3.1 (= 1.4.0.60301-48~20.04), miopen-hip-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), rccl-dev-rpath6.3.1 (= 2.21.5.60301-48~20.04), rocalution-dev-rpath6.3.1 (= 3.2.1.60301-48~20.04), rocblas-dev-rpath6.3.1 (= 4.3.0.60301-48~20.04), rocfft-dev-rpath6.3.1 (= 1.0.31.60301-48~20.04), rocprim-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), rocrand-dev-rpath6.3.1 (= 3.2.0.60301-48~20.04), hiprand-dev-rpath6.3.1 (= 2.11.1.60301-48~20.04), rocsolver-dev-rpath6.3.1 (= 3.27.0.60301-48~20.04), rocsparse-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), rocthrust-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04), rocwmma-dev-rpath6.3.1 (= 1.6.0.60301-48~20.04), hipsparselt-dev-rpath6.3.1 (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-libs-rpath6.2.2/rocm-libs-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-libs-rpath6.3.1/rocm-libs-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb Size: 1252 -SHA256: a3f6d02f6c0840062693f704ed8a0603a1abb79566721a808954d118027e6827 -SHA1: 637d0af951ad671e81c905faca11889cb5274140 -MD5sum: 77f12d38cc591076eb33a1f3f0fd8ea0 +SHA256: 8a09e85a4da61d9e9318fcf4e9561d5e57fa98015d01db5111c7ffab23558af0 +SHA1: d9920c09af853a2aedd23776f06825ae14924fd5 +MD5sum: 18c1cae63fbaf813d76610122647daec Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-libs6.2.2 +Package: rocm-libs6.3.1 Architecture: amd64 -Depends: hipblas6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt6.2.2 (= 0.8.0.60202-116~20.04), hipfft6.2.2 (= 1.0.15.60202-116~20.04), hipsolver6.2.2 (= 2.2.0.60202-116~20.04), hipsparse6.2.2 (= 3.1.1.60202-116~20.04), hiptensor6.2.2 (= 1.3.0.60202-116~20.04), miopen-hip6.2.2 (= 3.2.0.60202-116~20.04), half6.2.2 (= 1.12.0.60202-116~20.04), rccl6.2.2 (= 2.20.5.60202-116~20.04), rocalution6.2.2 (= 3.2.0.60202-116~20.04), rocblas6.2.2 (= 4.2.1.60202-116~20.04), rocfft6.2.2 (= 1.0.29.60202-116~20.04), rocrand6.2.2 (= 3.1.0.60202-116~20.04), hiprand6.2.2 (= 2.11.0.60202-116~20.04), rocsolver6.2.2 (= 3.26.0.60202-116~20.04), rocsparse6.2.2 (= 3.2.0.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), hipsparselt6.2.2 (= 0.2.1.60202-116~20.04), composablekernel-dev6.2.2 (= 1.1.0.60202-116~20.04), hipblas-dev6.2.2 (= 2.2.0.60202-116~20.04), hipblaslt-dev6.2.2 (= 0.8.0.60202-116~20.04), hipcub-dev6.2.2 (= 3.2.0.60202-116~20.04), hipfft-dev6.2.2 (= 1.0.15.60202-116~20.04), hipsolver-dev6.2.2 (= 2.2.0.60202-116~20.04), hipsparse-dev6.2.2 (= 3.1.1.60202-116~20.04), hiptensor-dev6.2.2 (= 1.3.0.60202-116~20.04), miopen-hip-dev6.2.2 (= 3.2.0.60202-116~20.04), rccl-dev6.2.2 (= 2.20.5.60202-116~20.04), rocalution-dev6.2.2 (= 3.2.0.60202-116~20.04), rocblas-dev6.2.2 (= 4.2.1.60202-116~20.04), rocfft-dev6.2.2 (= 1.0.29.60202-116~20.04), rocprim-dev6.2.2 (= 3.2.0.60202-116~20.04), rocrand-dev6.2.2 (= 3.1.0.60202-116~20.04), hiprand-dev6.2.2 (= 2.11.0.60202-116~20.04), rocsolver-dev6.2.2 (= 3.26.0.60202-116~20.04), rocsparse-dev6.2.2 (= 3.2.0.60202-116~20.04), rocthrust-dev6.2.2 (= 3.1.0.60202-116~20.04), rocwmma-dev6.2.2 (= 1.5.0.60202-116~20.04), hipsparselt-dev6.2.2 (= 0.2.1.60202-116~20.04) +Depends: hipblas6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt6.3.1 (= 0.10.0.60301-48~20.04), hipfft6.3.1 (= 1.0.17.60301-48~20.04), hipsolver6.3.1 (= 2.3.0.60301-48~20.04), hipsparse6.3.1 (= 3.1.2.60301-48~20.04), hiptensor6.3.1 (= 1.4.0.60301-48~20.04), miopen-hip6.3.1 (= 3.3.0.60301-48~20.04), half6.3.1 (= 1.12.0.60301-48~20.04), rccl6.3.1 (= 2.21.5.60301-48~20.04), rocalution6.3.1 (= 3.2.1.60301-48~20.04), rocblas6.3.1 (= 4.3.0.60301-48~20.04), rocfft6.3.1 (= 1.0.31.60301-48~20.04), rocrand6.3.1 (= 3.2.0.60301-48~20.04), hiprand6.3.1 (= 2.11.1.60301-48~20.04), rocsolver6.3.1 (= 3.27.0.60301-48~20.04), rocsparse6.3.1 (= 3.3.0.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), hipsparselt6.3.1 (= 0.2.2.60301-48~20.04), composablekernel-dev6.3.1 (= 1.1.0.60301-48~20.04), hipblas-dev6.3.1 (= 2.3.0.60301-48~20.04), hipblaslt-dev6.3.1 (= 0.10.0.60301-48~20.04), hipcub-dev6.3.1 (= 3.3.0.60301-48~20.04), hipfft-dev6.3.1 (= 1.0.17.60301-48~20.04), hipsolver-dev6.3.1 (= 2.3.0.60301-48~20.04), hipsparse-dev6.3.1 (= 3.1.2.60301-48~20.04), hiptensor-dev6.3.1 (= 1.4.0.60301-48~20.04), miopen-hip-dev6.3.1 (= 3.3.0.60301-48~20.04), rccl-dev6.3.1 (= 2.21.5.60301-48~20.04), rocalution-dev6.3.1 (= 3.2.1.60301-48~20.04), rocblas-dev6.3.1 (= 4.3.0.60301-48~20.04), rocfft-dev6.3.1 (= 1.0.31.60301-48~20.04), rocprim-dev6.3.1 (= 3.3.0.60301-48~20.04), rocrand-dev6.3.1 (= 3.2.0.60301-48~20.04), hiprand-dev6.3.1 (= 2.11.1.60301-48~20.04), rocsolver-dev6.3.1 (= 3.27.0.60301-48~20.04), rocsparse-dev6.3.1 (= 3.3.0.60301-48~20.04), rocthrust-dev6.3.1 (= 3.3.0.60301-48~20.04), rocwmma-dev6.3.1 (= 1.6.0.60301-48~20.04), hipsparselt-dev6.3.1 (= 0.2.2.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-libs6.2.2/rocm-libs6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1244 -SHA256: cf1097a840bc86f0b8fe89a2c3810b63d6522a9aa88f680e0538589df66413f4 -SHA1: cfd6203eb56e9ccc442f46bdb0dc63c9b0639bd7 -MD5sum: a2156c47f49a270b0cf965a7ad562f21 +Filename: pool/main/r/rocm-libs6.3.1/rocm-libs6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1240 +SHA256: cf5c43efa44a8dc1a72c01731e81b3a588b36bd5ea4635eafc7859d1ac32e584 +SHA1: 370ead3941b19907941acf2f2f7209866176d979 +MD5sum: 394f8feaf8fba3fa58489ce076903974 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-llvm Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core Recommends: gcc, g++, gcc-multilib, g++-multilib Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm/rocm-llvm_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 327564920 -SHA256: a80f3fa79d97459481876f6f1c14790a3a9267b0bde380f4851b33cd61af0d2f -SHA1: dc36c437538714e653e016d45b389a5bc03effdd -MD5sum: e3cc584792933ec7983e941e1134f720 +Filename: pool/main/r/rocm-llvm/rocm-llvm_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 328702014 +SHA256: 2a408230c915db6f0443cae4a8d22a5ad58fc297f54363f5ae573d379af15425 +SHA1: 003be4e46c964aa339e92fdb3ded52563c91f736 +MD5sum: 32b2364710eafe78ac5187920028c769 Description: ROCm core compiler ROCm core compiler based on LLVM 18.0.0 Package: rocm-llvm-dev Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core, rocm-llvm Recommends: gcc, g++, gcc-multilib, g++-multilib Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm-dev/rocm-llvm-dev_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 1012488664 -SHA256: 0046becdb84e7fca8c2e18694f020daa1ec425f8f7a671f5ea8f842a09897753 -SHA1: 316f7d63dbe361665b774e676792dfda79a63fe6 -MD5sum: e3f6db6b727f46aad8215a9a58258e48 +Filename: pool/main/r/rocm-llvm-dev/rocm-llvm-dev_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 1287373076 +SHA256: 61adb1f80ab51649a11d68542fc4e94f11b0a85f793903651c7952869ac8dba6 +SHA1: 4cdf22eedc7ca4436f8024b2e87657b07b9d25c5 +MD5sum: fdc16a093eed88a3a4560c4b2a1a6c46 Description: ROCm compiler dev tools ROCm compiler dev tools and documentation, based on LLVM 18.0.0 -Package: rocm-llvm-dev-rpath6.2.2 +Package: rocm-llvm-dev-rpath6.3.1 Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 -Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core-rpath6.2.2, rocm-llvm-rpath6.2.2 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 +Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core-rpath6.3.1, rocm-llvm-rpath6.3.1 Recommends: gcc, g++, gcc-multilib, g++-multilib Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm-dev-rpath6.2.2/rocm-llvm-dev-rpath6.2.2_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 653705492 -SHA256: 107c50cd875671a47d4e865dcd232647e5912b4ae1d2fe72f1955aa786721f4a -SHA1: f175b5f97a4ffd268b48704825c36131e982a70d -MD5sum: 3a81815a9674904bf27d71f66db7a369 +Filename: pool/main/r/rocm-llvm-dev-rpath6.3.1/rocm-llvm-dev-rpath6.3.1_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 829135144 +SHA256: 69402d2524ace19d2d90d9ed41b0769af99bc17a8d375c3e5e3c193f7d8291be +SHA1: 7d598d0ef0f2991fb2ded589e6e4ff0ec3ea99d1 +MD5sum: 53abbbef6c9eaf61cb2ceeb139b7ee55 Description: ROCm compiler dev tools ROCm compiler dev tools and documentation, based on LLVM 18.0.0 -Package: rocm-llvm-dev6.2.2 +Package: rocm-llvm-dev6.3.1 Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 -Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core6.2.2, rocm-llvm6.2.2 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 +Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core6.3.1, rocm-llvm6.3.1 Recommends: gcc, g++, gcc-multilib, g++-multilib Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm-dev6.2.2/rocm-llvm-dev6.2.2_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 653704248 -SHA256: daf5e14c527d27abdc1ae5d80ee5938b22db0387c5a6b05622b4fc46069c75e4 -SHA1: 6e405178628f3e8701a6c7d263020b26b8fabfd2 -MD5sum: a30eea81b82deebf5683fc268ad39a75 +Filename: pool/main/r/rocm-llvm-dev6.3.1/rocm-llvm-dev6.3.1_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 829165884 +SHA256: 8ae9a2ef56662c10b12d186f818944d4c45f10e9a08b5ea734dd6594d9cbfdf1 +SHA1: 37ffe1376d7b0ab542aacee248f1f8d953489d90 +MD5sum: d0fa8d49fea81d4a7d150d1c8490a609 Description: ROCm compiler dev tools ROCm compiler dev tools and documentation, based on LLVM 18.0.0 Package: rocm-llvm-docs Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 Depends: rocm-core Recommends: Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm-docs/rocm-llvm-docs_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 12956632 -SHA256: 272869b7982e8be76deacb6c099935e41857b4fa2dbc5e0d22afdd43010c5bd0 -SHA1: b9ba41b0f9481f67b00699acfd2e80226f2d8e61 -MD5sum: 92c1a88002ec27cc8903f584f9f7b9d0 +Filename: pool/main/r/rocm-llvm-docs/rocm-llvm-docs_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 12966984 +SHA256: 92199bd10fe54021fab31999176ca353816dc6d5a37734818d6a81e0ca15ea5a +SHA1: 237cea22df12715b8b2846c82c27cadefed5b014 +MD5sum: eeac3083aba78350554994ebf73d19a9 Description: ROCm LLVM compiler documentation Documenation for LLVM 18.0.0 -Package: rocm-llvm-docs-rpath6.2.2 +Package: rocm-llvm-docs-rpath6.3.1 Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 -Depends: rocm-core-rpath6.2.2 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 +Depends: rocm-core-rpath6.3.1 Recommends: Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm-docs-rpath6.2.2/rocm-llvm-docs-rpath6.2.2_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 9544768 -SHA256: 8deed48a88b0cb372e02c07ef3e2949c02cd2d39360159445779d8bc49e346c6 -SHA1: e979050ab2ddcc33b533a286b017ef7d48b7bc17 -MD5sum: d24fc086f91515a127a921090d398496 +Filename: pool/main/r/rocm-llvm-docs-rpath6.3.1/rocm-llvm-docs-rpath6.3.1_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 9548928 +SHA256: 38b4a578819a03cb4531e575ee035316665d246601a4d67164c5cf0cf9cc7710 +SHA1: da13ba0202da7c679b6d46e4d67ad78122c3916e +MD5sum: c87c6b0049fe46b8e81d6ba8b95643b0 Description: ROCm LLVM compiler documentation Documenation for LLVM 18.0.0 -Package: rocm-llvm-docs6.2.2 +Package: rocm-llvm-docs6.3.1 Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 -Depends: rocm-core6.2.2 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 +Depends: rocm-core6.3.1 Recommends: Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm-docs6.2.2/rocm-llvm-docs6.2.2_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 9544944 -SHA256: 9a54aa9b88be30c673ff3a3cd07e4296f16964bcbaf62697808f74d18cc7086c -SHA1: 649af2a9e54aa69a1b37f611b7f94a695fda6982 -MD5sum: b421a8cb87dca18d3bb5505687d9dd19 +Filename: pool/main/r/rocm-llvm-docs6.3.1/rocm-llvm-docs6.3.1_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 9549152 +SHA256: 049f598bb52229547e530e63c31dbf8864a134c60fcbf07ebe7b306614a1e7c6 +SHA1: f69e1f17544ec1ed7070a0f0dae15ecf2118b035 +MD5sum: 2f38bd8ae69e4ae203833c22a2073afa Description: ROCm LLVM compiler documentation Documenation for LLVM 18.0.0 -Package: rocm-llvm-rpath6.2.2 +Package: rocm-llvm-rpath6.3.1 Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 -Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core-rpath6.2.2 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 +Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core-rpath6.3.1 Recommends: gcc, g++, gcc-multilib, g++-multilib Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm-rpath6.2.2/rocm-llvm-rpath6.2.2_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 215539620 -SHA256: 5a4eb6fa0893fb4090412e68cc60727ad425ee765c90a90667be464c0154fee5 -SHA1: a9c767b1653b7274e6cc7fda2d3d4f7d542ec2d6 -MD5sum: 4d82db5cc5e5dd7c92fa2633ef1594a0 +Filename: pool/main/r/rocm-llvm-rpath6.3.1/rocm-llvm-rpath6.3.1_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 216437564 +SHA256: b2559794da547ff78ea6265407dbd821d5e56c36e944d52f18ffef44ee88b828 +SHA1: 01629f41f7d95c7305e4550412a540c0e1e61f44 +MD5sum: 7db6abcefa546faeeaa2be33fe5e8ab8 Description: ROCm core compiler ROCm core compiler based on LLVM 18.0.0 -Package: rocm-llvm6.2.2 +Package: rocm-llvm6.3.1 Architecture: amd64 Maintainer: ROCm Compiler Support -Version: 18.0.0.24355.60202-116~20.04 -Release: 116~20.04 -Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core6.2.2 +Version: 18.0.0.24491.60301-48~20.04 +Release: 48~20.04 +Depends: python3, libc6, libstdc++6|libstdc++8, libstdc++-5-dev|libstdc++-7-dev|libstdc++-11-dev, libgcc-5-dev|libgcc-7-dev|libgcc-11-dev, rocm-core6.3.1 Recommends: gcc, g++, gcc-multilib, g++-multilib Priority: optional Section: devel -Filename: pool/main/r/rocm-llvm6.2.2/rocm-llvm6.2.2_18.0.0.24355.60202-116~20.04_amd64.deb -Size: 215534508 -SHA256: cd75c714026dd11be0340edd0fe4e23bdba453d596df8b72fc2c172aa9c5b147 -SHA1: 9c7359a68540db7920192cf91832a29083f088ce -MD5sum: bf2617f96b9c23fdb5a39eda87011e82 +Filename: pool/main/r/rocm-llvm6.3.1/rocm-llvm6.3.1_18.0.0.24491.60301-48~20.04_amd64.deb +Size: 216442924 +SHA256: d24d414040205a649981d914facf27e8349bf7e6ad845346d40dfa73fb5adeba +SHA1: 01250aacccf68b66d3a005eeb7114a993a372a77 +MD5sum: 08c4f7ef0b8d3f01cc1a244b7be97ace Description: ROCm core compiler ROCm core compiler based on LLVM 18.0.0 Package: rocm-ml-libraries Architecture: amd64 -Depends: rocm-hip-libraries (= 6.2.2.60202-116~20.04), miopen-hip (= 3.2.0.60202-116~20.04), half (= 1.12.0.60202-116~20.04), rocm-llvm (= 18.0.0.24355.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04) +Depends: rocm-hip-libraries (= 6.3.1.60301-48~20.04), miopen-hip (= 3.3.0.60301-48~20.04), half (= 1.12.0.60301-48~20.04), rocm-llvm (= 18.0.0.24491.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-ml-libraries/rocm-ml-libraries_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-ml-libraries/rocm-ml-libraries_6.3.1.60301-48~20.04_amd64.deb Size: 850 -SHA256: 414f9da69a8e38e7d57c63df9c703754f23321de046ea7d03e3b403c9cf40d64 -SHA1: 11cde7b5535da212c01841335b8ee63202c80eb4 -MD5sum: 8cf8a628e98e9dfcdb4baf108b8433d7 +SHA256: eadc9e263e7cc54e6d5ee2807a9f7ee5cb2b278fa3b92363a348283b1da0b7a5 +SHA1: 282e8c86df08c47bda0c5563453e4221d7192a36 +MD5sum: 6a3b83346f5ecc972cc1cff65a0c690c Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-ml-libraries-asan +Package: rocm-ml-libraries-rpath6.3.1 Architecture: amd64 -Depends: rocm-ml-libraries (= 6.2.2.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-hip-libraries-asan (= 6.2.2.60202-116~20.04), miopen-hip-asan (= 3.2.0.60202-116~20.04) +Depends: rocm-hip-libraries-rpath6.3.1 (= 6.3.1.60301-48~20.04), miopen-hip-rpath6.3.1 (= 3.3.0.60301-48~20.04), half-rpath6.3.1 (= 1.12.0.60301-48~20.04), rocm-llvm-rpath6.3.1 (= 18.0.0.24491.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-ml-libraries-asan/rocm-ml-libraries-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 840 -SHA256: d30b086cb9c304a57387314e73f0ef03a194cc8f53a8d97d8d6e15d1a69072c3 -SHA1: c975fb93d04a46d8bd4b04e2773d316635db3d3b -MD5sum: 03ad7270d28de19b477439a63c8ba5b2 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-ml-libraries-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-ml-libraries (= 6.2.2.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-hip-libraries-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), miopen-hip-asan-rpath6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-ml-libraries-asan-rpath6.2.2/rocm-ml-libraries-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1044 -SHA256: c0dae7ceaf479c8224c7e7bab98c456be88a2fd12e3ac99301a4114f39a3824f -SHA1: 40203c3be76d49b16a38cf80139767bc8b9356db -MD5sum: a87ba56e997ac84a470a7a8d9a4757ab -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-ml-libraries-asan6.2.2 -Architecture: amd64 -Depends: rocm-ml-libraries (= 6.2.2.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-hip-libraries-asan6.2.2 (= 6.2.2.60202-116~20.04), miopen-hip-asan6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-ml-libraries-asan6.2.2/rocm-ml-libraries-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1044 -SHA256: 63a67f10d5c920d6fe929349c117c27a46dd55cb96513ea20cbfebdd693af75e -SHA1: 18c1d77f340523ce243dd13f9325082352d79cca -MD5sum: 8a29d2a290aba510d6e87ab1385ae66c -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-ml-libraries-rpath6.2.2 -Architecture: amd64 -Depends: rocm-hip-libraries-rpath6.2.2 (= 6.2.2.60202-116~20.04), miopen-hip-rpath6.2.2 (= 3.2.0.60202-116~20.04), half-rpath6.2.2 (= 1.12.0.60202-116~20.04), rocm-llvm-rpath6.2.2 (= 18.0.0.24355.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-ml-libraries-rpath6.2.2/rocm-ml-libraries-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-ml-libraries-rpath6.3.1/rocm-ml-libraries-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb Size: 1052 -SHA256: 32d0e7377c7dacf0ea1e1086e58da147c7bd1c4a135cb44e2461ff7ef14db984 -SHA1: beec11d090828f388647da15912bfc04db120b57 -MD5sum: 16d0c58a60954936b0cfc97e7999de7e +SHA256: 928e12dcd4c6828792e14c74a63aa557f5ef0d08316d239e4acde2282863e45c +SHA1: 8f455cc9c21fb109e0edf564fd398f872b3c803f +MD5sum: 13b15be083f8c181e8a2be1a7362f1a4 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-ml-libraries6.2.2 +Package: rocm-ml-libraries6.3.1 Architecture: amd64 -Depends: rocm-hip-libraries6.2.2 (= 6.2.2.60202-116~20.04), miopen-hip6.2.2 (= 3.2.0.60202-116~20.04), half6.2.2 (= 1.12.0.60202-116~20.04), rocm-llvm6.2.2 (= 18.0.0.24355.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04) +Depends: rocm-hip-libraries6.3.1 (= 6.3.1.60301-48~20.04), miopen-hip6.3.1 (= 3.3.0.60301-48~20.04), half6.3.1 (= 1.12.0.60301-48~20.04), rocm-llvm6.3.1 (= 18.0.0.24491.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-ml-libraries6.2.2/rocm-ml-libraries6.2.2_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-ml-libraries6.3.1/rocm-ml-libraries6.3.1_6.3.1.60301-48~20.04_amd64.deb Size: 1048 -SHA256: 38171cd7dadc944d894cdc05baa6a6282950b5fbad268f3c4568297659ed9765 -SHA1: 4fd92f7cd307475984b60eb1dd28ca6cb75b3cab -MD5sum: 291fc31fd70e39cddac10c0e3631ae6a +SHA256: 9ae34543c7c264a2212281408d53cd5da9dfc87089d19fc4a14a8274a065088d +SHA1: 4e5a07de50e225b5a86fb71f052668c13b4dec30 +MD5sum: 2737db44e66576fb50ff1217fab18827 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-ml-sdk Architecture: amd64 -Depends: rocm-ml-libraries (= 6.2.2.60202-116~20.04), rocm-hip-sdk (= 6.2.2.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), miopen-hip-dev (= 3.2.0.60202-116~20.04) +Depends: rocm-ml-libraries (= 6.3.1.60301-48~20.04), rocm-hip-sdk (= 6.3.1.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), miopen-hip-dev (= 3.3.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-ml-sdk/rocm-ml-sdk_6.2.2.60202-116~20.04_amd64.deb -Size: 828 -SHA256: 8527c4d090d2161b05d6226a8f3f900d0f4c1e664c3f1986521322f3f32986f9 -SHA1: da1e11bb7dc8471943aff4bbb4dcd4353a3caed1 -MD5sum: 70c84e26f5a9bfca6648c995a1b44e5f +Filename: pool/main/r/rocm-ml-sdk/rocm-ml-sdk_6.3.1.60301-48~20.04_amd64.deb +Size: 832 +SHA256: aa59527af4c27fe759aa4d140c1ae09adb9720832818010927bada0c074b2c64 +SHA1: e9ec6362241ea4d8b591453c69390cf28d49b5d5 +MD5sum: 076cebc8bd8233175d293db3efc47dd0 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-ml-sdk-asan +Package: rocm-ml-sdk-rpath6.3.1 Architecture: amd64 -Depends: rocm-ml-sdk (= 6.2.2.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-ml-libraries-asan (= 6.2.2.60202-116~20.04) +Depends: rocm-ml-libraries-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-hip-sdk-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), miopen-hip-dev-rpath6.3.1 (= 3.3.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-ml-sdk-asan/rocm-ml-sdk-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 822 -SHA256: a030495846c5542a77d1528131cbf4dac3a5fda7b45f4c999f4ccfb0f3127c27 -SHA1: 234f3e70c8ebfc9a8bf3989be3629663f4c30a0f -MD5sum: a79ba97ed282d36c689d554f35f67f27 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-ml-sdk-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-ml-sdk (= 6.2.2.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-ml-libraries-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-ml-sdk-asan-rpath6.2.2/rocm-ml-sdk-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1016 -SHA256: 15b9851e62b8c49f5b07b8b5cb7e8da7e18853e0e14bce8aae1b9fc39e357724 -SHA1: 486c18417cf476834161094d19f7cd7f00581553 -MD5sum: d0fe513b45f4637b38175d4cc3182186 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-ml-sdk-asan6.2.2 -Architecture: amd64 -Depends: rocm-ml-sdk (= 6.2.2.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-ml-libraries-asan6.2.2 (= 6.2.2.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-ml-sdk-asan6.2.2/rocm-ml-sdk-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1012 -SHA256: 78f71aa3daecf6ac41d7c1ddef1df9c13fca1863aee3555c5a2a3c1d5b338e13 -SHA1: 9e9ae75c43e9445d2bccc3181988a5b0a5ac89e7 -MD5sum: da23e25c6f951e827b2bc7f5e4859144 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-ml-sdk-rpath6.2.2 -Architecture: amd64 -Depends: rocm-ml-libraries-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-hip-sdk-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), miopen-hip-dev-rpath6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-ml-sdk-rpath6.2.2/rocm-ml-sdk-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-ml-sdk-rpath6.3.1/rocm-ml-sdk-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb Size: 1032 -SHA256: b17ec0ade45a058bcb9e744b0502af228c9d63eec152df4c5d57e57d6178a6ed -SHA1: 09f5faf058c122415775495472a5193eeb70194f -MD5sum: 628cc03e463baaa899f8f270c97a71b2 +SHA256: 66bddc1cb954bbca4663914d421efd9e36065be713be3aebc29436af202690bf +SHA1: 76ff9649d846f654c39d43566df34cbe99eae88b +MD5sum: b0a673ee158cb4a56bd0fb89ff09f36f Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-ml-sdk6.2.2 +Package: rocm-ml-sdk6.3.1 Architecture: amd64 -Depends: rocm-ml-libraries6.2.2 (= 6.2.2.60202-116~20.04), rocm-hip-sdk6.2.2 (= 6.2.2.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), miopen-hip-dev6.2.2 (= 3.2.0.60202-116~20.04) +Depends: rocm-ml-libraries6.3.1 (= 6.3.1.60301-48~20.04), rocm-hip-sdk6.3.1 (= 6.3.1.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), miopen-hip-dev6.3.1 (= 3.3.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-ml-sdk6.2.2/rocm-ml-sdk6.2.2_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-ml-sdk6.3.1/rocm-ml-sdk6.3.1_6.3.1.60301-48~20.04_amd64.deb Size: 1012 -SHA256: 96c7c1284c0d22cbd3acd3e4bf0edfcde382b978a02e71fb56c324308004e3fa -SHA1: 711e8be9bd20599c17fd6f5b6aec786b9c18c8e6 -MD5sum: a58cea04def2475f5977c74d3dae0b49 +SHA256: 622aa236f4603bbeb197660fccf1266383085926d5b643ae1970b0832690a7db +SHA1: b232767a511cbc0eb93d25e43662f7faebfb0a17 +MD5sum: ffb7062ed4fcb70ef41c4d36ca289d08 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-ocltst Architecture: amd64 Priority: optional Section: devel -Filename: pool/main/r/rocm-ocltst/rocm-ocltst_2.0.0.60202-116~20.04_amd64.deb -Size: 677812 -SHA256: 36df6aec7734cf7b5ecd1b674a3a1d6d62abb04965ba33433dee120cbf627a41 -SHA1: 3570d0e4f452e0a10b24b38dd64069f9191cdd98 -MD5sum: 2ead6c0e4211a379e5b46e3c4a2c2712 +Filename: pool/main/r/rocm-ocltst/rocm-ocltst_2.0.0.60301-48~20.04_amd64.deb +Size: 676460 +SHA256: ff193fecaa3588982f9d1724534d28b6299ca105dee3653aa37eabf5c96e6f6f +SHA1: b9f11bbf70a310dcf0f0f8ff72f9a598d9b5c1db +MD5sum: 887886ae4c4f7f3af91c70ca5beb8c15 Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 2209 +Version: 2.0.0.60301-48~20.04 +Installed-Size: 2205 Package: rocm-ocltst-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 7b00dd458c5bf4acf47307d02ad600fb4da2a7c3 1a7bbc156b190024eb70dfd4e10fad9dfba801b8 c0657ade7075fe3c1992d05dd5c2dfcab23d33e8 25ebf6a0784117e306d7e37527abe83a90575f79 -Depends: rocm-ocltst (= 2.0.0.60202-116~20.04) +Build-Ids: 4cd878c027a54d71f859127faf8b0e601f5775d2 b0bc4e5aa21878e31f0739159ad31ef6f23707fd 4cfe2e6f5ca2ad8c98dd5b7f31473a989d28aca4 14ace8d41d465ce94da3dc65619e42a3b45eb46e +Depends: rocm-ocltst (= 2.0.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocm-ocltst-dbgsym/rocm-ocltst-dbgsym_2.0.0.60202-116~20.04_amd64.deb -Size: 8649782 -SHA256: 9337498f9dd9a4a6e92c2bdd716e557a8221f5cb18917e4d78922f2d965bc14d -SHA1: 9881cc506d670ca002f4ee479ee25307e4e6a687 -MD5sum: bcf4acf118f774b9f6a04d113501e96f +Filename: pool/main/r/rocm-ocltst-dbgsym/rocm-ocltst-dbgsym_2.0.0.60301-48~20.04_amd64.deb +Size: 8646328 +SHA256: 8d0b9095acba1837ff5568708ad61d2e9c055b96919cc333d91d8c9dc77bc386 +SHA1: 7561b628febfbea9712bd2e416e19b39104b33f1 +MD5sum: b8fe26b6689d6cef16f2f5a42384d0f6 Description: debug symbols for rocm-ocltst Maintainer: ROCm OpenCL Support Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 29495 +Version: 2.0.0.60301-48~20.04 +Installed-Size: 29461 -Package: rocm-ocltst-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 7b00dd458c5bf4acf47307d02ad600fb4da2a7c3 1a7bbc156b190024eb70dfd4e10fad9dfba801b8 c0657ade7075fe3c1992d05dd5c2dfcab23d33e8 25ebf6a0784117e306d7e37527abe83a90575f79 -Depends: rocm-ocltst-rpath6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-ocltst-dbgsym-rpath6.2.2/rocm-ocltst-dbgsym-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 4871348 -SHA256: fec5d5685375968856446f4192b9131092ff72f52bf4dfd9688b255500e3e239 -SHA1: e776b16b38ef70c44af61c3933fc4b8ccefd641d -MD5sum: b989270b387e1e630ccd0fe1b5336b6c -Description: debug symbols for rocm-ocltst -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 29495 - -Package: rocm-ocltst-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 7b00dd458c5bf4acf47307d02ad600fb4da2a7c3 1a7bbc156b190024eb70dfd4e10fad9dfba801b8 c0657ade7075fe3c1992d05dd5c2dfcab23d33e8 25ebf6a0784117e306d7e37527abe83a90575f79 -Depends: rocm-ocltst6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-ocltst-dbgsym6.2.2/rocm-ocltst-dbgsym6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 4869036 -SHA256: 3d23ff97a3c29867518b1ef0bc19fbcdce77eb7ff58a2c04feef22d3fd83e3a2 -SHA1: 34096b8c444f7f3b2937a751cf1a87da982531d6 -MD5sum: 6c3c500dec9410a3b060d6efeea32f48 -Description: debug symbols for rocm-ocltst -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 29495 - -Package: rocm-ocltst-rpath6.2.2 +Package: rocm-ocltst-rpath6.3.1 Architecture: amd64 Priority: optional Section: devel -Filename: pool/main/r/rocm-ocltst-rpath6.2.2/rocm-ocltst-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 453312 -SHA256: 3829cabf131c3f3ab08d9c5ac4ee9c35c41f96dc8825864ef71a1c51259d32b3 -SHA1: ce07921654be1d7286d83fb7b3b014d6200fc406 -MD5sum: a437fdcae67067d0beb0b15a3a5cb305 +Filename: pool/main/r/rocm-ocltst-rpath6.3.1/rocm-ocltst-rpath6.3.1_2.0.0.60301-48~20.04_amd64.deb +Size: 454868 +SHA256: 475cb0b017e92d2c5953a758d3b0aaa619bb944b8ac70484360cae1a8da1ad07 +SHA1: c298e75c547243ae003a0acc9db9a598e327c109 +MD5sum: 4b3f3dd2ca00254c33e7108c790c9ace Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 2209 +Version: 2.0.0.60301-48~20.04 +Installed-Size: 2205 -Package: rocm-ocltst6.2.2 +Package: rocm-ocltst6.3.1 Architecture: amd64 Priority: optional Section: devel -Filename: pool/main/r/rocm-ocltst6.2.2/rocm-ocltst6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 453164 -SHA256: 8e0ad516c4a78ef6a61cce9067ac2f662c5efdf06ec2a854ac0611d3e779da42 -SHA1: b11b212a1c8079f6576a32699aee94a8d998eb0a -MD5sum: 4912342b52b634f20a78537447a4f9f5 +Filename: pool/main/r/rocm-ocltst6.3.1/rocm-ocltst6.3.1_2.0.0.60301-48~20.04_amd64.deb +Size: 452804 +SHA256: 88a114108ead8049fdf393628af6443bd48b02c412fe24b6b55dae5f5c0e2f1f +SHA1: 2a0bb2d3a257409333ea14e11b489e0881ed04bc +MD5sum: 22335d29e9188307486d0be3db36715f Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 2209 +Version: 2.0.0.60301-48~20.04 +Installed-Size: 2205 Package: rocm-opencl Architecture: amd64 -Depends: libelf-dev, comgr, hsa-rocr, rocm-core +Conflicts: rocm-opencl-icd-loader +Depends: libelf-dev, comgr, hsa-rocr, rocm-core, ocl-icd-libopencl1 Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl/rocm-opencl_2.0.0.60202-116~20.04_amd64.deb -Size: 589190 -SHA256: e6273d47749fd301526ae4fba559f65651c6df449c724ca27ab83d0e2d0ca2e6 -SHA1: d5e6eff01f8034220d79d32603de908c2a616684 -MD5sum: 58c868d8680350372f2d98dce27490a9 +Filename: pool/main/r/rocm-opencl/rocm-opencl_2.0.0.60301-48~20.04_amd64.deb +Size: 614008 +SHA256: da080267ce75d4aae0a1c7f9872df9e88ab3980c68c40d80d17bb7cfdb10f68b +SHA1: 976945f8c62789f4d840b7f7bc8f69a16edadc36 +MD5sum: 64c629257ff9d4975645743003eee3a1 Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 4351 - -Package: rocm-opencl-asan -Architecture: amd64 -Depends: libelf-dev, comgr-asan, hsa-rocr-asan, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-asan/rocm-opencl-asan_2.0.0.60202-116~20.04_amd64.deb -Size: 1542798 -SHA256: 2e517e7ffe752e7bb22ecf1af414cac081b1cd5d5a4f61d41abea9a2d34000e1 -SHA1: 202468b660438c9c4eb3f29ef0dfc9e1c5668965 -MD5sum: e28db0e96dc11c8d79603ee3e3cda386 -Description: clr built using CMake -Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 15345 - -Package: rocm-opencl-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eef7ad2aed0961302b2d20de7af165eee5fb1da8 -Depends: rocm-opencl-asan (= 2.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-asan-dbgsym/rocm-opencl-asan-dbgsym_2.0.0.60202-116~20.04_amd64.deb -Size: 8195724 -SHA256: d592feee75938cdd21a887e0db101e8185ad11cbbf027ac3717d0d3ab2731397 -SHA1: b9e1772e7588e5e7966a6e394cbb6f25b024b2d6 -MD5sum: 58c03c41ee24c75e6b357443a8746282 -Description: debug symbols for rocm-opencl-asan -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 24929 - -Package: rocm-opencl-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eef7ad2aed0961302b2d20de7af165eee5fb1da8 -Depends: rocm-opencl-asan-rpath6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-asan-dbgsym-rpath6.2.2/rocm-opencl-asan-dbgsym-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 4669352 -SHA256: 7dc512b20d18c99697c895081443c68ab8b109c88706bf51760c923e6758a73a -SHA1: bd8be1eed4968d1786efa3718e696196903b4df9 -MD5sum: 691f1164ae5a0c8d5a3c24c6c8c591dc -Description: debug symbols for rocm-opencl-asan -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 24929 - -Package: rocm-opencl-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: eef7ad2aed0961302b2d20de7af165eee5fb1da8 -Depends: rocm-opencl-asan6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-asan-dbgsym6.2.2/rocm-opencl-asan-dbgsym6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 4667600 -SHA256: e2ee9f12804f0357a82fe3e95957e3efc56256c6e13951228a2aa0309b4448b7 -SHA1: 409ab69ce6239e6377334a697dee56d806443f76 -MD5sum: c4782c1fe8dbe03f6f8bb1b16cc6ad39 -Description: debug symbols for rocm-opencl-asan -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 24929 - -Package: rocm-opencl-asan-rpath6.2.2 -Architecture: amd64 -Depends: libelf-dev, comgr-asan-rpath6.2.2, hsa-rocr-asan-rpath6.2.2, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-asan-rpath6.2.2/rocm-opencl-asan-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 938532 -SHA256: e1e6f0acce6644225dc3f3a112955c9f9469316425ee8da80e413fa7f8e444ec -SHA1: 5f4219fc945345aaa239847f4161dc87cc425cd2 -MD5sum: 3d88eac9757584e54b0083af201db6d4 -Description: clr built using CMake -Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 15345 - -Package: rocm-opencl-asan6.2.2 -Architecture: amd64 -Depends: libelf-dev, comgr-asan6.2.2, hsa-rocr-asan6.2.2, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-asan6.2.2/rocm-opencl-asan6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 941016 -SHA256: 7ce43cf280c5542c00e73d570d8fc8b0af82447c3db6eb595eac4691209e2c8c -SHA1: d04f15fa3de150567425dcd114c221478e6ba5b6 -MD5sum: 743d9861f2c9efc9070512fed7e5b1de -Description: clr built using CMake -Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 15345 +Replaces: rocm-opencl-icd-loader +Version: 2.0.0.60301-48~20.04 +Installed-Size: 4507 Package: rocm-opencl-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: ad8d7102dab3181e2c606998a729eef74c074b1a b33aa63193be865497dc932332ae65c3627a3ff2 -Depends: rocm-opencl (= 2.0.0.60202-116~20.04) +Build-Ids: 087505f4c7e649cbaa5e7469978154903ffc563d 6ab149497d5969929b2c2a9b6c02aaa55349b704 +Depends: rocm-opencl (= 2.0.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocm-opencl-dbgsym/rocm-opencl-dbgsym_2.0.0.60202-116~20.04_amd64.deb -Size: 15213280 -SHA256: 2ea553fcff5a942c7dd251c7f358ced77c0f7b819b0ad6a91576b944cfacabd3 -SHA1: fd45d857f8f6c2259c7b237701ed84fd5efe7e8a -MD5sum: d2486256247f951adecbe2a9bebb1274 +Filename: pool/main/r/rocm-opencl-dbgsym/rocm-opencl-dbgsym_2.0.0.60301-48~20.04_amd64.deb +Size: 15456960 +SHA256: 9c499c1ff49b31421c7763abb763ba75a1ee81adc13716e2f6a4fdb7a238257a +SHA1: 70167833e631a58c8180f6fadb6c16c9dc1bb491 +MD5sum: 95f91df48a9bd86bdec2b37bf1ce36db Description: debug symbols for rocm-opencl Maintainer: ROCm OpenCL Support Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 47985 - -Package: rocm-opencl-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: ad8d7102dab3181e2c606998a729eef74c074b1a b33aa63193be865497dc932332ae65c3627a3ff2 -Depends: rocm-opencl-rpath6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-dbgsym-rpath6.2.2/rocm-opencl-dbgsym-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 9381320 -SHA256: 1c5ddd5735ea60f6942d7ea0d82f06da6ae3053d58d600aedc4f74d336347b7e -SHA1: 401823f906927764e9adbf228adaa4591b5b6ac3 -MD5sum: b09d383a20fe6cfced9de045995c9348 -Description: debug symbols for rocm-opencl -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 47985 - -Package: rocm-opencl-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: ad8d7102dab3181e2c606998a729eef74c074b1a b33aa63193be865497dc932332ae65c3627a3ff2 -Depends: rocm-opencl6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-dbgsym6.2.2/rocm-opencl-dbgsym6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 9376060 -SHA256: 200a114e740722922baa83f93e18e3cea781cadc1872eae0eaac3b7ab6a95780 -SHA1: c8ee841992125bfeb19d4656889c4f50fbbaa2a5 -MD5sum: 1bbf02f2b80ac10646db9f4c1651a572 -Description: debug symbols for rocm-opencl -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 2.0.0.60202-116~20.04 -Installed-Size: 47985 +Version: 2.0.0.60301-48~20.04 +Installed-Size: 48657 Package: rocm-opencl-dev Architecture: amd64 Depends: mesa-common-dev, rocm-opencl, hsa-rocr-dev, rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-dev/rocm-opencl-dev_2.0.0.60202-116~20.04_amd64.deb -Size: 121372 -SHA256: 9fa32e075a591e6823d75543e1b93a070d9054301091ae977bdedc03d975d061 -SHA1: 55b46bcba1f42e85b978e26795f4ded551922634 -MD5sum: daf6cfd1611249a64632b6803d5c1fad +Filename: pool/main/r/rocm-opencl-dev/rocm-opencl-dev_2.0.0.60301-48~20.04_amd64.deb +Size: 121376 +SHA256: b4b35f1c5d1a02f90715ebc6b9d0762f9753d78a12b41d88f4344ba598618853 +SHA1: 1b55d30c9180485c2fa68483fac540331bcf5f44 +MD5sum: 087f55efab2805ef2022391e814fd027 Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 +Version: 2.0.0.60301-48~20.04 Installed-Size: 854 -Package: rocm-opencl-dev-rpath6.2.2 +Package: rocm-opencl-dev-rpath6.3.1 Architecture: amd64 -Depends: mesa-common-dev, rocm-opencl-rpath6.2.2, hsa-rocr-dev-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: mesa-common-dev, rocm-opencl-rpath6.3.1, hsa-rocr-dev-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-dev-rpath6.2.2/rocm-opencl-dev-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 77064 -SHA256: 3287b20310729d2813a50cb7ef5dc67c2427fb3519a404dcdae9a8bdd75614af -SHA1: 0a1de5bde7ad7724ab993c510f29cacbd84bbf06 -MD5sum: 1188a9af75883fd2f8b759c976c5c634 +Filename: pool/main/r/rocm-opencl-dev-rpath6.3.1/rocm-opencl-dev-rpath6.3.1_2.0.0.60301-48~20.04_amd64.deb +Size: 77052 +SHA256: 75d86825e35a49c175787a5c87e2c7224f38b501687f62e509097ad242bc7276 +SHA1: e3b4fdafb7275c2148e121798c1f925a4bdad579 +MD5sum: 57423bd50a0e14ba60a705cc8e3b1acf Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 +Version: 2.0.0.60301-48~20.04 Installed-Size: 854 -Package: rocm-opencl-dev6.2.2 +Package: rocm-opencl-dev6.3.1 Architecture: amd64 -Depends: mesa-common-dev, rocm-opencl6.2.2, hsa-rocr-dev6.2.2, rocm-core6.2.2 +Depends: mesa-common-dev, rocm-opencl6.3.1, hsa-rocr-dev6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-dev6.2.2/rocm-opencl-dev6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 77028 -SHA256: a8f51bb843439796190be9deb5be2a4cbd6faeb1af50c49ff0a8009a10aac233 -SHA1: b4d6f896b256088f19baf10f1661d595042a1f3d -MD5sum: faeda29bcef63283d9b1b57addd69d87 +Filename: pool/main/r/rocm-opencl-dev6.3.1/rocm-opencl-dev6.3.1_2.0.0.60301-48~20.04_amd64.deb +Size: 77088 +SHA256: 6d301dcea7ae6d96311c27e61909e5c1d7e842de094faee7b134497fb3417055 +SHA1: 83e93221ed6b9cb9f4b03a050386b75852aacf74 +MD5sum: 61af9266cb9102b14789522ffd3b9a2f Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 +Version: 2.0.0.60301-48~20.04 Installed-Size: 854 -Package: rocm-opencl-icd-loader +Package: rocm-opencl-rpath6.3.1 Architecture: amd64 -Conflicts: rocm-ocl-icd -Depends: rocm-core +Conflicts: rocm-opencl-icd-loader-rpath6.3.1 +Depends: libelf-dev, comgr-rpath6.3.1, hsa-rocr-rpath6.3.1, rocm-core-rpath6.3.1, ocl-icd-libopencl1 Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-icd-loader/rocm-opencl-icd-loader_1.2.60202-116~20.04_amd64.deb -Size: 17146 -SHA256: 59168ff07c34b28d196cacf62c12310404481eac542cbf138437db03503aa932 -SHA1: f01398a678f0c4e40065f346ad9c2f00f6019319 -MD5sum: 06fef64089f4452410ad9769eff344df -Description: OpenCL-ICD-Loader built using CMake -Maintainer: ROCm OpenCL Support -Provides: rocm-ocl-icd -Replaces: rocm-ocl-icd -Version: 1.2.60202-116~20.04 -Installed-Size: 139 - -Package: rocm-opencl-icd-loader-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e6d2e7b5acb9ca5975340c9cc608bb78d14dd90c -Depends: rocm-opencl-icd-loader (= 1.2.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-icd-loader-dbgsym/rocm-opencl-icd-loader-dbgsym_1.2.60202-116~20.04_amd64.deb -Size: 56178 -SHA256: 6623f7085090cfad7f63b7568388bc9b08cea6b8d7f3bc1763cea406769c0afc -SHA1: 85a85f22c331efe51180d4aae76f9bca3fdba30f -MD5sum: ff8ef65377ab896d9ddd05d4221d9562 -Description: debug symbols for rocm-opencl-icd-loader -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 1.2.60202-116~20.04 -Installed-Size: 197 - -Package: rocm-opencl-icd-loader-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e6d2e7b5acb9ca5975340c9cc608bb78d14dd90c -Depends: rocm-opencl-icd-loader-rpath6.2.2 (= 1.2.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-icd-loader-dbgsym-rpath6.2.2/rocm-opencl-icd-loader-dbgsym-rpath6.2.2_1.2.60202-116~20.04_amd64.deb -Size: 39064 -SHA256: b347b1a01b7cb647b2418416d1b3671b9c9a15f2e67ac4f6f9a486503994e61d -SHA1: a1f0aa93d499891737516db40ee713d806340800 -MD5sum: 9fea83aa1ceff5a935a938db5d22898e -Description: debug symbols for rocm-opencl-icd-loader -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 1.2.60202-116~20.04 -Installed-Size: 197 - -Package: rocm-opencl-icd-loader-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e6d2e7b5acb9ca5975340c9cc608bb78d14dd90c -Depends: rocm-opencl-icd-loader6.2.2 (= 1.2.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-opencl-icd-loader-dbgsym6.2.2/rocm-opencl-icd-loader-dbgsym6.2.2_1.2.60202-116~20.04_amd64.deb -Size: 39108 -SHA256: 580795e8201fe1d4b204f5533944b51d6c84d448b7f4fe2cdc2acea73e31ce3b -SHA1: 46529ee817f4e554d0f52eb5641313e74d7bc83a -MD5sum: 75c47c801e1c08c333cc95afea494982 -Description: debug symbols for rocm-opencl-icd-loader -Maintainer: ROCm OpenCL Support -Package-Type: ddeb -Version: 1.2.60202-116~20.04 -Installed-Size: 197 - -Package: rocm-opencl-icd-loader-rpath6.2.2 -Architecture: amd64 -Conflicts: rocm-ocl-icd-rpath6.2.2 -Depends: rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-icd-loader-rpath6.2.2/rocm-opencl-icd-loader-rpath6.2.2_1.2.60202-116~20.04_amd64.deb -Size: 14324 -SHA256: 4105b37605fdf59eeabad29233d6da0f1c77a58650cfb1c80cac66571afa1978 -SHA1: 8719cc31b8ce1079270703b774d3d602934b1885 -MD5sum: 88240ad8353bc5c1ef3cb4e8337033f1 -Description: OpenCL-ICD-Loader built using CMake -Maintainer: ROCm OpenCL Support -Provides: rocm-ocl-icd-rpath6.2.2 -Replaces: rocm-ocl-icd-rpath6.2.2 -Version: 1.2.60202-116~20.04 -Installed-Size: 139 - -Package: rocm-opencl-icd-loader6.2.2 -Architecture: amd64 -Conflicts: rocm-ocl-icd6.2.2 -Depends: rocm-core6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-icd-loader6.2.2/rocm-opencl-icd-loader6.2.2_1.2.60202-116~20.04_amd64.deb -Size: 14320 -SHA256: 741dd8437d8d1200d8c3a0e4a7983891d3e798ccbb43ecfbc38f42d30699c793 -SHA1: 0b774c3b6493b6fe77e5c23fbc6e27b09c2dc11c -MD5sum: 9cdfd43fe4b09176da3526b5bc9ba627 -Description: OpenCL-ICD-Loader built using CMake -Maintainer: ROCm OpenCL Support -Provides: rocm-ocl-icd6.2.2 -Replaces: rocm-ocl-icd6.2.2 -Version: 1.2.60202-116~20.04 -Installed-Size: 139 - -Package: rocm-opencl-rpath6.2.2 -Architecture: amd64 -Depends: libelf-dev, comgr-rpath6.2.2, hsa-rocr-rpath6.2.2, rocm-core-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-rpath6.2.2/rocm-opencl-rpath6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 452160 -SHA256: 1b3aee547ccda785db607416a23ce618bd9127f78326a65a7e8dde32f7656136 -SHA1: 1454000263e7a63b6b230cd4f337b5ab9df4512e -MD5sum: b7e23c62fea6c0913261e53d4d32d658 +Filename: pool/main/r/rocm-opencl-rpath6.3.1/rocm-opencl-rpath6.3.1_2.0.0.60301-48~20.04_amd64.deb +Size: 470144 +SHA256: fc78af734d928796787d499a37a37748f87002c74de99863dddef1b42ccf90d9 +SHA1: a2ff5538ab219ff1595195c9a94ba797d1849dfb +MD5sum: 096748bc63fcd0d5180b9e4021f61a03 Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 4351 +Replaces: rocm-opencl-icd-loader-rpath6.3.1 +Version: 2.0.0.60301-48~20.04 +Installed-Size: 4507 Package: rocm-opencl-runtime Architecture: amd64 -Depends: rocm-core (= 6.2.2.60202-116~20.04), rocm-language-runtime (= 6.2.2.60202-116~20.04), rocm-opencl (= 2.0.0.60202-116~20.04), rocm-opencl-icd-loader (= 1.2.60202-116~20.04) +Depends: rocm-core (= 6.3.1.60301-48~20.04), rocm-language-runtime (= 6.3.1.60301-48~20.04), rocm-opencl (= 2.0.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-runtime/rocm-opencl-runtime_6.2.2.60202-116~20.04_amd64.deb -Size: 2016 -SHA256: 6e1bc51a2ffefc6ed0262c22bf99d06d7b620530d8a901836211de60a9dced5b -SHA1: 3b3ebdf82daaf9b064d338cba44b9cf14cd2bffc -MD5sum: d9fc0aaeee5fb964a3fd14ac41a75b18 +Filename: pool/main/r/rocm-opencl-runtime/rocm-opencl-runtime_6.3.1.60301-48~20.04_amd64.deb +Size: 2076 +SHA256: 5d41c6790c7932cf53faf77f620cfd41a0f3ed711efbdd91ef47d5bb2e483e32 +SHA1: 1f92479f94f163c3506d860aa263bb5a1e3d4eeb +MD5sum: fb9a4d3723646b7aa2eebeee4554e6e4 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-opencl-runtime-asan +Package: rocm-opencl-runtime-rpath6.3.1 Architecture: amd64 -Depends: rocm-opencl-runtime (= 6.2.2.60202-116~20.04), rocm-core-asan (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan (= 6.2.2.60202-116~20.04), rocm-opencl-asan (= 2.0.0.60202-116~20.04) +Depends: rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-language-runtime-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-rpath6.3.1 (= 2.0.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-runtime-asan/rocm-opencl-runtime-asan_6.2.2.60202-116~20.04_amd64.deb -Size: 830 -SHA256: a686e0551c6e85a3f0446a1e0b8f90e0176d65c81746fe26b2f5a51e30fbcb42 -SHA1: 01edf1f1a243aeb6977532f1b3e797c62887f858 -MD5sum: eca906006f3a08509f89ef0d80ff5020 +Filename: pool/main/r/rocm-opencl-runtime-rpath6.3.1/rocm-opencl-runtime-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2220 +SHA256: 22efe3d96570406024efd22acbed642d85a59cfa9fd6c30b4cd7cf98a36d0fc9 +SHA1: 674ce7eda45b6a9054b8ace2b2006dd0493d2a06 +MD5sum: e11f3556561d038db1fc99cad1bdc7b9 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-opencl-runtime-asan-rpath6.2.2 +Package: rocm-opencl-runtime6.3.1 Architecture: amd64 -Depends: rocm-opencl-runtime (= 6.2.2.60202-116~20.04), rocm-core-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-asan-rpath6.2.2 (= 2.0.0.60202-116~20.04) +Depends: rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-language-runtime6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl6.3.1 (= 2.0.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-runtime-asan-rpath6.2.2/rocm-opencl-runtime-asan-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1036 -SHA256: efe4d4baf6c34ccbd3849156bc5b10d489c36f58d98adf353ab0eefcae189622 -SHA1: 486dba0dea37158b97f161588a21d29491fa2bf3 -MD5sum: 72898b1789bc32bbca4cd1efe3a4790a +Filename: pool/main/r/rocm-opencl-runtime6.3.1/rocm-opencl-runtime6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2220 +SHA256: 111c00f33bee2acccf6144663635d64ebf30857306bd09203622432d0a4cb36c +SHA1: bca373f40d0597bfe08792164a17b6a4316a185e +MD5sum: 9e79ecfce0e756efdb692cabb29552e0 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-opencl-runtime-asan6.2.2 -Architecture: amd64 -Depends: rocm-opencl-runtime (= 6.2.2.60202-116~20.04), rocm-core-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-asan6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-asan6.2.2 (= 2.0.0.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-runtime-asan6.2.2/rocm-opencl-runtime-asan6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1032 -SHA256: 3d23ebd7c10ea706df25a9d224dd04551ace137cc21a780b60ea18a8efc345b6 -SHA1: aef0580b83adf6b7c8e6b00e6656cac2e2a5a3f9 -MD5sum: 86238ef8b70bf7237b91d19152ed1eda -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-opencl-runtime-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-rpath6.2.2 (= 2.0.0.60202-116~20.04), rocm-opencl-icd-loader-rpath6.2.2 (= 1.2.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-runtime-rpath6.2.2/rocm-opencl-runtime-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2188 -SHA256: 4855065aa337d1f58767a9dbbb7cf872435a4f44fb89f0ad54072891fa3f108e -SHA1: 586f8b557e149e626e7c770634d11e423da3fb8a -MD5sum: c86cf725d94d021bed921017a6a338a5 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-opencl-runtime6.2.2 -Architecture: amd64 -Depends: rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-language-runtime6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl6.2.2 (= 2.0.0.60202-116~20.04), rocm-opencl-icd-loader6.2.2 (= 1.2.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-opencl-runtime6.2.2/rocm-opencl-runtime6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2172 -SHA256: d144306b429ff8cf0fccf9f07fe2a8986230eeefeff0f2c0feea11f4a368b1e2 -SHA1: bbb738828210836c46ff13257293c03225400cdb -MD5sum: c432d002092fa49c3363bef14787adb9 -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-opencl-sdk Architecture: amd64 -Depends: rocm-core (= 6.2.2.60202-116~20.04), rocm-opencl-runtime (= 6.2.2.60202-116~20.04), rocm-opencl-dev (= 2.0.0.60202-116~20.04), hsa-rocr-dev (= 1.14.0.60202-116~20.04), hsakmt-roct-dev (= 20240607.4.05.60202-116~20.04) +Depends: rocm-core (= 6.3.1.60301-48~20.04), rocm-opencl-runtime (= 6.3.1.60301-48~20.04), rocm-opencl-dev (= 2.0.0.60301-48~20.04), hsa-rocr-dev (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-sdk/rocm-opencl-sdk_6.2.2.60202-116~20.04_amd64.deb -Size: 852 -SHA256: ea7d70f85e14e54cef39dd9b662e9773508aff106344ae4a6bd62eacbb470fed -SHA1: f0671eac47e84d3f8a77036f22de180703b9540a -MD5sum: 7b35b2d35ece5f80ec85aa2f150e3836 +Filename: pool/main/r/rocm-opencl-sdk/rocm-opencl-sdk_6.3.1.60301-48~20.04_amd64.deb +Size: 828 +SHA256: 5531d34831bc442fdf52ec09895a913aae8be1836a0491d27b77ecdd6ff22ea2 +SHA1: 884722dd170c7e2bdc5c96c89f4e5d26e9f19655 +MD5sum: 4d1bfd2f35197e3eb7cc867d4b124504 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-opencl-sdk-rpath6.2.2 +Package: rocm-opencl-sdk-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-runtime-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-dev-rpath6.2.2 (= 2.0.0.60202-116~20.04), hsa-rocr-dev-rpath6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev-rpath6.2.2 (= 20240607.4.05.60202-116~20.04) +Depends: rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-runtime-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-dev-rpath6.3.1 (= 2.0.0.60301-48~20.04), hsa-rocr-dev-rpath6.3.1 (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-sdk-rpath6.2.2/rocm-opencl-sdk-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1056 -SHA256: f626fba282cd2507c4d4ac0f2a169918aa101a6b83a5cbb2caeb65bb3fd7fd51 -SHA1: 1a2ae3eedd04f01e8d2710f0e6fbf7950e4b2633 -MD5sum: 8f8f4b3ad17e1f8814bcbb4cd7dd071d +Filename: pool/main/r/rocm-opencl-sdk-rpath6.3.1/rocm-opencl-sdk-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1032 +SHA256: 5136982fb4ab76b64685e5e3efe1e45746f63a14111cfa271354cfbba7d7e811 +SHA1: 074cc97baf7bb503695d477a742161bfdbcc948d +MD5sum: 50fe3e8e6bc8047ef52e24bf8f39197a Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-opencl-sdk6.2.2 +Package: rocm-opencl-sdk6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-runtime6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-dev6.2.2 (= 2.0.0.60202-116~20.04), hsa-rocr-dev6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev6.2.2 (= 20240607.4.05.60202-116~20.04) +Depends: rocm-core6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-runtime6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-dev6.3.1 (= 2.0.0.60301-48~20.04), hsa-rocr-dev6.3.1 (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl-sdk6.2.2/rocm-opencl-sdk6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1044 -SHA256: e1692bbfbddf3e9f05ac3e59a2accf71f01f310e1792f51bd722a255e563f570 -SHA1: 4dce4a513236c6fc1d3045390d97af13f11bab37 -MD5sum: dda564408c6ad9dbc2c6b9cbd651c520 +Filename: pool/main/r/rocm-opencl-sdk6.3.1/rocm-opencl-sdk6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1016 +SHA256: 9a5edd67a92e2810f0405b81c4be1b22b77c88daad4f6d6f055671e10cd699f7 +SHA1: de908a5801d633f8a109b2ceb6e74e9828c7b56b +MD5sum: 89813ade2d206a7425eb57e1cfc99486 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-opencl6.2.2 +Package: rocm-opencl6.3.1 Architecture: amd64 -Depends: libelf-dev, comgr6.2.2, hsa-rocr6.2.2, rocm-core6.2.2 +Conflicts: rocm-opencl-icd-loader6.3.1 +Depends: libelf-dev, comgr6.3.1, hsa-rocr6.3.1, rocm-core6.3.1, ocl-icd-libopencl1 Priority: optional Section: devel -Filename: pool/main/r/rocm-opencl6.2.2/rocm-opencl6.2.2_2.0.0.60202-116~20.04_amd64.deb -Size: 452084 -SHA256: a36b6fa904b983ef12df4f619faab5f874d79a66112f4880aecc265f55f8c134 -SHA1: 42a53125d0de4e155b48a3ce01df34c00e7321c1 -MD5sum: 01430c52d7e6f6f4b7baf251833f4749 +Filename: pool/main/r/rocm-opencl6.3.1/rocm-opencl6.3.1_2.0.0.60301-48~20.04_amd64.deb +Size: 470324 +SHA256: df42a01bb68fb6c9f6ef121581996f81972613c2103a8f593b0af195dc36c51b +SHA1: ba742b26a3b0b4f5c6f33e5b1aa1f1d9d1296689 +MD5sum: e3bde90efc4ebbe1ec390f1e9228d284 Description: clr built using CMake Maintainer: ROCm OpenCL Support -Version: 2.0.0.60202-116~20.04 -Installed-Size: 4351 +Replaces: rocm-opencl-icd-loader6.3.1 +Version: 2.0.0.60301-48~20.04 +Installed-Size: 4507 Package: rocm-openmp-sdk Architecture: amd64 -Depends: rocm-language-runtime (= 6.2.2.60202-116~20.04), rocm-device-libs (= 1.0.0.60202-116~20.04), rocm-llvm (= 18.0.0.24355.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04), openmp-extras-dev (= 18.62.0.60202-116~20.04), hsa-rocr-dev (= 1.14.0.60202-116~20.04), hsakmt-roct-dev (= 20240607.4.05.60202-116~20.04) +Depends: rocm-language-runtime (= 6.3.1.60301-48~20.04), rocm-device-libs (= 1.0.0.60301-48~20.04), rocm-llvm (= 18.0.0.24491.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04), openmp-extras-dev (= 18.63.0.60301-48~20.04), hsa-rocr-dev (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-openmp-sdk/rocm-openmp-sdk_6.2.2.60202-116~20.04_amd64.deb -Size: 894 -SHA256: 2032da4d1d9dba8d798dacb55b56cbc866f7955f9ed21fe776037a054e677ba5 -SHA1: 8ca0c6e49f9fafef6d6e65bd933a4482d4badadc -MD5sum: ff9e15fe137306f5081578accb4221c9 +Filename: pool/main/r/rocm-openmp-sdk/rocm-openmp-sdk_6.3.1.60301-48~20.04_amd64.deb +Size: 874 +SHA256: 8d671302098885b9e139014e9b8fb8e705068bad249f4b4d97130db3f5952482 +SHA1: c831535a81eda39e278a06a6467809013184eaa1 +MD5sum: 6a006855dc687d2f04d7ac07ed7920d6 Description: Radeon Open Compute (ROCm) OpenMP Software development Kit. Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-openmp-sdk-rpath6.2.2 +Package: rocm-openmp-sdk-rpath6.3.1 Architecture: amd64 -Depends: rocm-language-runtime-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-device-libs-rpath6.2.2 (= 1.0.0.60202-116~20.04), rocm-llvm-rpath6.2.2 (= 18.0.0.24355.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), openmp-extras-dev-rpath6.2.2 (= 18.62.0.60202-116~20.04), hsa-rocr-dev-rpath6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev-rpath6.2.2 (= 20240607.4.05.60202-116~20.04) +Depends: rocm-language-runtime-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-device-libs-rpath6.3.1 (= 1.0.0.60301-48~20.04), rocm-llvm-rpath6.3.1 (= 18.0.0.24491.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), openmp-extras-dev-rpath6.3.1 (= 18.63.0.60301-48~20.04), hsa-rocr-dev-rpath6.3.1 (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-openmp-sdk-rpath6.2.2/rocm-openmp-sdk-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1096 -SHA256: deb77e6a87dd6ff412d6575518d5ffa8605f36b712493f2ed5fcba5fd0798029 -SHA1: 1833aebc7f3d64bd12d23d8932c545e4530000cb -MD5sum: b2fa8ed2c84decd31b32553391ea5363 +Filename: pool/main/r/rocm-openmp-sdk-rpath6.3.1/rocm-openmp-sdk-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1084 +SHA256: d09d3a6ea9406363639adaa800965a86c2bd0cb68e4221c09504a9fe5d2ac1af +SHA1: e0ce39021ac467a89c09bd76ea0123438a498f46 +MD5sum: 0ace23b0f5496fb8274de8ff81f3d0e6 Description: Radeon Open Compute (ROCm) OpenMP Software development Kit. Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-openmp-sdk6.2.2 +Package: rocm-openmp-sdk6.3.1 Architecture: amd64 -Depends: rocm-language-runtime6.2.2 (= 6.2.2.60202-116~20.04), rocm-device-libs6.2.2 (= 1.0.0.60202-116~20.04), rocm-llvm6.2.2 (= 18.0.0.24355.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), openmp-extras-dev6.2.2 (= 18.62.0.60202-116~20.04), hsa-rocr-dev6.2.2 (= 1.14.0.60202-116~20.04), hsakmt-roct-dev6.2.2 (= 20240607.4.05.60202-116~20.04) +Depends: rocm-language-runtime6.3.1 (= 6.3.1.60301-48~20.04), rocm-device-libs6.3.1 (= 1.0.0.60301-48~20.04), rocm-llvm6.3.1 (= 18.0.0.24491.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), openmp-extras-dev6.3.1 (= 18.63.0.60301-48~20.04), hsa-rocr-dev6.3.1 (= 1.14.0.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-openmp-sdk6.2.2/rocm-openmp-sdk6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1096 -SHA256: 9713d7106edebb66d675928a3fdf9d1ede6d6b25f45d5e1dd75dc941282a2e27 -SHA1: 9e4d9df63aaa80d9fe1d0840111471b4c175a05d -MD5sum: b74f6d2e12d6941251316eeed4098713 +Filename: pool/main/r/rocm-openmp-sdk6.3.1/rocm-openmp-sdk6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1080 +SHA256: 19edc9798c9c2f91505605bd773ec9b0088ed92c231e38ff06ef131a9574c125 +SHA1: c0cb49ab7e43fdc80092f36bbf823c51d2137db3 +MD5sum: b605e7264a0cba479d3f0dff808c4515 Description: Radeon Open Compute (ROCm) OpenMP Software development Kit. Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-rpath6.2.2 +Package: rocm-rpath6.3.1 Architecture: amd64 -Depends: rocm-utils-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-developer-tools-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-openmp-sdk-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-sdk-rpath6.2.2 (= 6.2.2.60202-116~20.04), rocm-ml-sdk-rpath6.2.2 (= 6.2.2.60202-116~20.04), mivisionx-rpath6.2.2 (= 3.0.0.60202-116~20.04), migraphx-rpath6.2.2 (= 2.10.0.60202-116~20.04), rpp-rpath6.2.2 (= 1.8.0.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04), migraphx-dev-rpath6.2.2 (= 2.10.0.60202-116~20.04), mivisionx-dev-rpath6.2.2 (= 3.0.0.60202-116~20.04), rpp-dev-rpath6.2.2 (= 1.8.0.60202-116~20.04) +Depends: rocm-utils-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-developer-tools-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-openmp-sdk-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-sdk-rpath6.3.1 (= 6.3.1.60301-48~20.04), rocm-ml-sdk-rpath6.3.1 (= 6.3.1.60301-48~20.04), mivisionx-rpath6.3.1 (= 3.1.0.60301-48~20.04), migraphx-rpath6.3.1 (= 2.11.0.60301-48~20.04), rpp-rpath6.3.1 (= 1.9.1.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04), migraphx-dev-rpath6.3.1 (= 2.11.0.60301-48~20.04), mivisionx-dev-rpath6.3.1 (= 3.1.0.60301-48~20.04), rpp-dev-rpath6.3.1 (= 1.9.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-rpath6.2.2/rocm-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2232 -SHA256: ebea9a11a53bca6ace0970e59d740ae6e4856535540002f40492533c5a05db67 -SHA1: a9bc492c05ac69185434d9d64e6c343400a41855 -MD5sum: 18e4db9d4b73bab1e2d31e6a39faea10 +Filename: pool/main/r/rocm-rpath6.3.1/rocm-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2276 +SHA256: d16a9e15a8124ffd8fa7c7a833c9ca037f766ae0bf2b20ae9680ac42f7ff4074 +SHA1: 3d4ebf9b64bc6ee3b9cb045b3af86ee455fa86f4 +MD5sum: ff38fb26ba14a5b3d30ea3c3d17ec37c Description: Radeon Open Compute (ROCm) software stack meta package Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm dev support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-smi-lib @@ -8801,474 +5030,261 @@ Architecture: amd64 Depends: python3, rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocm-smi-lib/rocm-smi-lib_7.3.0.60202-116~20.04_amd64.deb -Size: 1002264 -SHA256: 8733acec9d1330ef09322249bb5ac6af2c273cc9f631133a0d5ecc4ded922037 -SHA1: 44af78fd819637804bebc740af43664881e8025b -MD5sum: b33ea3adff75b2200382816d6c7315f8 +Filename: pool/main/r/rocm-smi-lib/rocm-smi-lib_7.4.0.60301-48~20.04_amd64.deb +Size: 1032914 +SHA256: d3142ceb4116a4a9219a0a6da7b6a78c9e31b4522e687b63ba2b2b0e5f556528 +SHA1: 946e64717d1f59f84f717c0dc0013a6ec559c7af +MD5sum: d017fa9af1ac1a319d5129e7b78a8caa Description: AMD System Management libraries Development needed header files for ROCM-SMI Maintainer: RocmSMILib Support Suggests: sudo -Version: 7.3.0.60202-116~20.04 -Installed-Size: 8304 - -Package: rocm-smi-lib-asan -Architecture: amd64 -Depends: python3, rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocm-smi-lib-asan/rocm-smi-lib-asan_7.3.0.60202-116~20.04_amd64.deb -Size: 1943834 -SHA256: b7f2402068f0c6a40f4f0311fb986ee02c2e83c2884afc8b741be2fe70398c48 -SHA1: 9b3e33b181605b5fd6ea2fc9e813ad629dc433d6 -MD5sum: 6677216ff4dfd1bec29624a0f1f2250f -Description: AMD System Management libraries - ASAN libraries for the ROCM-SMI -Maintainer: RocmSMILib Support -Suggests: sudo -Version: 7.3.0.60202-116~20.04 -Installed-Size: 18451 - -Package: rocm-smi-lib-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 67401c9968a014cb3690775ccdaa94454dc264ad 2f019d2b003fadab56bfeb48e2113c714b9abf6a -Depends: rocm-smi-lib-asan (= 7.3.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-smi-lib-asan-dbgsym/rocm-smi-lib-asan-dbgsym_7.3.0.60202-116~20.04_amd64.deb -Size: 9100068 -SHA256: 8fa6f45a6e8272e4c69b401ca28e6e84a5642ef9ddeba029814634385f49ca39 -SHA1: 4c52441840e9e4728faa6d84436f5b9dc8dd014b -MD5sum: 7aa7405acdb94c0fa83bcdb6cbb3b4f2 -Description: debug symbols for rocm-smi-lib-asan -Maintainer: RocmSMILib Support -Package-Type: ddeb -Version: 7.3.0.60202-116~20.04 -Installed-Size: 29935 - -Package: rocm-smi-lib-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 67401c9968a014cb3690775ccdaa94454dc264ad 2f019d2b003fadab56bfeb48e2113c714b9abf6a -Depends: rocm-smi-lib-asan-rpath6.2.2 (= 7.3.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-smi-lib-asan-dbgsym-rpath6.2.2/rocm-smi-lib-asan-dbgsym-rpath6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 5598564 -SHA256: 660a8e9e98feb5166ed4b183b525dc88508aa7f19c7334a4bc3d4401ef258be7 -SHA1: fa98512a1ffd89c91d9dc83d65301d569299ae12 -MD5sum: a35dc4e89add54a83e0c771a8c19449c -Description: debug symbols for rocm-smi-lib-asan -Maintainer: RocmSMILib Support -Package-Type: ddeb -Version: 7.3.0.60202-116~20.04 -Installed-Size: 29935 - -Package: rocm-smi-lib-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 67401c9968a014cb3690775ccdaa94454dc264ad 2f019d2b003fadab56bfeb48e2113c714b9abf6a -Depends: rocm-smi-lib-asan6.2.2 (= 7.3.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-smi-lib-asan-dbgsym6.2.2/rocm-smi-lib-asan-dbgsym6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 5597524 -SHA256: 64c173123c19b59b071d730232538f07013a06521588e9cafc3030e23edf09e7 -SHA1: 24077402160a3caedc1e4978536b279af672a2be -MD5sum: 1fa071223bc74bb7dc1bcfdc55589867 -Description: debug symbols for rocm-smi-lib-asan -Maintainer: RocmSMILib Support -Package-Type: ddeb -Version: 7.3.0.60202-116~20.04 -Installed-Size: 29935 - -Package: rocm-smi-lib-asan-rpath6.2.2 -Architecture: amd64 -Depends: python3, rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-smi-lib-asan-rpath6.2.2/rocm-smi-lib-asan-rpath6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 883076 -SHA256: f1220cff2f79734c0dd0d01138fababf5eaf2635c481a75a4a5941d6b8bf044b -SHA1: 45f8eb6124a794385899924d011219afe3790f68 -MD5sum: 675cef74cb894013f569a17770ee8014 -Description: AMD System Management libraries - ASAN libraries for the ROCM-SMI -Maintainer: RocmSMILib Support -Suggests: sudo -Version: 7.3.0.60202-116~20.04 -Installed-Size: 18451 - -Package: rocm-smi-lib-asan6.2.2 -Architecture: amd64 -Depends: python3, rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocm-smi-lib-asan6.2.2/rocm-smi-lib-asan6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 882856 -SHA256: 10f26cf893ce7937bfaadd06c10a520b1c5d14c9e6236c0cfe5a2e9813c80c9e -SHA1: c61ac30d1b1928936f5a70fdbae9fb6331e99ee7 -MD5sum: 4c506d6fada62e3dae57ff9eede3b26b -Description: AMD System Management libraries - ASAN libraries for the ROCM-SMI -Maintainer: RocmSMILib Support -Suggests: sudo -Version: 7.3.0.60202-116~20.04 -Installed-Size: 18451 +Version: 7.4.0.60301-48~20.04 +Installed-Size: 8642 Package: rocm-smi-lib-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: e736ecddecbf1488cf53c283cba00ef64b3e01fb 9210c855bcea4aa551c9e7e245fc54a178fcf0b4 -Depends: rocm-smi-lib (= 7.3.0.60202-116~20.04) +Build-Ids: 43d4bb25a0e31a0084379012d3a5c741d02d3d72 33dcf3ff75a52be985626dbec9871acd82c7da4d +Depends: rocm-smi-lib (= 7.4.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocm-smi-lib-dbgsym/rocm-smi-lib-dbgsym_7.3.0.60202-116~20.04_amd64.deb -Size: 16069244 -SHA256: 56936051edc6f16593d965c630e15e7ceb7d319f1df9ca333ffccfb118b023cf -SHA1: 736fcb4840927199acd65e1aa6e5cbc58fc54cb5 -MD5sum: bbe391d616d4a038b093421deff985c3 +Filename: pool/main/r/rocm-smi-lib-dbgsym/rocm-smi-lib-dbgsym_7.4.0.60301-48~20.04_amd64.deb +Size: 16483654 +SHA256: 742ebf7553b1881c2bfe34acee83bb15e13da29f73252db4c5b1a2cbaa12f647 +SHA1: e707078aac4f827762cdd06c0fb055f6ba1f6308 +MD5sum: 1141e26a123ad048a47ef91bff0f3473 Description: debug symbols for rocm-smi-lib Maintainer: RocmSMILib Support Package-Type: ddeb -Version: 7.3.0.60202-116~20.04 -Installed-Size: 63561 +Version: 7.4.0.60301-48~20.04 +Installed-Size: 65867 -Package: rocm-smi-lib-dbgsym-rpath6.2.2 +Package: rocm-smi-lib-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e736ecddecbf1488cf53c283cba00ef64b3e01fb 9210c855bcea4aa551c9e7e245fc54a178fcf0b4 -Depends: rocm-smi-lib-rpath6.2.2 (= 7.3.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-smi-lib-dbgsym-rpath6.2.2/rocm-smi-lib-dbgsym-rpath6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 10508424 -SHA256: 0c096b9faf394638975675d29c45617269ca18e0198db998e4b3c1d20aeca187 -SHA1: 52b9f825d84fee17c5fdf6dcf5532c77cbb5acf9 -MD5sum: 8d5424f0ee430d9826a4d0bc2eb2558c -Description: debug symbols for rocm-smi-lib -Maintainer: RocmSMILib Support -Package-Type: ddeb -Version: 7.3.0.60202-116~20.04 -Installed-Size: 63561 - -Package: rocm-smi-lib-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e736ecddecbf1488cf53c283cba00ef64b3e01fb 9210c855bcea4aa551c9e7e245fc54a178fcf0b4 -Depends: rocm-smi-lib6.2.2 (= 7.3.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-smi-lib-dbgsym6.2.2/rocm-smi-lib-dbgsym6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 10508580 -SHA256: 79ced8e6d052e48ad002057d71bc8d800012d203942b3781de7f1973b80a74a0 -SHA1: 1d764b7de51b0af3f68547aa4bdedda6fe7441b0 -MD5sum: abcad4e99505b6acb785498859d38f95 -Description: debug symbols for rocm-smi-lib -Maintainer: RocmSMILib Support -Package-Type: ddeb -Version: 7.3.0.60202-116~20.04 -Installed-Size: 63561 - -Package: rocm-smi-lib-rpath6.2.2 -Architecture: amd64 -Depends: python3, rocm-core-rpath6.2.2 +Depends: python3, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-smi-lib-rpath6.2.2/rocm-smi-lib-rpath6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 524324 -SHA256: 86d3248eb4782eaa49bdba33d7345c6dce839bc399c5a74b9319558d90125028 -SHA1: 7b86335e73eee0517fc951b049dc74826b14d46a -MD5sum: 2ddf9e6f7d367860d3b3a9df3c6e62d6 +Filename: pool/main/r/rocm-smi-lib-rpath6.3.1/rocm-smi-lib-rpath6.3.1_7.4.0.60301-48~20.04_amd64.deb +Size: 538424 +SHA256: 21974b8cb31d62e792c9636c7425ff2c8e18908b04293b29d390c117a1b6a52f +SHA1: 478e1e51139d19a1f2e0d93dfc76730c5c48abe1 +MD5sum: 129466823661534955213c0e8eca20f8 Description: AMD System Management libraries Development needed header files for ROCM-SMI Maintainer: RocmSMILib Support Suggests: sudo -Version: 7.3.0.60202-116~20.04 -Installed-Size: 8304 +Version: 7.4.0.60301-48~20.04 +Installed-Size: 8642 -Package: rocm-smi-lib6.2.2 +Package: rocm-smi-lib6.3.1 Architecture: amd64 -Depends: python3, rocm-core6.2.2 +Depends: python3, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocm-smi-lib6.2.2/rocm-smi-lib6.2.2_7.3.0.60202-116~20.04_amd64.deb -Size: 524388 -SHA256: ade47b6efbe9bc16a4b70aa553bf6681cdb09a9d8fd3867544555de27cd70694 -SHA1: 8085c2ff557b2bc83fbdb245c693b2d18df4bea3 -MD5sum: 0896bba16c169866e5154e432b08ffa9 +Filename: pool/main/r/rocm-smi-lib6.3.1/rocm-smi-lib6.3.1_7.4.0.60301-48~20.04_amd64.deb +Size: 539768 +SHA256: f997a2e8ac49081829064fa04365f4621afcdb8b6e43fd2bc4619b7eb081cbf8 +SHA1: f102d45be8cf554340e6dd2c9b233fc07d2baaf3 +MD5sum: 8ff018365575198f28cae4744df2ce85 Description: AMD System Management libraries Development needed header files for ROCM-SMI Maintainer: RocmSMILib Support Suggests: sudo -Version: 7.3.0.60202-116~20.04 -Installed-Size: 8304 +Version: 7.4.0.60301-48~20.04 +Installed-Size: 8642 Package: rocm-utils Architecture: amd64 -Depends: rocminfo (= 1.0.0.60202-116~20.04), rocm-cmake (= 0.13.0.60202-116~20.04), rocm-core (= 6.2.2.60202-116~20.04) +Depends: rocminfo (= 1.0.0.60301-48~20.04), rocm-cmake (= 0.14.0.60301-48~20.04), rocm-core (= 6.3.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-utils/rocm-utils_6.2.2.60202-116~20.04_amd64.deb -Size: 814 -SHA256: 127461de76d2bee64cadb9e3536eb788fb1802e843c1677a87c50688be9ee78d -SHA1: 088feaeff0284d50aa07a19767c5921c8a8c0783 -MD5sum: e1bd775bfe1ea7203a036d7c66b134d2 +Filename: pool/main/r/rocm-utils/rocm-utils_6.3.1.60301-48~20.04_amd64.deb +Size: 812 +SHA256: 56bc38384553d550f246c673728b7d316f9bb8e3edddf5c30c137f51df8e2e81 +SHA1: 73fc52b79b713801017daddb3ddaa259b68dd212 +MD5sum: 8cd9ffa53b9146c69696cc95b59908f5 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 -Package: rocm-utils-rpath6.2.2 +Package: rocm-utils-rpath6.3.1 Architecture: amd64 -Depends: rocminfo-rpath6.2.2 (= 1.0.0.60202-116~20.04), rocm-cmake-rpath6.2.2 (= 0.13.0.60202-116~20.04), rocm-core-rpath6.2.2 (= 6.2.2.60202-116~20.04) +Depends: rocminfo-rpath6.3.1 (= 1.0.0.60301-48~20.04), rocm-cmake-rpath6.3.1 (= 0.14.0.60301-48~20.04), rocm-core-rpath6.3.1 (= 6.3.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm-utils-rpath6.2.2/rocm-utils-rpath6.2.2_6.2.2.60202-116~20.04_amd64.deb +Filename: pool/main/r/rocm-utils-rpath6.3.1/rocm-utils-rpath6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 1012 +SHA256: 98170ee010ee7d824913d6a9dbf8eeb733c39f81eba5992f0df9dabbcc3a7702 +SHA1: 275a64193b1357b95ee777447ebfc36a75dfae28 +MD5sum: b428321234c4732862c1f6f3e0e1970d +Description: Radeon Open Compute (ROCm) Runtime software stack +Homepage: https://github.com/RadeonOpenCompute/ROCm +Maintainer: ROCm Dev Support +Version: 6.3.1.60301-48~20.04 +Installed-Size: 13 + +Package: rocm-utils6.3.1 +Architecture: amd64 +Depends: rocminfo6.3.1 (= 1.0.0.60301-48~20.04), rocm-cmake6.3.1 (= 0.14.0.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04) +Priority: optional +Section: devel +Filename: pool/main/r/rocm-utils6.3.1/rocm-utils6.3.1_6.3.1.60301-48~20.04_amd64.deb Size: 1008 -SHA256: f13b047f74cf2a6e5e72fa37fb311411cc89d40a9155601f31d202e58baeb4e0 -SHA1: 71f720fcc3aa23e03a7385c815a325caced6a70b -MD5sum: 316082732a66f9536f1389f041c482fd +SHA256: c863b757fab0d42cbca14ef00a4d4f8a89f1f25efe9841d5feffa126c1b6db21 +SHA1: bb7a3dd2c60cf668dc14eacc64444b2b104df4da +MD5sum: c53eba9fb7576b60434a03959cabc6e4 Description: Radeon Open Compute (ROCm) Runtime software stack Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 -Installed-Size: 13 - -Package: rocm-utils6.2.2 -Architecture: amd64 -Depends: rocminfo6.2.2 (= 1.0.0.60202-116~20.04), rocm-cmake6.2.2 (= 0.13.0.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04) -Priority: optional -Section: devel -Filename: pool/main/r/rocm-utils6.2.2/rocm-utils6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 1004 -SHA256: 142b02d63af4b5a4957f160362de5b4d875e4de04157c9eed9e8e74602f45380 -SHA1: 8970f63d9f3058544650d2dbc063d7a165f25e3a -MD5sum: 0c365d18196e6075af12c2efdfe71daa -Description: Radeon Open Compute (ROCm) Runtime software stack -Homepage: https://github.com/RadeonOpenCompute/ROCm -Maintainer: ROCm Dev Support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocm-validation-suite Architecture: amd64 -Depends: hip-runtime-amd, comgr, hsa-rocr, rocblas, rocm-smi-lib, rocm-core, libpci3, libyaml-cpp-dev +Depends: hip-runtime-amd, comgr, hsa-rocr, rocblas, rocm-smi-lib, hiprand, hipblaslt, rocm-core, libpci3, libyaml-cpp-dev Priority: optional Section: devel -Filename: pool/main/r/rocm-validation-suite/rocm-validation-suite_1.0.60202.60202-116~20.04_amd64.deb -Size: 1594682 -SHA256: 21041b254c82ee764cac198ad829fbd0f6fd2347604e4bb7442ea66f66070850 -SHA1: 6f86784809c06ed04d75fe63585843222e260654 -MD5sum: 2cff62992ae67eec81284631730bda41 +Filename: pool/main/r/rocm-validation-suite/rocm-validation-suite_1.1.0.60301-48~20.04_amd64.deb +Size: 2002542 +SHA256: 2cc7e868e9a6f616bb1fe19d0e4fb7e258980cdc9de3aac1b305718ad4cd2805 +SHA1: 92f83e2c6e068bff73babc7244b4de43ad683829 +MD5sum: dfdb5e8ec02cc08e24de493a199b5c16 Description: The ROCm Validation Suite (RVS) is a system validation and diagnostics tool for monitoring, stress testing, detecting and troubleshooting issues that affects the functionality and performance of AMD GPU(s) operating in a high-performance/AI/ML computing environment. ROCm Validation Suite Maintainer: ROCM Validation Suite Support -Version: 1.0.60202.60202-116~20.04 -Installed-Size: 13422 +Version: 1.1.0.60301-48~20.04 +Installed-Size: 20019 Package: rocm-validation-suite-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 45cf12437d892a7fc12a662b86e018cf7f3919d9 327a64b6a183b952ea9cd22cbec565116961df54 d909b285bd0fce2c5499bd65d93b27fd2ee9ba19 32de5f0f03b206323027786842e4d719d1aa0499 e247e8ef7625be5747be0ad823abb0824d213803 c4b64695bfa438458772fcb289f40cf6dc70f15d bed2f27a0d47483b0743827f15a2ae604b211b42 12655854c1f2ed9d3db4753cb5ff84a40604251c 75dc9126d165ef1e3e208ecbf2f450c588d73408 e834c0ee65d8ad14a550147cff05444d67287c0f f192d65ce54fa50d3b5e748c9cbb7eee87b9609c b7bf0949cc2ac31c887a53f62ffa43e485244840 f56c4abe40a613d20c31116c99274853932da8fb dcfc7e4475f51ff717d16963163bab8281d32fa3 434a198537c9e9c244f45c4c7bed7b0bee675f98 1db2f7cfebb1ea76b18caf698bb4d6973646ce50 -Depends: rocm-validation-suite (= 1.0.60202.60202-116~20.04) +Build-Ids: 8990149195e91cf4d50cda8725250061d0b6efda e2cd4040e2946f9a7b97771789593f64575c8ddc cf81542cc1ba851d622a6b3279671bd4b2f14fa1 147ff40c0f8b561093e886822fcedc6f72489c70 d1eb73b2293d39b93a0698e998c600c7be7c22eb e03d3bc24e13cd3d40d765bf085ff1b66d845d5f 734f7e78da69d97d4029f67c069edaafa8da7145 2bf2989e3e8ee4d3882cb1775e00ccf921346914 8e8c45d0636d993e503993def4349bf0def0c2d4 4d33a39334555d83736d1c2a0a8eca9885d0ad3d ce1e0e1bf8904ca9a7c4d885e5f20145b67ed1d8 e3e2b3c57b51acfa44e58ee5a5c01786c1b33036 c9672ec9df35e43581fea44bb0366db7cfef4513 c5a436619c681eff54f994f4f2ccefbba652f2a7 08a00a5f9c05742827a101ace3b5aaf9914825ff 19b9d66d1a4ba748b01ac9339fdeff9d47899cf2 +Depends: rocm-validation-suite (= 1.1.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocm-validation-suite-dbgsym/rocm-validation-suite-dbgsym_1.0.60202.60202-116~20.04_amd64.deb -Size: 5023188 -SHA256: 897f3e99323cdc07cce62f73bdd0549e442dcbcda297f7acc578a84abfd7c7f0 -SHA1: 2faaa3272573c327607863a8144dd260a798cd7b -MD5sum: d5d2003448af3bc8e7a048d95fe3f836 +Filename: pool/main/r/rocm-validation-suite-dbgsym/rocm-validation-suite-dbgsym_1.1.0.60301-48~20.04_amd64.deb +Size: 5017044 +SHA256: fb2ffde4cb4e325a22b35a32a7252a640282511bd79e6a6bc9a2dc9676aa3d2d +SHA1: 63fe6655b2061277b2a745b9cfdec56b1ab14b75 +MD5sum: 1de70ce2951a7b9d99a1b34c2f847e89 Description: debug symbols for rocm-validation-suite Maintainer: ROCM Validation Suite Support Package-Type: ddeb -Version: 1.0.60202.60202-116~20.04 -Installed-Size: 16438 +Version: 1.1.0.60301-48~20.04 +Installed-Size: 16434 -Package: rocm-validation-suite-dbgsym-rpath6.2.2 +Package: rocm-validation-suite-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 45cf12437d892a7fc12a662b86e018cf7f3919d9 327a64b6a183b952ea9cd22cbec565116961df54 d909b285bd0fce2c5499bd65d93b27fd2ee9ba19 32de5f0f03b206323027786842e4d719d1aa0499 e247e8ef7625be5747be0ad823abb0824d213803 c4b64695bfa438458772fcb289f40cf6dc70f15d bed2f27a0d47483b0743827f15a2ae604b211b42 12655854c1f2ed9d3db4753cb5ff84a40604251c 75dc9126d165ef1e3e208ecbf2f450c588d73408 e834c0ee65d8ad14a550147cff05444d67287c0f f192d65ce54fa50d3b5e748c9cbb7eee87b9609c b7bf0949cc2ac31c887a53f62ffa43e485244840 f56c4abe40a613d20c31116c99274853932da8fb dcfc7e4475f51ff717d16963163bab8281d32fa3 434a198537c9e9c244f45c4c7bed7b0bee675f98 1db2f7cfebb1ea76b18caf698bb4d6973646ce50 -Depends: rocm-validation-suite-rpath6.2.2 (= 1.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-validation-suite-dbgsym-rpath6.2.2/rocm-validation-suite-dbgsym-rpath6.2.2_1.0.60202.60202-116~20.04_amd64.deb -Size: 3131192 -SHA256: 3cbdbe63365fb54bba0daa30720dae4aedf4d72796c3fcc477116ea596a06735 -SHA1: e8ca01a48749144335400225f38949a127399b87 -MD5sum: f245042ed8e17fe5f40bbb1e4c7e0352 -Description: debug symbols for rocm-validation-suite -Maintainer: ROCM Validation Suite Support -Package-Type: ddeb -Version: 1.0.60202.60202-116~20.04 -Installed-Size: 16438 - -Package: rocm-validation-suite-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 45cf12437d892a7fc12a662b86e018cf7f3919d9 327a64b6a183b952ea9cd22cbec565116961df54 d909b285bd0fce2c5499bd65d93b27fd2ee9ba19 32de5f0f03b206323027786842e4d719d1aa0499 e247e8ef7625be5747be0ad823abb0824d213803 c4b64695bfa438458772fcb289f40cf6dc70f15d bed2f27a0d47483b0743827f15a2ae604b211b42 12655854c1f2ed9d3db4753cb5ff84a40604251c 75dc9126d165ef1e3e208ecbf2f450c588d73408 e834c0ee65d8ad14a550147cff05444d67287c0f f192d65ce54fa50d3b5e748c9cbb7eee87b9609c b7bf0949cc2ac31c887a53f62ffa43e485244840 f56c4abe40a613d20c31116c99274853932da8fb dcfc7e4475f51ff717d16963163bab8281d32fa3 434a198537c9e9c244f45c4c7bed7b0bee675f98 1db2f7cfebb1ea76b18caf698bb4d6973646ce50 -Depends: rocm-validation-suite6.2.2 (= 1.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocm-validation-suite-dbgsym6.2.2/rocm-validation-suite-dbgsym6.2.2_1.0.60202.60202-116~20.04_amd64.deb -Size: 3130088 -SHA256: 00d9edf3b41aa79c938c7577ccc1afcc975034fdecac3a409dfd52e1ada9beef -SHA1: dace3076c0e678ec411d03fd1ea3c97591620de9 -MD5sum: f737d2220f0416bc3a73f189401debd3 -Description: debug symbols for rocm-validation-suite -Maintainer: ROCM Validation Suite Support -Package-Type: ddeb -Version: 1.0.60202.60202-116~20.04 -Installed-Size: 16438 - -Package: rocm-validation-suite-rpath6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-rpath6.2.2, comgr-rpath6.2.2, hsa-rocr-rpath6.2.2, rocblas-rpath6.2.2, rocm-smi-lib-rpath6.2.2, rocm-core-rpath6.2.2, libpci3, libyaml-cpp-dev +Depends: hip-runtime-amd-rpath6.3.1, comgr-rpath6.3.1, hsa-rocr-rpath6.3.1, rocblas-rpath6.3.1, rocm-smi-lib-rpath6.3.1, hiprand-rpath6.3.1, hipblaslt-rpath6.3.1, rocm-core-rpath6.3.1, libpci3, libyaml-cpp-dev Priority: optional Section: devel -Filename: pool/main/r/rocm-validation-suite-rpath6.2.2/rocm-validation-suite-rpath6.2.2_1.0.60202.60202-116~20.04_amd64.deb -Size: 741376 -SHA256: 916bf7894148d765b3a25993333d3bf3dda40bcf2f86789986b4e8bd6fba728b -SHA1: bd9ef2f306f27834accc447c991fdf4acd11257f -MD5sum: 497faceb0dd8701ab8a80def38960611 +Filename: pool/main/r/rocm-validation-suite-rpath6.3.1/rocm-validation-suite-rpath6.3.1_1.1.0.60301-48~20.04_amd64.deb +Size: 834788 +SHA256: 6585cc21c4e7dc37a9bb8e111e1c1831165f45d124b80c13b0a45c1464ca1ee7 +SHA1: b742bfdb0186db3527b13830a065cc0ab9fa90b6 +MD5sum: 4e1e4a0cfcd3b14d3d520a8f6620cf9b Description: The ROCm Validation Suite (RVS) is a system validation and diagnostics tool for monitoring, stress testing, detecting and troubleshooting issues that affects the functionality and performance of AMD GPU(s) operating in a high-performance/AI/ML computing environment. ROCm Validation Suite Maintainer: ROCM Validation Suite Support -Version: 1.0.60202.60202-116~20.04 -Installed-Size: 13422 +Version: 1.1.0.60301-48~20.04 +Installed-Size: 20019 -Package: rocm-validation-suite6.2.2 +Package: rocm-validation-suite6.3.1 Architecture: amd64 -Depends: hip-runtime-amd6.2.2, comgr6.2.2, hsa-rocr6.2.2, rocblas6.2.2, rocm-smi-lib6.2.2, rocm-core6.2.2, libpci3, libyaml-cpp-dev +Depends: hip-runtime-amd6.3.1, comgr6.3.1, hsa-rocr6.3.1, rocblas6.3.1, rocm-smi-lib6.3.1, hiprand6.3.1, hipblaslt6.3.1, rocm-core6.3.1, libpci3, libyaml-cpp-dev Priority: optional Section: devel -Filename: pool/main/r/rocm-validation-suite6.2.2/rocm-validation-suite6.2.2_1.0.60202.60202-116~20.04_amd64.deb -Size: 743056 -SHA256: e76335c8dd362abb999b32311fae5e538e49430f4e96286f1151a10783a20be3 -SHA1: c78c408dee001467a17c6391795db8fee25b313a -MD5sum: b45d4f3b835c59a3efde9b599b946957 +Filename: pool/main/r/rocm-validation-suite6.3.1/rocm-validation-suite6.3.1_1.1.0.60301-48~20.04_amd64.deb +Size: 836648 +SHA256: cd06184ff5aace539473c4da10d38a42c83e56006ea0c06a7d692ac249542984 +SHA1: c8078bd2e5b7ee3018f3ca89ce15e967b38822d9 +MD5sum: bdc5fc5baa7174f8f0af526748da4fae Description: The ROCm Validation Suite (RVS) is a system validation and diagnostics tool for monitoring, stress testing, detecting and troubleshooting issues that affects the functionality and performance of AMD GPU(s) operating in a high-performance/AI/ML computing environment. ROCm Validation Suite Maintainer: ROCM Validation Suite Support -Version: 1.0.60202.60202-116~20.04 -Installed-Size: 13422 +Version: 1.1.0.60301-48~20.04 +Installed-Size: 20019 -Package: rocm6.2.2 +Package: rocm6.3.1 Architecture: amd64 -Depends: rocm-utils6.2.2 (= 6.2.2.60202-116~20.04), rocm-developer-tools6.2.2 (= 6.2.2.60202-116~20.04), rocm-openmp-sdk6.2.2 (= 6.2.2.60202-116~20.04), rocm-opencl-sdk6.2.2 (= 6.2.2.60202-116~20.04), rocm-ml-sdk6.2.2 (= 6.2.2.60202-116~20.04), mivisionx6.2.2 (= 3.0.0.60202-116~20.04), migraphx6.2.2 (= 2.10.0.60202-116~20.04), rpp6.2.2 (= 1.8.0.60202-116~20.04), rocm-core6.2.2 (= 6.2.2.60202-116~20.04), migraphx-dev6.2.2 (= 2.10.0.60202-116~20.04), mivisionx-dev6.2.2 (= 3.0.0.60202-116~20.04), rpp-dev6.2.2 (= 1.8.0.60202-116~20.04) +Depends: rocm-utils6.3.1 (= 6.3.1.60301-48~20.04), rocm-developer-tools6.3.1 (= 6.3.1.60301-48~20.04), rocm-openmp-sdk6.3.1 (= 6.3.1.60301-48~20.04), rocm-opencl-sdk6.3.1 (= 6.3.1.60301-48~20.04), rocm-ml-sdk6.3.1 (= 6.3.1.60301-48~20.04), mivisionx6.3.1 (= 3.1.0.60301-48~20.04), migraphx6.3.1 (= 2.11.0.60301-48~20.04), rpp6.3.1 (= 1.9.1.60301-48~20.04), rocm-core6.3.1 (= 6.3.1.60301-48~20.04), migraphx-dev6.3.1 (= 2.11.0.60301-48~20.04), mivisionx-dev6.3.1 (= 3.1.0.60301-48~20.04), rpp-dev6.3.1 (= 1.9.1.60301-48~20.04) Priority: optional Section: devel -Filename: pool/main/r/rocm6.2.2/rocm6.2.2_6.2.2.60202-116~20.04_amd64.deb -Size: 2224 -SHA256: baa61f7a355bc75214a9a9e338b81580153bccdb568b2b41540716a2212329ea -SHA1: 57c8d2600e5b06b8dabf9408305b6f20dce053ae -MD5sum: dd21a94b091ee48e1c07a231fbda1195 +Filename: pool/main/r/rocm6.3.1/rocm6.3.1_6.3.1.60301-48~20.04_amd64.deb +Size: 2268 +SHA256: 3e5fe0e1dec2b10e13c735c4729f5a1510fea5ced3dba672b7374e7c8ba34516 +SHA1: 61c4ac014110412bbcce4a0f288501e9e05d2194 +MD5sum: 60dd5df3e582ed6520af1ff96d61c711 Description: Radeon Open Compute (ROCm) software stack meta package Homepage: https://github.com/RadeonOpenCompute/ROCm Maintainer: ROCm dev support -Version: 6.2.2.60202-116~20.04 +Version: 6.3.1.60301-48~20.04 Installed-Size: 13 Package: rocminfo Architecture: amd64 -Depends: hsa-rocr, kmod, pciutils, python3, libc6, libgcc-s1, libstdc++6, rocm-core +Depends: hsa-rocr, pciutils, python3, libc6, libgcc-s1, libstdc++6, rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocminfo/rocminfo_1.0.0.60202-116~20.04_amd64.deb -Size: 28986 -SHA256: 11e2b0b197406a6e3f451d344f080f7af287b9d0c5286b93eaed63a98ce93e7c -SHA1: 8727a96566e12c40f3eecda60263327e6b115ac9 -MD5sum: b56a104f360ab2d0d6a1c09f34a38afe +Filename: pool/main/r/rocminfo/rocminfo_1.0.0.60301-48~20.04_amd64.deb +Size: 28918 +SHA256: 2e4a6f045a26886ef6ba55fe7572b5a52e8ebddabaa2c9a78795d443f2e36d3b +SHA1: 1f1b3390e255d680c09e838c098a41d75e836e15 +MD5sum: dec4aa7b15eb3abbdeb58b77f0221b7f Description: Radeon Open Compute (ROCm) Runtime rocminfo tool Maintainer: AMD Rocminfo Support -Version: 1.0.0.60202-116~20.04 +Version: 1.0.0.60301-48~20.04 Installed-Size: 106 Package: rocminfo-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 30d8001dfe25c0a3113298feaf282072c203a06b -Depends: rocminfo (= 1.0.0.60202-116~20.04) +Build-Ids: da1d3582a3ce6e4f3420981523d6158e8436bc82 +Depends: rocminfo (= 1.0.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocminfo-dbgsym/rocminfo-dbgsym_1.0.0.60202-116~20.04_amd64.deb -Size: 57240 -SHA256: a142e89644e1bb7ea8d04935e1148e071c94e30cad45bac0d07f22eae179a69d -SHA1: 821147cbec4a0f10b3cb633c74eafe0c560d05ba -MD5sum: 570f57711d527bcb89d3575981346171 +Filename: pool/main/r/rocminfo-dbgsym/rocminfo-dbgsym_1.0.0.60301-48~20.04_amd64.deb +Size: 57300 +SHA256: 14cd64e25134f1951ad3e5c95f02cd5c3c1e31409f503e81c8e6f0f0f2121cf3 +SHA1: 1377074bde27c792e5beadabecbd21b6f393b465 +MD5sum: 3f6df434d5d2e40388e4e2bc07accae8 Description: debug symbols for rocminfo Maintainer: AMD Rocminfo Support Package-Type: ddeb -Version: 1.0.0.60202-116~20.04 +Version: 1.0.0.60301-48~20.04 Installed-Size: 192 -Package: rocminfo-dbgsym-rpath6.2.2 +Package: rocminfo-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 30d8001dfe25c0a3113298feaf282072c203a06b -Depends: rocminfo-rpath6.2.2 (= 1.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocminfo-dbgsym-rpath6.2.2/rocminfo-dbgsym-rpath6.2.2_1.0.0.60202-116~20.04_amd64.deb -Size: 47896 -SHA256: 66d4d828ac7c62622b070710905c414c10f01c1bd544840c7cc5fd1814383bc4 -SHA1: c5303e339df14bde7844029e709fc6d3eb629fbd -MD5sum: 78afb0fbe55807a209a27de13519906a -Description: debug symbols for rocminfo -Maintainer: AMD Rocminfo Support -Package-Type: ddeb -Version: 1.0.0.60202-116~20.04 -Installed-Size: 192 - -Package: rocminfo-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 30d8001dfe25c0a3113298feaf282072c203a06b -Depends: rocminfo6.2.2 (= 1.0.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocminfo-dbgsym6.2.2/rocminfo-dbgsym6.2.2_1.0.0.60202-116~20.04_amd64.deb -Size: 47872 -SHA256: 9c27e8f5b94f9eee5fb518369872394b794c8e8ab1ec974c838228c7708e10af -SHA1: 4273920ace173ad6148955d4f665ac29b1ebe635 -MD5sum: a10c3bf82fec054ef003d4555b714993 -Description: debug symbols for rocminfo -Maintainer: AMD Rocminfo Support -Package-Type: ddeb -Version: 1.0.0.60202-116~20.04 -Installed-Size: 192 - -Package: rocminfo-rpath6.2.2 -Architecture: amd64 -Depends: hsa-rocr-rpath6.2.2, kmod, pciutils, python3, libc6, libgcc-s1, libstdc++6, rocm-core-rpath6.2.2 +Depends: hsa-rocr-rpath6.3.1, pciutils, python3, libc6, libgcc-s1, libstdc++6, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocminfo-rpath6.2.2/rocminfo-rpath6.2.2_1.0.0.60202-116~20.04_amd64.deb -Size: 23180 -SHA256: d42eb140672e3299c4c10be82e357911b126f06d944d94affc7ff7427a222846 -SHA1: 3ac3e5aa54c52c15fa8c0789eb79649eab8ae6a4 -MD5sum: b8c6b63a58f7dea0eab6a5b4bb39e9ba +Filename: pool/main/r/rocminfo-rpath6.3.1/rocminfo-rpath6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 23100 +SHA256: 917f587adb4874085ac28d1dbd34d616277210764b4a1dad01c97b2fa385c76f +SHA1: 58bd29e496bf69782b80b462dede814e174bbaad +MD5sum: 345cffae7fa8f62f1888b3341fd45499 Description: Radeon Open Compute (ROCm) Runtime rocminfo tool Maintainer: AMD Rocminfo Support -Version: 1.0.0.60202-116~20.04 +Version: 1.0.0.60301-48~20.04 Installed-Size: 106 -Package: rocminfo6.2.2 +Package: rocminfo6.3.1 Architecture: amd64 -Depends: hsa-rocr6.2.2, kmod, pciutils, python3, libc6, libgcc-s1, libstdc++6, rocm-core6.2.2 +Depends: hsa-rocr6.3.1, pciutils, python3, libc6, libgcc-s1, libstdc++6, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocminfo6.2.2/rocminfo6.2.2_1.0.0.60202-116~20.04_amd64.deb -Size: 23212 -SHA256: 13eb5fb53c41c979f77526540f4c06b8ac78351cbb2734491599141dd708bc6a -SHA1: 65ab23a31709957148adc62cda82c7cf945b28af -MD5sum: 712e846b3b4e6656ecabd94d27a2cc9c +Filename: pool/main/r/rocminfo6.3.1/rocminfo6.3.1_1.0.0.60301-48~20.04_amd64.deb +Size: 23112 +SHA256: 37b548cd0442016d80be22d64ec34b631bb313a81f5074ce7b4c050fbce344a9 +SHA1: 75dff19e94720d11a639edab882da7b645a236cf +MD5sum: ee1d1ec7ec296ddc3c5d81e0ea20242f Description: Radeon Open Compute (ROCm) Runtime rocminfo tool Maintainer: AMD Rocminfo Support -Version: 1.0.0.60202-116~20.04 +Version: 1.0.0.60301-48~20.04 Installed-Size: 106 Package: rocprim-dev @@ -9276,267 +5292,186 @@ Architecture: amd64 Depends: hip-runtime-amd (>= 4.5.0), rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocprim-dev/rocprim-dev_3.2.0.60202-116~20.04_amd64.deb -Size: 211424 -SHA256: 61b3371289ad26073aeaad72f0a4f057c3d35de99d758dc28781e4ac26073640 -SHA1: f3bcab5674e42268690d89b6cf687f81532aa799 -MD5sum: c40877431bfd778745dc0d448554c35a +Filename: pool/main/r/rocprim-dev/rocprim-dev_3.3.0.60301-48~20.04_amd64.deb +Size: 230478 +SHA256: d396559ced9499c1860096015e0b93b80d89b2ac2b36e54b2cf0e9196cee7fab +SHA1: 3e1dc42c5cdb1483c22666e01229f4eb5bd2f0f2 +MD5sum: d87bffa10f9a8ede86d54cdd6a86afe7 Description: Radeon Open Compute Parallel Primitives Library Maintainer: rocPRIM Maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, rocprim (= 3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3787 +Provides: rocprim (= 3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 4272 -Package: rocprim-dev-rpath6.2.2 +Package: rocprim-dev-rpath6.3.1 Architecture: amd64 -Depends: hip-runtime-amd-rpath6.2.2 (>= 4.5.0), rocm-core-rpath6.2.2 +Depends: hip-runtime-amd-rpath6.3.1 (>= 4.5.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprim-dev-rpath6.2.2/rocprim-dev-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 211008 -SHA256: 0ab1ffcb88bf9356fda583da7140abf828030143d5cdc18d8f0cf2e49ee1dc7c -SHA1: c4560b30f03d8a1f7e612aa8c8a506b7ee160b09 -MD5sum: 02963572f058d52b361216af8f085cc5 +Filename: pool/main/r/rocprim-dev-rpath6.3.1/rocprim-dev-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 230104 +SHA256: f86e46c6d7487e897581e8bb339e4a55e20f3067732e74345020d6d2077d2134 +SHA1: 208704503a33dffd1e6e73f5fff29765b4de27aa +MD5sum: 5637d85f9752b15a7935f3100b3b736f Description: Radeon Open Compute Parallel Primitives Library Maintainer: rocPRIM Maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, rocprim-rpath6.2.2 (= 3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3787 +Provides: rocprim-rpath6.3.1 (= 3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 4272 -Package: rocprim-dev6.2.2 +Package: rocprim-dev6.3.1 Architecture: amd64 -Depends: hip-runtime-amd6.2.2 (>= 4.5.0), rocm-core6.2.2 +Depends: hip-runtime-amd6.3.1 (>= 4.5.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprim-dev6.2.2/rocprim-dev6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 211032 -SHA256: 4e00158236f4747d50642f3fd40f58e5dc8a411c3f172bbf3d32db365b3c9f81 -SHA1: 99e863fae4a001309fa8b5cce002e8b36aa0fa21 -MD5sum: 8c178e5d4e8c68fcbb7962343d048124 +Filename: pool/main/r/rocprim-dev6.3.1/rocprim-dev6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 230012 +SHA256: 2f6e6421d8cc82512a94ebe7030f60248455d69284d6e8ebc1fce8ca5c59f882 +SHA1: 75362db766c92af6e58f0314ab35f4969b30f7d5 +MD5sum: 10966553c4145721366ab8da6e7e8ed8 Description: Radeon Open Compute Parallel Primitives Library Maintainer: rocPRIM Maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, rocprim6.2.2 (= 3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3787 +Provides: rocprim6.3.1 (= 3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 4272 Package: rocprofiler Architecture: amd64 -Depends: rocminfo, hsa-rocr, rocm-core, libsystemd-dev, libelf-dev, libnuma-dev, libpciaccess-dev, libxml2-dev +Depends: rocminfo, hsa-rocr, rocm-core, libelf-dev, libnuma-dev, libxml2-dev Priority: optional Section: devel -Filename: pool/main/r/rocprofiler/rocprofiler_2.0.60202.60202-116~20.04_amd64.deb -Size: 906372 -SHA256: c259d89c6b1221a9d8eccfbcb10901b179632fd40fc95ebde26e57e0d4b8bae6 -SHA1: a4b1ef043b18d61c5446f876bb621e35bf9afb0f -MD5sum: cb0452e622dca8f25d49badbb2f7fa2c +Filename: pool/main/r/rocprofiler/rocprofiler_2.0.60301.60301-48~20.04_amd64.deb +Size: 916672 +SHA256: 8737b86fbe2025d47fe02a949b71a87aee7aac3b4cbbcf11e9a02f8a5ed27434 +SHA1: 8bbdc7a75309a8443c2dfd3660e845b63b2a9eae +MD5sum: aa1cb29380e0a48674ceed25a119338c Description: ROCPROFILER library for AMD HSA runtime API extension support Dynamic libraries for the ROCProfiler Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 4105 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 4178 -Package: rocprofiler-asan +Package: rocprofiler-compute Architecture: amd64 -Depends: hsa-rocr-asan, rocm-core-asan +Breaks: omniperf +Depends: rocprofiler Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-asan/rocprofiler-asan_2.0.60202.60202-116~20.04_amd64.deb -Size: 1513414 -SHA256: e365fbebfc0125d2ba2fd3e2e3be9b06de7c1820c8b31ad434352e7d39d34462 -SHA1: d680c2babaffc636be159e3ec4db1252aef267eb -MD5sum: 974fd3609d6f4b8dce6d016d222ebd20 -Description: ROCPROFILER library for AMD HSA runtime API extension support - ASAN libraries for the ROCPROFILER -Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 10588 +Filename: pool/main/r/rocprofiler-compute/rocprofiler-compute_3.0.0.60301-48~20.04_amd64.deb +Size: 2625878 +SHA256: bb8a5f4060edd1ec0f50ba02d2a317838b688257d84bbd53b0a3fbfb96c02d27 +SHA1: 23c3c924c6b6ca8180c6a94941a8ab6ad413cff4 +MD5sum: c4a3cac5739098869fb14774367f22dd +Description: ROCm Compute Profiler: tool for GPU performance profiling +Homepage: https://github.com/ROCm/rocprofiler-compute +Maintainer: https://github.com/ROCm/rocprofiler-compute +Provides: omniperf +Replaces: omniperf +Version: 3.0.0.60301-48~20.04 +Installed-Size: 12700 -Package: rocprofiler-asan-dbgsym +Package: rocprofiler-compute-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 179819000e8bc640140b96596db3911269f27475 b0a46bb51454151eeccfb510a199780d956bf55d 62b2cdf0d08b7098672fb3d85b0bb7fdf8937fad 5c1fe666e7464f918bf5bf2208429fb93b1e7f0c 5e11225aac0e0e34e1508d483fda33a6bbc1e7f7 eab537f660621a5f1f194c11a7a42c808fd410e9 50f4874cfde557a555c9195b277537e675861045 4a5ef97f7cda0b940f270843e1b55c82341bd24d -Depends: rocprofiler-asan (= 2.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-asan-dbgsym/rocprofiler-asan-dbgsym_2.0.60202.60202-116~20.04_amd64.deb -Size: 7693986 -SHA256: 847d67490662b8cceee5945d4501d12b07918ee81e96748a6fe461bb34e3ffcc -SHA1: 070abbcd0f55f1eadb1452aa7187a2b42a7d52d7 -MD5sum: 6211a531bb0a9c3e0e070414af1d723e -Description: debug symbols for rocprofiler-asan -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 23460 - -Package: rocprofiler-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 179819000e8bc640140b96596db3911269f27475 b0a46bb51454151eeccfb510a199780d956bf55d 62b2cdf0d08b7098672fb3d85b0bb7fdf8937fad 5c1fe666e7464f918bf5bf2208429fb93b1e7f0c 5e11225aac0e0e34e1508d483fda33a6bbc1e7f7 eab537f660621a5f1f194c11a7a42c808fd410e9 50f4874cfde557a555c9195b277537e675861045 4a5ef97f7cda0b940f270843e1b55c82341bd24d -Depends: rocprofiler-asan-rpath6.2.2 (= 2.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-asan-dbgsym-rpath6.2.2/rocprofiler-asan-dbgsym-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 4672832 -SHA256: c34791891e894497d6edc44b25b17b919db6399020248601169f7ffe8758811e -SHA1: 96601b34ac61c169c2cda0651faedbdb969b5925 -MD5sum: 2f62ed5b0dfc782fc62a2389a99fa6e2 -Description: debug symbols for rocprofiler-asan -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 23460 - -Package: rocprofiler-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 179819000e8bc640140b96596db3911269f27475 b0a46bb51454151eeccfb510a199780d956bf55d 62b2cdf0d08b7098672fb3d85b0bb7fdf8937fad 5c1fe666e7464f918bf5bf2208429fb93b1e7f0c 5e11225aac0e0e34e1508d483fda33a6bbc1e7f7 eab537f660621a5f1f194c11a7a42c808fd410e9 50f4874cfde557a555c9195b277537e675861045 4a5ef97f7cda0b940f270843e1b55c82341bd24d -Depends: rocprofiler-asan6.2.2 (= 2.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-asan-dbgsym6.2.2/rocprofiler-asan-dbgsym6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 4674772 -SHA256: fcfaa87aaafec02ff0c6d456e81f1fd6fc28097903190970bd17c756fd7d97d8 -SHA1: 2e94b1aa70a21a5273dc500f4b1284b049b38791 -MD5sum: aa2147c058582697596309bcdb7a8447 -Description: debug symbols for rocprofiler-asan -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 23460 - -Package: rocprofiler-asan-rpath6.2.2 -Architecture: amd64 -Depends: hsa-rocr-asan-rpath6.2.2, rocm-core-asan-rpath6.2.2 +Breaks: omniperf-rpath6.3.1 +Depends: rocprofiler-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-asan-rpath6.2.2/rocprofiler-asan-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 884600 -SHA256: d6eaf31ec9578acf9e805398184c726ec48304af486bf6a4a444f6947382dfe4 -SHA1: 29eb7f0913f29e2f8511dd163ad01b1dd34d216a -MD5sum: 2bc3248ca80511bca8ec72f8f5460eb4 -Description: ROCPROFILER library for AMD HSA runtime API extension support - ASAN libraries for the ROCPROFILER -Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 10588 +Filename: pool/main/r/rocprofiler-compute-rpath6.3.1/rocprofiler-compute-rpath6.3.1_3.0.0.60301-48~20.04_amd64.deb +Size: 1664732 +SHA256: a6707f49ac1b5f35bbb70244a47c7d3445ecf8bc04b58ebdfe0d0fb944c54a84 +SHA1: 81da021d2c58322ed3140e0fc17b5679d3a49916 +MD5sum: 95aa4c6b83d8d369e30cc22aa08ec28b +Description: ROCm Compute Profiler: tool for GPU performance profiling +Homepage: https://github.com/ROCm/rocprofiler-compute +Maintainer: https://github.com/ROCm/rocprofiler-compute +Provides: omniperf-rpath6.3.1 +Replaces: omniperf-rpath6.3.1 +Version: 3.0.0.60301-48~20.04 +Installed-Size: 12700 -Package: rocprofiler-asan6.2.2 +Package: rocprofiler-compute6.3.1 Architecture: amd64 -Depends: hsa-rocr-asan6.2.2, rocm-core-asan6.2.2 +Breaks: omniperf6.3.1 +Depends: rocprofiler6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-asan6.2.2/rocprofiler-asan6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 883224 -SHA256: c5808460da88a1075deb26a5b53dad530048db713da2d91f8d1f6877ccfa7454 -SHA1: 36735369e6beb039ccd889e2fe68ea02534aa170 -MD5sum: a5cc174b8b626d926aaf502285e81077 -Description: ROCPROFILER library for AMD HSA runtime API extension support - ASAN libraries for the ROCPROFILER -Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 10588 +Filename: pool/main/r/rocprofiler-compute6.3.1/rocprofiler-compute6.3.1_3.0.0.60301-48~20.04_amd64.deb +Size: 1664932 +SHA256: 535e0ab8111930b17a24df98549becf89c0fe1f7543d54e93e2779a5a499e122 +SHA1: d6ef943362e9dd6d14fc572791682b75dccacc43 +MD5sum: c90e99db89fd0896edebcede94fe7167 +Description: ROCm Compute Profiler: tool for GPU performance profiling +Homepage: https://github.com/ROCm/rocprofiler-compute +Maintainer: https://github.com/ROCm/rocprofiler-compute +Provides: omniperf6.3.1 +Replaces: omniperf6.3.1 +Version: 3.0.0.60301-48~20.04 +Installed-Size: 12700 Package: rocprofiler-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 974e2f790e32fa43004212e824e55f6e1c90ee0d d5fd45c8dfd91fa5506b8a305a2a6efe51927966 0856ce137bb3d5b3c9f6af8a516d54fa1daa5deb 55fc95b4c3f4cb1d2f298ad711d31214e5a4987d a56e332b72ac8edda270274d80cc3b7dad639809 338039c1f90a130459c3bfb353dd81ee11fbabf9 af7252f9887b44138a579162b9980aa766be4f3e aca552cd112ef86c606ae12f2b8a1f7e53f8c38c e0e6d1c0afa204472cca68231f233292c3078087 2ceb822dc01d982c7a816f271c4c6ad1b7605eb4 557859e8d6582e94a4cf166c95514e87dc5a89fb -Depends: rocprofiler (= 2.0.60202.60202-116~20.04) +Build-Ids: e0f36a0d24b2e73282724200155227e1f5740a31 26c775d0545e80c0609bd59ed18530147d860322 a96dc9516a92a30c377a82431534ca2150d6dd58 17871bb7522c96f6248ecfe5cc60edb49ce7269f 02d71473a4ca2bd235b0187b39f04fc57a1cbf5a a1fd4a58e1b168a33933dd338aac164e0ca8b7df 5fb716e3f7664c56c7ee4ba8be3dd704356d1e8c cc62e6d097e2ba8067596417f4b86003d48b8908 85056e196527136ba5d35b5fd7e96a6a9fb14605 72e9732a9e21157a40c4000cc39412bed5a30a65 8bce0a72dca1bf14cebc4aa9a0840d9a8d604c4c +Depends: rocprofiler (= 2.0.60301.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocprofiler-dbgsym/rocprofiler-dbgsym_2.0.60202.60202-116~20.04_amd64.deb -Size: 19057118 -SHA256: 1cb2f25746ad0a6fdde727d1a999ddf16cb27e236ab21eae7915e936efcb99cf -SHA1: 40cf99c8eda164268029ecf9ae382725ed3ddfda -MD5sum: 367920391dfb68b25320508bd6576a0d +Filename: pool/main/r/rocprofiler-dbgsym/rocprofiler-dbgsym_2.0.60301.60301-48~20.04_amd64.deb +Size: 19256054 +SHA256: 1d41bdd8464ab7d0163bc71b2e3b2ece81aa7ae71800629a6ddf960140745d0a +SHA1: 76a9f96d38f4ad4ca31d55a30e5a97f5e18bd1c2 +MD5sum: db367be03069830d9564da0920633bfe Description: debug symbols for rocprofiler Maintainer: ROCm Profiler Support Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 65566 - -Package: rocprofiler-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 974e2f790e32fa43004212e824e55f6e1c90ee0d d5fd45c8dfd91fa5506b8a305a2a6efe51927966 0856ce137bb3d5b3c9f6af8a516d54fa1daa5deb 55fc95b4c3f4cb1d2f298ad711d31214e5a4987d a56e332b72ac8edda270274d80cc3b7dad639809 338039c1f90a130459c3bfb353dd81ee11fbabf9 af7252f9887b44138a579162b9980aa766be4f3e aca552cd112ef86c606ae12f2b8a1f7e53f8c38c e0e6d1c0afa204472cca68231f233292c3078087 2ceb822dc01d982c7a816f271c4c6ad1b7605eb4 557859e8d6582e94a4cf166c95514e87dc5a89fb -Depends: rocprofiler-rpath6.2.2 (= 2.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-dbgsym-rpath6.2.2/rocprofiler-dbgsym-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 12099748 -SHA256: 22dc29385ff97e144358789aa0f0e7ed9b89dd1b559ac74e17e506316056642d -SHA1: 531b5d5fc3346fc8680da416675891f740e4dd37 -MD5sum: bcb378f364785c969ae74e2c3275ceb4 -Description: debug symbols for rocprofiler -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 65566 - -Package: rocprofiler-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 974e2f790e32fa43004212e824e55f6e1c90ee0d d5fd45c8dfd91fa5506b8a305a2a6efe51927966 0856ce137bb3d5b3c9f6af8a516d54fa1daa5deb 55fc95b4c3f4cb1d2f298ad711d31214e5a4987d a56e332b72ac8edda270274d80cc3b7dad639809 338039c1f90a130459c3bfb353dd81ee11fbabf9 af7252f9887b44138a579162b9980aa766be4f3e aca552cd112ef86c606ae12f2b8a1f7e53f8c38c e0e6d1c0afa204472cca68231f233292c3078087 2ceb822dc01d982c7a816f271c4c6ad1b7605eb4 557859e8d6582e94a4cf166c95514e87dc5a89fb -Depends: rocprofiler6.2.2 (= 2.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-dbgsym6.2.2/rocprofiler-dbgsym6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 12100220 -SHA256: 89f34caaa40c2240fc602463e0fd4b870ab4ebc2ecc80c3277d0926226d9cc3a -SHA1: f846b95ed1a00630b28f9bb96654a8b34dc80744 -MD5sum: 554355f7ef3aec122ca05a871526c61c -Description: debug symbols for rocprofiler -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 65566 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 66301 Package: rocprofiler-dev Architecture: amd64 Depends: rocprofiler, hsa-rocr-dev, rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-dev/rocprofiler-dev_2.0.60202.60202-116~20.04_amd64.deb -Size: 23888 -SHA256: 204544eb3391989983f2e4161ba479603d0f17546bb8e96f0d74d984996cd4a6 -SHA1: ab6ec19fbf91fccbe4232edc6199ee76aa05798b -MD5sum: ad7b56a41501f6baefe15db51931942b +Filename: pool/main/r/rocprofiler-dev/rocprofiler-dev_2.0.60301.60301-48~20.04_amd64.deb +Size: 23884 +SHA256: 4992e41a3bf649ae727ed3f9835d92382fd1640678dca56db955b5737177aebe +SHA1: 34bf1d9901ef1f94daab0b2d01cdbca9d271c559 +MD5sum: 9238be22c6d86f902c35bca2efd43639 Description: ROCPROFILER library for AMD HSA runtime API extension support Development needed header files for ROCProfiler Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 +Version: 2.0.60301.60301-48~20.04 Installed-Size: 133 -Package: rocprofiler-dev-rpath6.2.2 +Package: rocprofiler-dev-rpath6.3.1 Architecture: amd64 -Depends: rocprofiler-rpath6.2.2, hsa-rocr-dev-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: rocprofiler-rpath6.3.1, hsa-rocr-dev-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-dev-rpath6.2.2/rocprofiler-dev-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 21064 -SHA256: 593ad6d05b161ec444e44460c28e761ab054397d22985352898cf274e2cd0585 -SHA1: f8a5019adeaff60c009841fe12a8d154d7bc2fc2 -MD5sum: 9fc7578ecf51689cf274e4c1a31dce6c +Filename: pool/main/r/rocprofiler-dev-rpath6.3.1/rocprofiler-dev-rpath6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 21052 +SHA256: 2d096c1badee8dba02d6c5459e50b389c222a294d6c2b0be5ec0f5c80d368f78 +SHA1: 8cdcff74f334ca1c6b4ba079a47f1cbec1913c2c +MD5sum: b5c3ba0edf323b16848b09d580f8a5bc Description: ROCPROFILER library for AMD HSA runtime API extension support Development needed header files for ROCProfiler Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 +Version: 2.0.60301.60301-48~20.04 Installed-Size: 133 -Package: rocprofiler-dev6.2.2 +Package: rocprofiler-dev6.3.1 Architecture: amd64 -Depends: rocprofiler6.2.2, hsa-rocr-dev6.2.2, rocm-core6.2.2 +Depends: rocprofiler6.3.1, hsa-rocr-dev6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-dev6.2.2/rocprofiler-dev6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 21056 -SHA256: c1335387d2e5a0e48610d57511d1704c9327373391ae0f40276b3e8176cdb5ea -SHA1: 1d4edb5a07254e5a83d3e100bac77fae4f068855 -MD5sum: 73c85c4416f1fc10190af5be89e5e512 +Filename: pool/main/r/rocprofiler-dev6.3.1/rocprofiler-dev6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 21044 +SHA256: b5b9da0367d546f2550966de4ffa39579ccc2ea2a6649af387d9e0d0e9b5cac9 +SHA1: d09d580b9b6cace62efb8d3e5b1d6c3a537d1de9 +MD5sum: 61faaf714b49a87cde929be40b9b5067 Description: ROCPROFILER library for AMD HSA runtime API extension support Development needed header files for ROCProfiler Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 +Version: 2.0.60301.60301-48~20.04 Installed-Size: 133 Package: rocprofiler-docs @@ -9544,47 +5479,47 @@ Architecture: amd64 Depends: rocprofiler-dev, hsa-rocr-dev, rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-docs/rocprofiler-docs_2.0.60202.60202-116~20.04_amd64.deb -Size: 734 -SHA256: c95b18a5f1c42a8a548737434c83ff9fa1293610c1c02cbed65de8e6ea6d7b93 -SHA1: 62bc0876d7421b83aef42033bd0794e6798cc4bc -MD5sum: 773c87f616ccfd03556c36d48fab8586 +Filename: pool/main/r/rocprofiler-docs/rocprofiler-docs_2.0.60301.60301-48~20.04_amd64.deb +Size: 732 +SHA256: 7b4f9c09396b901c7ba5256d8918c291dbf2f04cd416f016189751078e2e4023 +SHA1: 01b8f4a176461783cc9118e3f2d8bccf417e14ea +MD5sum: 1ebd741c6eb7c97a0ad1516263cd4b02 Description: ROCPROFILER library for AMD HSA runtime API extension support Documentation for the ROCProfiler API Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 +Version: 2.0.60301.60301-48~20.04 Installed-Size: 20 -Package: rocprofiler-docs-rpath6.2.2 +Package: rocprofiler-docs-rpath6.3.1 Architecture: amd64 -Depends: rocprofiler-dev-rpath6.2.2, hsa-rocr-dev-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: rocprofiler-dev-rpath6.3.1, hsa-rocr-dev-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-docs-rpath6.2.2/rocprofiler-docs-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 944 -SHA256: a51824ba1e47265fbc4412850d66662ea0adf8c9d7381d4ef59bde635551ffb7 -SHA1: 2d28092d270da3ef0e2a333822282dbebfeaafd0 -MD5sum: c32f6cbe3ce6c6ded1431c08a62f8f0a +Filename: pool/main/r/rocprofiler-docs-rpath6.3.1/rocprofiler-docs-rpath6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 940 +SHA256: c92281b3d21bbe5af5a312586396b645756ff7b955c096b20055b096fa430a58 +SHA1: c5831788738b962bcc946f2ca1df5eb7b14d45f4 +MD5sum: 35df2f65d1fbbc407a14f76eaaaace0f Description: ROCPROFILER library for AMD HSA runtime API extension support Documentation for the ROCProfiler API Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 +Version: 2.0.60301.60301-48~20.04 Installed-Size: 20 -Package: rocprofiler-docs6.2.2 +Package: rocprofiler-docs6.3.1 Architecture: amd64 -Depends: rocprofiler-dev6.2.2, hsa-rocr-dev6.2.2, rocm-core6.2.2 +Depends: rocprofiler-dev6.3.1, hsa-rocr-dev6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-docs6.2.2/rocprofiler-docs6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 932 -SHA256: c28f5492f816f7329db80e2a225efee69e11f477909f97a083aed8afd0d416ac -SHA1: d1d0986545ac7cabb6298b5b10680e503117a3e6 -MD5sum: f70fcacd5c190250ced71685af065102 +Filename: pool/main/r/rocprofiler-docs6.3.1/rocprofiler-docs6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 936 +SHA256: 1ef243329010086d178b8845690efb3a1153085a2547b9875a721864e6ac1be8 +SHA1: 0a17d5c92ba0ed91f05386dbe91a5e0fa936693a +MD5sum: 3225cc0e81a395fd88b3069294bf381c Description: ROCPROFILER library for AMD HSA runtime API extension support Documentation for the ROCProfiler API Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 +Version: 2.0.60301.60301-48~20.04 Installed-Size: 20 Package: rocprofiler-plugins @@ -9592,1133 +5527,686 @@ Architecture: amd64 Depends: rocprofiler, hsa-rocr-dev, rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-plugins/rocprofiler-plugins_2.0.60202.60202-116~20.04_amd64.deb -Size: 1032224 -SHA256: 063553c3c9aac322ccaaf0c5817e59f5ccfc828750133c8d0b5dea24d511ccf7 -SHA1: 28b3a1e69c3f305463df307fa846bbca27c721bd -MD5sum: 5b87c82e6e568fd4e6b9285ac112b7f4 +Filename: pool/main/r/rocprofiler-plugins/rocprofiler-plugins_2.0.60301.60301-48~20.04_amd64.deb +Size: 1037880 +SHA256: c5804a8741000735122c63759dcfa651e86a7ad339925ba98ac618623ff80df9 +SHA1: 2495bf9142a0429e1253c4211773add0258c0d44 +MD5sum: 516941c5791f90169ca2a32aa9ab74bd Description: ROCPROFILER library for AMD HSA runtime API extension support Plugins for handling ROCProfiler data output Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 4258 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 4298 Package: rocprofiler-plugins-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: c152c2ca27ad5ea978364a3cce516da4212f082a c48a77ed9bcc1569020b3c30eefe2213b080e507 fa64e6d90c8a16a1f2f352f56317a156d3f5fc14 -Depends: rocprofiler-plugins (= 2.0.60202.60202-116~20.04) +Build-Ids: f740bd3c74ab29444b4793cd502d590fd5f32192 e925d7af91d34770a1469786db9cf92543af0f0a 8c6e6805cb358bb490e780b47a34cbddd2d86743 +Depends: rocprofiler-plugins (= 2.0.60301.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocprofiler-plugins-dbgsym/rocprofiler-plugins-dbgsym_2.0.60202.60202-116~20.04_amd64.deb -Size: 20630470 -SHA256: d6f9a59582f98e96af92456da57d7865eac60f3744c64be65db91f8192c888b0 -SHA1: a59d453bc50548771ba6e159fd922b25c2a89661 -MD5sum: 35daae8fd2145c71bd4f7770ab8b689e +Filename: pool/main/r/rocprofiler-plugins-dbgsym/rocprofiler-plugins-dbgsym_2.0.60301.60301-48~20.04_amd64.deb +Size: 20673720 +SHA256: 9b761ae9156969bbed6899d667eb3b247e0390e85c49a98f020cb3ed86b86fc4 +SHA1: 77666b3f061db111f4b76dda8c90d28940edbed5 +MD5sum: 196383d5382d1604f8b0a50430541e75 Description: debug symbols for rocprofiler-plugins Maintainer: ROCm Profiler Support Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 84043 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 84216 -Package: rocprofiler-plugins-dbgsym-rpath6.2.2 +Package: rocprofiler-plugins-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: c152c2ca27ad5ea978364a3cce516da4212f082a c48a77ed9bcc1569020b3c30eefe2213b080e507 fa64e6d90c8a16a1f2f352f56317a156d3f5fc14 -Depends: rocprofiler-plugins-rpath6.2.2 (= 2.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-plugins-dbgsym-rpath6.2.2/rocprofiler-plugins-dbgsym-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 13543620 -SHA256: 7169700aedcd9ea352c9dad956a612d5445c22d9cf27797769e8f0ff4abfa244 -SHA1: 06b68456fb149d023e04ac79d3c25a81b28b9c08 -MD5sum: 898392ceae398756c3ba04f4d876febf -Description: debug symbols for rocprofiler-plugins -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 84043 - -Package: rocprofiler-plugins-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: c152c2ca27ad5ea978364a3cce516da4212f082a c48a77ed9bcc1569020b3c30eefe2213b080e507 fa64e6d90c8a16a1f2f352f56317a156d3f5fc14 -Depends: rocprofiler-plugins6.2.2 (= 2.0.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-plugins-dbgsym6.2.2/rocprofiler-plugins-dbgsym6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 13537796 -SHA256: 8f93fb32481659086c74b0df2bca055b6dba04862ab96eb437d4f4b4a63dc4d6 -SHA1: 01089ea8f1dc1c0b7ada786713c7061355bddfe8 -MD5sum: 549cac5fa0a3714f32d077d16565ca31 -Description: debug symbols for rocprofiler-plugins -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 84043 - -Package: rocprofiler-plugins-rpath6.2.2 -Architecture: amd64 -Depends: rocprofiler-rpath6.2.2, hsa-rocr-dev-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: rocprofiler-rpath6.3.1, hsa-rocr-dev-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-plugins-rpath6.2.2/rocprofiler-plugins-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 714032 -SHA256: 0d476e92c0683814caa1d4daeb62ce6032b5044c3bf44ab5e39afd73b8b98993 -SHA1: 978abbb5519396daa0a38b573e19147c67a2fce4 -MD5sum: 6a4d6b8a38d1db287ffed1086e53b142 +Filename: pool/main/r/rocprofiler-plugins-rpath6.3.1/rocprofiler-plugins-rpath6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 716944 +SHA256: b677183bb3b409269be19a395e7be970fbbe950fa2c64aed8128a4a6e80f8214 +SHA1: a32c24f4f673678642cc8667ad16ce29739ec9c7 +MD5sum: 457ceff67ed1d01051023821aa9f3d13 Description: ROCPROFILER library for AMD HSA runtime API extension support Plugins for handling ROCProfiler data output Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 4258 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 4298 -Package: rocprofiler-plugins6.2.2 +Package: rocprofiler-plugins6.3.1 Architecture: amd64 -Depends: rocprofiler6.2.2, hsa-rocr-dev6.2.2, rocm-core6.2.2 +Depends: rocprofiler6.3.1, hsa-rocr-dev6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-plugins6.2.2/rocprofiler-plugins6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 713420 -SHA256: 973a0ec68986dcf9d1edcc741f4b9cd53a1bd703c821a7c85c099771c214aed9 -SHA1: b4bb7dcbcfab7361b603879a281e61a6af88b001 -MD5sum: 51f212f53660aa059ab2d5c6aac04439 +Filename: pool/main/r/rocprofiler-plugins6.3.1/rocprofiler-plugins6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 716464 +SHA256: e8fbd4de2796c7ee243ff3b3e29b440fe6b8513f83b3381c1119e5811fec627a +SHA1: 0c72596fba4bcd7e7eecfcde13ad2a789bc1bbbb +MD5sum: 0458cde4cabf7027c1fcf5a3d28c9c03 Description: ROCPROFILER library for AMD HSA runtime API extension support Plugins for handling ROCProfiler data output Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 4258 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 4298 Package: rocprofiler-register Architecture: amd64 Depends: rocm-core, libc6 (>= 2.14), libgcc-s1 (>= 3.3), libstdc++6 (>= 9) Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-register/rocprofiler-register_0.4.0.60202-116~20.04_amd64.deb -Size: 221060 -SHA256: 8e4f58f503ba6b96b11b802c089b8a61e5e1d61435a2c16b4f46c1f1ae93de45 -SHA1: bf3b5dd78f6b7668ef1792cd818ac586904120b7 -MD5sum: 1f57116ca4f39f653a382d019e6780d5 +Filename: pool/main/r/rocprofiler-register/rocprofiler-register_0.4.0.60301-48~20.04_amd64.deb +Size: 221084 +SHA256: fd3d614962462b12e7320fb395b79c1fdb374d3643b4f00dac387a74cc57bdb0 +SHA1: 7afa6dd9d86126e99028763f984c5b6733e81f08 +MD5sum: 30bca7b7257ab625ad72507d0d38532b Description: Registration library for rocprofiler Homepage: https://github.com/ROCm/rocprofiler-register-internal Maintainer: ROCm Profiler Support -Version: 0.4.0.60202-116~20.04 +Version: 0.4.0.60301-48~20.04 Installed-Size: 1713 -Package: rocprofiler-register-rpath6.2.2 +Package: rocprofiler-register-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2, libc6 (>= 2.14), libgcc-s1 (>= 3.3), libstdc++6 (>= 9) +Depends: rocm-core-rpath6.3.1, libc6 (>= 2.14), libgcc-s1 (>= 3.3), libstdc++6 (>= 9) Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-register-rpath6.2.2/rocprofiler-register-rpath6.2.2_0.4.0.60202-116~20.04_amd64.deb -Size: 178912 -SHA256: 0a2244ab74b46726f2e05f01690c9411061ad251790aaa1681649c535d3c54e0 -SHA1: 7a2f8fa5cb21ada1374bff1aba1170a6eb5acd88 -MD5sum: 46d2bc4975578dcba8cad9e96f1c2143 +Filename: pool/main/r/rocprofiler-register-rpath6.3.1/rocprofiler-register-rpath6.3.1_0.4.0.60301-48~20.04_amd64.deb +Size: 179220 +SHA256: afe2d0dab8bf77901bee2c7609eda626e29932e2a3f0b5ec5d890957c91d1542 +SHA1: 7c9095ac5360041b11769d5b2cb1fc317d8a3f5f +MD5sum: 7b6f2fae81240177725c0d6c9614ce97 Description: Registration library for rocprofiler Homepage: https://github.com/ROCm/rocprofiler-register-internal Maintainer: ROCm Profiler Support -Version: 0.4.0.60202-116~20.04 +Version: 0.4.0.60301-48~20.04 Installed-Size: 1713 -Package: rocprofiler-register6.2.2 +Package: rocprofiler-register6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2, libc6 (>= 2.14), libgcc-s1 (>= 3.3), libstdc++6 (>= 9) +Depends: rocm-core6.3.1, libc6 (>= 2.14), libgcc-s1 (>= 3.3), libstdc++6 (>= 9) Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-register6.2.2/rocprofiler-register6.2.2_0.4.0.60202-116~20.04_amd64.deb -Size: 179064 -SHA256: 126a87ce383bbdadbf50265b57691935353f595a286bc2fa1d1e4fbd55d5a5ad -SHA1: b7dc6b650e8dd7225919d21a5b2f8cf23dfdf914 -MD5sum: 1ae6e6df6e05a427062932ca6fb05770 +Filename: pool/main/r/rocprofiler-register6.3.1/rocprofiler-register6.3.1_0.4.0.60301-48~20.04_amd64.deb +Size: 179060 +SHA256: 4db2aa34b9ee1f9b54417035eb64897f690c9c428a46220f7d3c39071b099595 +SHA1: 8fb6c78bd25a2806ee460258637320de905ce66b +MD5sum: 9fd7dd1de3b2ac4918cc05598d234887 Description: Registration library for rocprofiler Homepage: https://github.com/ROCm/rocprofiler-register-internal Maintainer: ROCm Profiler Support -Version: 0.4.0.60202-116~20.04 +Version: 0.4.0.60301-48~20.04 Installed-Size: 1713 -Package: rocprofiler-rpath6.2.2 +Package: rocprofiler-rpath6.3.1 Architecture: amd64 -Depends: rocminfo-rpath6.2.2, hsa-rocr-rpath6.2.2, rocm-core-rpath6.2.2, libsystemd-dev, libelf-dev, libnuma-dev, libpciaccess-dev, libxml2-dev +Depends: rocminfo-rpath6.3.1, hsa-rocr-rpath6.3.1, rocm-core-rpath6.3.1, libelf-dev, libnuma-dev, libxml2-dev Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-rpath6.2.2/rocprofiler-rpath6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 574008 -SHA256: 446aff24ec1c8ad500baa188ea415f9389f536506952abf65f824984195d69c2 -SHA1: 0b50506b15210733067a1e3c20eb3c49053a83f2 -MD5sum: b01cc9f268982d356f1e0b355d34e54d +Filename: pool/main/r/rocprofiler-rpath6.3.1/rocprofiler-rpath6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 581096 +SHA256: 4dcea103069aee45f76174da400807c93bb03e4b87955d1c2b11c055115819b4 +SHA1: 7ff980e6ebce863f702b9ef6e1665600e7027fb6 +MD5sum: 83312ced00b2d026b0d829f222fc27ef Description: ROCPROFILER library for AMD HSA runtime API extension support Dynamic libraries for the ROCProfiler Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 4105 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 4178 Package: rocprofiler-sdk Architecture: amd64 -Depends: rocm-core +Depends: rocm-core, rocprofiler-sdk-roctx (>= 0.5.0) Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-sdk/rocprofiler-sdk_0.4.0-116~20.04_amd64.deb -Size: 2963142 -SHA256: f5fda75523fb4a4609a82543a6b7ffedc7e29b0d0db6d78e4a7099c719f46050 -SHA1: 6428e7834f35adaacca21f6211a49f3035a55cb6 -MD5sum: 01a7ebc01abd11e1c2b4bc63ba853658 +Filename: pool/main/r/rocprofiler-sdk/rocprofiler-sdk_0.5.0-48~20.04_amd64.deb +Size: 3611070 +SHA256: fa79a3611fa1502bd21f7cb380da9e5be3d00ec35696b2b3a19b502ccbc7afb8 +SHA1: be96edc8d05757b4d9e5a6023840a0f087a55c1f +MD5sum: 15b205fe2eeb3c551710f3748d871c09 Description: ROCm GPU performance analysis SDK Homepage: https://github.com/ROCm/rocprofiler-sdk Maintainer: ROCm Profiler Support -Version: 0.4.0-116~20.04 -Installed-Size: 28487 +Version: 0.5.0-48~20.04 +Installed-Size: 34305 Package: rocprofiler-sdk-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: baa4214b9a23bd6568d0021bc1ee09f6cdc222c0 964ddf6f5dbdc1acb9fb4045692585e364e7db58 43d66679e69ad8a5adf060d6e7bb5eb79db0ec8d -Depends: rocprofiler-sdk (= 0.4.0-116~20.04) +Build-Ids: 4dbf5337d04a729953826cfa266a4490a42657a0 81f6d17fe09921309f5f3ab16f926dd7f943a7eb 14474a7752d4b89104deb4cf45f878e026350198 b69cb2b1c7af9fe840809bdca7f290711653824e +Depends: rocprofiler-sdk (= 0.5.0-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocprofiler-sdk-dbgsym/rocprofiler-sdk-dbgsym_0.4.0-116~20.04_amd64.deb -Size: 60250376 -SHA256: efc10b9cd8e823acbc3506d41b68cee49154473a5b28b44b53e869b3cc0cb81e -SHA1: 963afd205f8726a3835a84101a06005f54d07987 -MD5sum: 6ca1a8f4ed973f6aaf208d8f970413b9 +Filename: pool/main/r/rocprofiler-sdk-dbgsym/rocprofiler-sdk-dbgsym_0.5.0-48~20.04_amd64.deb +Size: 72465198 +SHA256: e5704c3d3b43d12f949a09153e6cc723894e618a6735c35048d615d73d44dbee +SHA1: de4b9ed2b33c13e0a631fd2d1a0db5c387e48508 +MD5sum: ffcd5ca8232387e0db01b38e9e7659d1 Description: debug symbols for rocprofiler-sdk Maintainer: ROCm Profiler Support Package-Type: ddeb -Version: 0.4.0-116~20.04 -Installed-Size: 248893 - -Package: rocprofiler-sdk-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: baa4214b9a23bd6568d0021bc1ee09f6cdc222c0 964ddf6f5dbdc1acb9fb4045692585e364e7db58 43d66679e69ad8a5adf060d6e7bb5eb79db0ec8d -Depends: rocprofiler-sdk-rpath6.2.2 (= 0.4.0-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-sdk-dbgsym-rpath6.2.2/rocprofiler-sdk-dbgsym-rpath6.2.2_0.4.0-116~20.04_amd64.deb -Size: 38870740 -SHA256: 2e95c443d9341b55c5f63fa1ca7162dee359db086dd16762b84c18ff5195dbf6 -SHA1: 5b9be91fe50d76039e3b5d2c22b4c6f64d1e5ef9 -MD5sum: b9b7b84e2aa912eb7d1ca80ed101db75 -Description: debug symbols for rocprofiler-sdk -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 0.4.0-116~20.04 -Installed-Size: 248893 - -Package: rocprofiler-sdk-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: baa4214b9a23bd6568d0021bc1ee09f6cdc222c0 964ddf6f5dbdc1acb9fb4045692585e364e7db58 43d66679e69ad8a5adf060d6e7bb5eb79db0ec8d -Depends: rocprofiler-sdk6.2.2 (= 0.4.0-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-sdk-dbgsym6.2.2/rocprofiler-sdk-dbgsym6.2.2_0.4.0-116~20.04_amd64.deb -Size: 38867456 -SHA256: 42bcba22a6d1a72441157bf8032b24094016993611423e08a45e96516bcee137 -SHA1: 8bea0bdd761041864c3fa6da4251bfb5734e9f1b -MD5sum: fa934298097d3bab5e02b2940d92567b -Description: debug symbols for rocprofiler-sdk -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 0.4.0-116~20.04 -Installed-Size: 248893 +Version: 0.5.0-48~20.04 +Installed-Size: 290890 Package: rocprofiler-sdk-roctx Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-sdk-roctx/rocprofiler-sdk-roctx_0.4.0-116~20.04_amd64.deb -Size: 204782 -SHA256: 3d7e667b4c0cbed78642a3b272f4f917e3d7fc67199ca75b64e87677103feca0 -SHA1: d284c83a4c36cf793363a237e5f06620ef5c4135 -MD5sum: d260e541238cdd11aea9f4a7b0c4c149 +Filename: pool/main/r/rocprofiler-sdk-roctx/rocprofiler-sdk-roctx_0.5.0-48~20.04_amd64.deb +Size: 204490 +SHA256: ae271af4bedf7e7dc81874ffdb589e29ae3f7d1290fa931f8797eea7c95a1017 +SHA1: 0e03d507f65549a408533d045828c5c606c230ca +MD5sum: d40f3ff24a22bf27411eca429327dffb Description: ROCm GPU performance analysis SDK Homepage: https://github.com/ROCm/rocprofiler-sdk Maintainer: ROCm Profiler Support -Version: 0.4.0-116~20.04 -Installed-Size: 1513 +Version: 0.5.0-48~20.04 +Installed-Size: 1511 Package: rocprofiler-sdk-roctx-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 9893677c91fdf2a0d301ff6662184655830bbdca -Depends: rocprofiler-sdk-roctx (= 0.4.0-116~20.04) +Build-Ids: 05f48969ed0afae41ad5c077ede713546549c519 +Depends: rocprofiler-sdk-roctx (= 0.5.0-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocprofiler-sdk-roctx-dbgsym/rocprofiler-sdk-roctx-dbgsym_0.4.0-116~20.04_amd64.deb -Size: 2585796 -SHA256: d9b5b5a10651aa991896a03a06162b04c485ca8a7e9fe8f07774ac731dd675e5 -SHA1: ca9b29c76afee3c027cf1c17d3b36f87e31e38aa -MD5sum: 1406d8b77124ceb3e1c33836617f3799 +Filename: pool/main/r/rocprofiler-sdk-roctx-dbgsym/rocprofiler-sdk-roctx-dbgsym_0.5.0-48~20.04_amd64.deb +Size: 2516568 +SHA256: b96a6490a835b4f4acf44bbadce85e46e88a8328a28f6715b2c7c97b31d29f6d +SHA1: 8e2be27601836262806760a8539c64825cb0ca32 +MD5sum: 8f979b41f0de78c7d7a55f830d57e493 Description: debug symbols for rocprofiler-sdk-roctx Maintainer: ROCm Profiler Support Package-Type: ddeb -Version: 0.4.0-116~20.04 -Installed-Size: 9277 +Version: 0.5.0-48~20.04 +Installed-Size: 9099 -Package: rocprofiler-sdk-roctx-dbgsym-rpath6.2.2 +Package: rocprofiler-sdk-roctx-rpath6.3.1 +Architecture: amd64 +Depends: rocm-core-rpath6.3.1 +Priority: optional +Section: devel +Filename: pool/main/r/rocprofiler-sdk-roctx-rpath6.3.1/rocprofiler-sdk-roctx-rpath6.3.1_0.5.0-48~20.04_amd64.deb +Size: 168096 +SHA256: b8ba02a9a154c9820e8582ca0d1edcdfe313ca7f532d9f7abf4f56eac00ca016 +SHA1: 4a3ede25eb165cb1b945a24db3f3a21815605718 +MD5sum: 5db2439a3eb09e4c94290451d8a7c811 +Description: ROCm GPU performance analysis SDK +Homepage: https://github.com/ROCm/rocprofiler-sdk +Maintainer: ROCm Profiler Support +Version: 0.5.0-48~20.04 +Installed-Size: 1511 + +Package: rocprofiler-sdk-roctx6.3.1 +Architecture: amd64 +Depends: rocm-core6.3.1 +Priority: optional +Section: devel +Filename: pool/main/r/rocprofiler-sdk-roctx6.3.1/rocprofiler-sdk-roctx6.3.1_0.5.0-48~20.04_amd64.deb +Size: 167812 +SHA256: 9841d920856eceb1737824d614602a943b0de66dd70c8ae1981d18ff6f26ee0f +SHA1: 12407d425b370cce247e5995b837aa72cd49a3af +MD5sum: bbff3674142de1ceb54b9cf1186ec087 +Description: ROCm GPU performance analysis SDK +Homepage: https://github.com/ROCm/rocprofiler-sdk +Maintainer: ROCm Profiler Support +Version: 0.5.0-48~20.04 +Installed-Size: 1511 + +Package: rocprofiler-sdk-rpath6.3.1 +Architecture: amd64 +Depends: rocm-core-rpath6.3.1, rocprofiler-sdk-roctx-rpath6.3.1 (>= 0.5.0) +Priority: optional +Section: devel +Filename: pool/main/r/rocprofiler-sdk-rpath6.3.1/rocprofiler-sdk-rpath6.3.1_0.5.0-48~20.04_amd64.deb +Size: 2320936 +SHA256: dfce1d7e4c27043e04f76420eaf9c47666233c4c81c6404bafaa65e81816f7e8 +SHA1: 1c0ba5ac8da1bfee1133d30b5cc04a313c730920 +MD5sum: db8faf3e8b91531f3252101b5ad47278 +Description: ROCm GPU performance analysis SDK +Homepage: https://github.com/ROCm/rocprofiler-sdk +Maintainer: ROCm Profiler Support +Version: 0.5.0-48~20.04 +Installed-Size: 34305 + +Package: rocprofiler-sdk6.3.1 +Architecture: amd64 +Depends: rocm-core6.3.1, rocprofiler-sdk-roctx6.3.1 (>= 0.5.0) +Priority: optional +Section: devel +Filename: pool/main/r/rocprofiler-sdk6.3.1/rocprofiler-sdk6.3.1_0.5.0-48~20.04_amd64.deb +Size: 2320136 +SHA256: e9e7b2b1d1c0995bb3ac84e32fc030ddebde0bca6ad4601c40d852a28276d9ee +SHA1: 371caec8680df1e84742232e435804f761d01f75 +MD5sum: c74eff9a69d4b7a75f3ff8dec4d1e9ab +Description: ROCm GPU performance analysis SDK +Homepage: https://github.com/ROCm/rocprofiler-sdk +Maintainer: ROCm Profiler Support +Version: 0.5.0-48~20.04 +Installed-Size: 34305 + +Package: rocprofiler-systems +Architecture: amd64 +Breaks: omnitrace +Depends: libgomp1, rocm-smi-lib (>= 6.0.0.60301), roctracer-dev (>= 1.0.0.60301), rocprofiler-dev (>= 1.0.0.60301), libbz2-1.0, libc6 (>= 2.30), libgcc-s1 (>= 3.0), libgomp1 (>= 6), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 9), libzstd1 (>= 1.3.2), zlib1g (>= 1:1.2.2.3) +Priority: optional +Section: devel +Filename: pool/main/r/rocprofiler-systems/rocprofiler-systems_0.1.0.60301-48~20.04_amd64.deb +Size: 40544180 +SHA256: 61cc41ad360b0f3ef3b64c9687d05adbff6b706c2456a3eb13f96988486363ab +SHA1: f6c98315ce0c83fd36333e0bb6178b901349b6d5 +MD5sum: 7f1de5518361f924b35b722aef5b7b2a +Description: Runtime instrumentation and binary rewriting for Perfetto via Dyninst +Homepage: https://github.com/ROCm/rocprofiler-systems +Maintainer: https://github.com/ROCm/rocprofiler-systems +Provides: omnitrace +Replaces: omnitrace +Version: 0.1.0.60301-48~20.04 +Installed-Size: 249963 + +Package: rocprofiler-systems-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 9893677c91fdf2a0d301ff6662184655830bbdca -Depends: rocprofiler-sdk-roctx-rpath6.2.2 (= 0.4.0-116~20.04) +Build-Ids: 93d90d1b49dc879b8b1934ef70515dc4a183f9c4 0d4681f36f5e5a01e005f67d29ab8d3949a0b3ba 993e8beff213070a55b5b67a327e85fe9108a1b6 f7eb67fcbd0bdbbaff76124c8e3ac7a29aafb41d 4afaf0597df32fed9db1e0187eb50c621623b42a aa92a1619df091c28e8556374b3b4e1d438cc4a7 4d0178e97e0fcd92a2a871c64d39dbcfb75c5bbc 07ec7840bd36e97b1307aeffcbfdd6abe2a128dc e2db9d102dfb2360bb283c893e6636b1015f280f 24c0a98dcebf15d517668cb8483b5a3bcc4a5a75 c25a4eafda5e5571a712c4f3599ca9fd206ae147 a16026a8097680479537bac87fdb971f702cae3d 2fcc17b84a61e63717b105e62e25bdc643d56ec9 622868113238ea259b10a5c96f7bc7a5e8533d68 0cbf12877ac5dc06a28f5ee6f04e329b8f6aeef9 009ae0802306248e1e4607294f6e9336c896748c 61a64115367bf6ffbea124e217f6c81b02086d77 7d1fd77405f9077c9c67c5b64b971ae004b73032 c5a73f995d59704b6aed9ca8f86832da2376849c 59d34e6e4b884889dec282c9a59d85b218694927 5a5771e38d754a85d3bbe4052a3049dcedc050cb 8457db0bdf794a0352240bfa56e2cdea6dfcfbf5 01181ab072b195eb6c29a0395116c25812c5ae31 9e66b955b435c0fe4f03a58226483337e9691086 9251e57fb7276451f6247dbda62592cfe8126aa1 57fef98113490bff1535ecca1d2337be9cb085ba 9160a284d6eb3bce29967e247a71755e623d7943 31139cf2b0ee59adf8087dea2f043ab87c7258b7 d30e64f759073bd27a6e039c0a0fce135257a103 1da054f9a10d2815800d2d869280fd21b556f4de cede68f3a8b4ef5900dff538f83ee710576eb335 cf9fba755a22f96f42336c4c1d55e78f6b6fde9b e2a3d48d306b998615272a7a6416dce64e649ea9 e6062b596a168e3c8e995610d688f18582468681 3cb0ce55402df6418535c18293d80ca56c0f8984 29c14878db46f79a7e499021ede043864fe4ce9a 7455f8e2f64872b68d6d27335e16385f238d635e 71313aa12aa63802db69bffebcf7ee81c2edac49 +Depends: rocprofiler-systems (= 0.1.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocprofiler-sdk-roctx-dbgsym-rpath6.2.2/rocprofiler-sdk-roctx-dbgsym-rpath6.2.2_0.4.0-116~20.04_amd64.deb -Size: 1792696 -SHA256: bd94ae8356a635177ecc7d188836171776b65c417bc7f61ed6ec4704e75c7076 -SHA1: 3d8e7fbe828d668664b78b1fd1758471295e29a7 -MD5sum: b7725bae5558115d5d048e63d34ee43f -Description: debug symbols for rocprofiler-sdk-roctx -Maintainer: ROCm Profiler Support +Filename: pool/main/r/rocprofiler-systems-dbgsym/rocprofiler-systems-dbgsym_0.1.0.60301-48~20.04_amd64.deb +Size: 825357706 +SHA256: fc96d83a3747897006d9d1a708905d87460a691ec905a23c861b61b4a21e7ce3 +SHA1: 45a89cb26aad9905435db4a8bcc9797c88cca463 +MD5sum: 90453d26a275f3a019902fc2ab74a6bd +Description: debug symbols for rocprofiler-systems +Maintainer: https://github.com/ROCm/rocprofiler-systems Package-Type: ddeb -Version: 0.4.0-116~20.04 -Installed-Size: 9277 +Version: 0.1.0.60301-48~20.04 +Installed-Size: 3109429 -Package: rocprofiler-sdk-roctx-dbgsym6.2.2 +Package: rocprofiler-systems-rpath6.3.1 Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 9893677c91fdf2a0d301ff6662184655830bbdca -Depends: rocprofiler-sdk-roctx6.2.2 (= 0.4.0-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocprofiler-sdk-roctx-dbgsym6.2.2/rocprofiler-sdk-roctx-dbgsym6.2.2_0.4.0-116~20.04_amd64.deb -Size: 1793464 -SHA256: c7e48ea7d4800e9cd2759f20f645d6757809c91caf26b991d158d9b323f9fcb1 -SHA1: 52809f9283f6841754ccae71813813af639cd459 -MD5sum: 05e656722631dd542ed6b02a5c73cb7f -Description: debug symbols for rocprofiler-sdk-roctx -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 0.4.0-116~20.04 -Installed-Size: 9277 - -Package: rocprofiler-sdk-roctx-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Breaks: omnitrace-rpath6.3.1 +Depends: libgomp1, rocm-smi-lib-rpath6.3.1 (>= 6.0.0.60301), roctracer-dev-rpath6.3.1 (>= 1.0.0.60301), rocprofiler-dev-rpath6.3.1 (>= 1.0.0.60301), libbz2-1.0, libc6 (>= 2.30), libgcc-s1 (>= 3.0), libgomp1 (>= 6), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 9), libzstd1 (>= 1.3.2), zlib1g (>= 1:1.2.2.3) Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-sdk-roctx-rpath6.2.2/rocprofiler-sdk-roctx-rpath6.2.2_0.4.0-116~20.04_amd64.deb -Size: 168124 -SHA256: ab0e706a11a7e5fe167828714f16785ce0f82956868a178a763674294f6bec98 -SHA1: 2abca78562b874e6e31abd5cda005f5ead14b404 -MD5sum: 89871f0b7e6a680e861e5f00bcab3424 -Description: ROCm GPU performance analysis SDK -Homepage: https://github.com/ROCm/rocprofiler-sdk -Maintainer: ROCm Profiler Support -Version: 0.4.0-116~20.04 -Installed-Size: 1513 +Filename: pool/main/r/rocprofiler-systems-rpath6.3.1/rocprofiler-systems-rpath6.3.1_0.1.0.60301-48~20.04_amd64.deb +Size: 22517484 +SHA256: 5ec53921beb8fab046f21b25334898c13b3ee5b29897a96d74b3114063b9aa2b +SHA1: b056929eec0123af94ad3520a02041e34b24ae28 +MD5sum: 936a18f703a6e1cf284417c3b80f44c9 +Description: Runtime instrumentation and binary rewriting for Perfetto via Dyninst +Homepage: https://github.com/ROCm/rocprofiler-systems +Maintainer: https://github.com/ROCm/rocprofiler-systems +Provides: omnitrace-rpath6.3.1 +Replaces: omnitrace-rpath6.3.1 +Version: 0.1.0.60301-48~20.04 +Installed-Size: 249963 -Package: rocprofiler-sdk-roctx6.2.2 +Package: rocprofiler-systems6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Breaks: omnitrace6.3.1 +Depends: libgomp1, rocm-smi-lib6.3.1 (>= 6.0.0.60301), roctracer-dev6.3.1 (>= 1.0.0.60301), rocprofiler-dev6.3.1 (>= 1.0.0.60301), libbz2-1.0, libc6 (>= 2.30), libgcc-s1 (>= 3.0), libgomp1 (>= 6), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 9), libzstd1 (>= 1.3.2), zlib1g (>= 1:1.2.2.3) Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-sdk-roctx6.2.2/rocprofiler-sdk-roctx6.2.2_0.4.0-116~20.04_amd64.deb -Size: 168152 -SHA256: ca80c9bd3c0c497f38bdfaa8cdc4453ee9a541be4f4da24f7300ad04033a3b08 -SHA1: ddc067a02cefbc1b630e15a2ad95214a1d6b288f -MD5sum: 72130ab04b2faa0e3dc2a2a0f8bacfd5 -Description: ROCm GPU performance analysis SDK -Homepage: https://github.com/ROCm/rocprofiler-sdk -Maintainer: ROCm Profiler Support -Version: 0.4.0-116~20.04 -Installed-Size: 1513 +Filename: pool/main/r/rocprofiler-systems6.3.1/rocprofiler-systems6.3.1_0.1.0.60301-48~20.04_amd64.deb +Size: 22528224 +SHA256: b6aa89df0b3b35bf04d3330b89948586548d3ed883b80a9e0152724b13061ee2 +SHA1: 68ec315c7f885f3c2ec96c79fc151bccb2e14703 +MD5sum: e0e5db4bbfed4465d7d490969f4ff092 +Description: Runtime instrumentation and binary rewriting for Perfetto via Dyninst +Homepage: https://github.com/ROCm/rocprofiler-systems +Maintainer: https://github.com/ROCm/rocprofiler-systems +Provides: omnitrace6.3.1 +Replaces: omnitrace6.3.1 +Version: 0.1.0.60301-48~20.04 +Installed-Size: 249963 -Package: rocprofiler-sdk-rpath6.2.2 +Package: rocprofiler6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocminfo6.3.1, hsa-rocr6.3.1, rocm-core6.3.1, libelf-dev, libnuma-dev, libxml2-dev Priority: optional Section: devel -Filename: pool/main/r/rocprofiler-sdk-rpath6.2.2/rocprofiler-sdk-rpath6.2.2_0.4.0-116~20.04_amd64.deb -Size: 1919476 -SHA256: 693654d2282a3e123647467bfdde92c40537d805cbf34485d3ae41dd8259a866 -SHA1: a6eeb25432e23828b8da9543c5a9cfde328ced6d -MD5sum: 5f111ffbe2cd116b6d483531a3913bf4 -Description: ROCm GPU performance analysis SDK -Homepage: https://github.com/ROCm/rocprofiler-sdk -Maintainer: ROCm Profiler Support -Version: 0.4.0-116~20.04 -Installed-Size: 28487 - -Package: rocprofiler-sdk6.2.2 -Architecture: amd64 -Depends: rocm-core6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocprofiler-sdk6.2.2/rocprofiler-sdk6.2.2_0.4.0-116~20.04_amd64.deb -Size: 1919960 -SHA256: 6014979516ec691c4f436d7fe90b0668b8f7e4efaed062dedab21ac0b772141e -SHA1: cffa80efad95649b4f878a4cb91512bb116c3a64 -MD5sum: c5de5ca9d92c5c8b8296f73d3e802f77 -Description: ROCm GPU performance analysis SDK -Homepage: https://github.com/ROCm/rocprofiler-sdk -Maintainer: ROCm Profiler Support -Version: 0.4.0-116~20.04 -Installed-Size: 28487 - -Package: rocprofiler6.2.2 -Architecture: amd64 -Depends: rocminfo6.2.2, hsa-rocr6.2.2, rocm-core6.2.2, libsystemd-dev, libelf-dev, libnuma-dev, libpciaccess-dev, libxml2-dev -Priority: optional -Section: devel -Filename: pool/main/r/rocprofiler6.2.2/rocprofiler6.2.2_2.0.60202.60202-116~20.04_amd64.deb -Size: 573852 -SHA256: 421273c0f1a463485b525fb5ba15be11a725c66cee58600f34f455918d689d07 -SHA1: 96ae159c59446cb0ee351089e2b55c02ebfa4ac1 -MD5sum: 26f7c6730fd55d647af5cb13d0b3398c +Filename: pool/main/r/rocprofiler6.3.1/rocprofiler6.3.1_2.0.60301.60301-48~20.04_amd64.deb +Size: 580924 +SHA256: 4a7d6c107715dc6ff573822d386d0169c7ae870ab026733475d84385baf1d67d +SHA1: 9ae68aa2d49187b6469759d9c86005f08745f1f3 +MD5sum: 59b0ed9a346a2ecb333a105486d4a528 Description: ROCPROFILER library for AMD HSA runtime API extension support Dynamic libraries for the ROCProfiler Maintainer: ROCm Profiler Support -Version: 2.0.60202.60202-116~20.04 -Installed-Size: 4105 +Version: 2.0.60301.60301-48~20.04 +Installed-Size: 4178 Package: rocrand Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocrand/rocrand_3.1.0.60202-116~20.04_amd64.deb -Size: 21785558 -SHA256: ead09f5f71311e32f4c24258e4d2566b5179f3d54c60d0172b8dc69cbb3e83fb -SHA1: 9bfbab700a04340aeb3dee75ef85861f90972263 -MD5sum: aa4d041989aa7cbe0afce5a9169c03b1 +Filename: pool/main/r/rocrand/rocrand_3.2.0.60301-48~20.04_amd64.deb +Size: 23150040 +SHA256: 2b8cd0a6ba1b3c27eb2fc0f173dcb149668e15e6a414582b15ba2c6cdf3f36be +SHA1: d56d89a036688f7302f3a6bdaddc0660c26d1994 +MD5sum: 0bc538bda9236c4f0ba5560b1f520ff5 Description: Radeon Open Compute RAND library Maintainer: rocRAND Maintainer -Recommends: rocrand-dev (>=3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 301186 - -Package: rocrand-asan -Architecture: amd64 -Depends: rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocrand-asan/rocrand-asan_3.1.0.60202-116~20.04_amd64.deb -Size: 28712162 -SHA256: 5e44d6a0afe388923834957ff2e3ae05cc67aa803df11538077a2b29fc192565 -SHA1: 4524194df356cddbbd593985700cc81972d68bb6 -MD5sum: 085315bb9097693dc77771fbe0c94ff8 -Description: Radeon Open Compute RAND library -Maintainer: rocRAND Maintainer -Recommends: rocrand-asan-dev (>=3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 228593 - -Package: rocrand-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 8cb2667c3aa0fb0b71ba0d1c78148b308b1997ee -Depends: rocrand-asan (= 3.1.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocrand-asan-dbgsym/rocrand-asan-dbgsym_3.1.0.60202-116~20.04_amd64.deb -Size: 4506518 -SHA256: 392efdb70931ac7c8f3930b910d4245ed8a85547a895b785126e44829badee1b -SHA1: b00def4b2d31dd0a616b81701556a840569d504d -MD5sum: 9b931293bea98e94187d1a8336b3022d -Description: debug symbols for rocrand-asan -Maintainer: rocRAND Maintainer -Package-Type: ddeb -Version: 3.1.0.60202-116~20.04 -Installed-Size: 5760 - -Package: rocrand-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 8cb2667c3aa0fb0b71ba0d1c78148b308b1997ee -Depends: rocrand-asan-rpath6.2.2 (= 3.1.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocrand-asan-dbgsym-rpath6.2.2/rocrand-asan-dbgsym-rpath6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 4506700 -SHA256: 21acc0661a06d7505e187b0b15f6bbae362d8d76f74747670f40c13bd504db33 -SHA1: 4969dc46468d7e6fbbdfae2a23b588f6dbd1224d -MD5sum: 3a6d8f71abcea5683cc19615110b1a4a -Description: debug symbols for rocrand-asan -Maintainer: rocRAND Maintainer -Package-Type: ddeb -Version: 3.1.0.60202-116~20.04 -Installed-Size: 5760 - -Package: rocrand-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 8cb2667c3aa0fb0b71ba0d1c78148b308b1997ee -Depends: rocrand-asan6.2.2 (= 3.1.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocrand-asan-dbgsym6.2.2/rocrand-asan-dbgsym6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 4506888 -SHA256: ef203593bd93c6d5e0afca832e47fee653b8ce359efeabfccf269e5559d097ea -SHA1: 87f5d9a8a8d16fd7577276bf4318ba6ed12f607d -MD5sum: a2f0b928f2a4347a3e169f3330fd4891 -Description: debug symbols for rocrand-asan -Maintainer: rocRAND Maintainer -Package-Type: ddeb -Version: 3.1.0.60202-116~20.04 -Installed-Size: 5760 - -Package: rocrand-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocrand-asan-rpath6.2.2/rocrand-asan-rpath6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 28815016 -SHA256: d1bf9fb0c3942d6bb5e4066eee2acf36718b499e44471d10d2cd9c3893b0cd4b -SHA1: afd9dac223a824a5a1b95d086c69ae91dd4a8b76 -MD5sum: b7f4dc22dad5e3c926e1c8a41d32aa40 -Description: Radeon Open Compute RAND library -Maintainer: rocRAND Maintainer -Recommends: rocrand-asan-dev (>=3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 228593 - -Package: rocrand-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocrand-asan6.2.2/rocrand-asan6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 28815056 -SHA256: 90f78b32b29609e41d4ee0dc1b8ef332c868b4b307f854c10e52645c9b9257bb -SHA1: a2bda93ccd19e504cbc574b593d323b67c71b642 -MD5sum: 9a75ffa2fba235adb9df17018c214410 -Description: Radeon Open Compute RAND library -Maintainer: rocRAND Maintainer -Recommends: rocrand-asan-dev (>=3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 228593 +Recommends: rocrand-dev (>=3.2.0.60301) +Version: 3.2.0.60301-48~20.04 +Installed-Size: 346260 Package: rocrand-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 5dedcfd30c92ca38e445da59b18b60a81d051dc6 -Depends: rocrand (= 3.1.0.60202-116~20.04) +Build-Ids: aacaf0a46390b05be66de69879cb4b7a5863d13a +Depends: rocrand (= 3.2.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocrand-dbgsym/rocrand-dbgsym_3.1.0.60202-116~20.04_amd64.deb -Size: 1932244 -SHA256: b9c9130f156c90e71160902eba1e13a06721ea536a2e0e0cd5aea3bd6b079671 -SHA1: c58146f96551864abe36d7e2bcc03ee8cddb6925 -MD5sum: 0dd3dd51e4387e8274368cbd8a721fa1 +Filename: pool/main/r/rocrand-dbgsym/rocrand-dbgsym_3.2.0.60301-48~20.04_amd64.deb +Size: 3799040 +SHA256: 0d304a072c81c06805360fc7a450a6970cd8f1e21799bd10acaea7e26bc25dc0 +SHA1: 48d54e7d4582b8c63236129781d3bd6f313fcf35 +MD5sum: c12640ed277b82e8f987c3216cbc6dd3 Description: debug symbols for rocrand Maintainer: rocRAND Maintainer Package-Type: ddeb -Version: 3.1.0.60202-116~20.04 -Installed-Size: 14848 - -Package: rocrand-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5dedcfd30c92ca38e445da59b18b60a81d051dc6 -Depends: rocrand-rpath6.2.2 (= 3.1.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocrand-dbgsym-rpath6.2.2/rocrand-dbgsym-rpath6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 1926472 -SHA256: 0819a61b8713009da60191c595e96ce77109b0d48967bf6a0009231a72543530 -SHA1: a9418109b0d85321d074aa8cd3369bc84e043dae -MD5sum: c9e49cf6b27840f0b860b079934bd011 -Description: debug symbols for rocrand -Maintainer: rocRAND Maintainer -Package-Type: ddeb -Version: 3.1.0.60202-116~20.04 -Installed-Size: 14848 - -Package: rocrand-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 5dedcfd30c92ca38e445da59b18b60a81d051dc6 -Depends: rocrand6.2.2 (= 3.1.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocrand-dbgsym6.2.2/rocrand-dbgsym6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 1931220 -SHA256: d9e90a577fc7e1ba3cc75455368776b8a6d38b64184da5ba1eefdadea4a365cb -SHA1: 6a3559f1c9c2a86b0a304e4b6518fac9e4ad2ce2 -MD5sum: 4409c9d9913a59e7160fd3f2b59f6d11 -Description: debug symbols for rocrand -Maintainer: rocRAND Maintainer -Package-Type: ddeb -Version: 3.1.0.60202-116~20.04 -Installed-Size: 14848 +Version: 3.2.0.60301-48~20.04 +Installed-Size: 67539 Package: rocrand-dev Architecture: amd64 -Depends: rocrand (>= 3.1.0.60202) +Depends: rocrand (>= 3.2.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocrand-dev/rocrand-dev_3.1.0.60202-116~20.04_amd64.deb -Size: 543388 -SHA256: 08ab02a3342c71893c7f81b56277863855975dc838463b95fa7f914f912690d9 -SHA1: 692368e85a87972f9905d16fd517711fc5c7c06e -MD5sum: 23afbd103a112ea2641a32afdd26baad +Filename: pool/main/r/rocrand-dev/rocrand-dev_3.2.0.60301-48~20.04_amd64.deb +Size: 544002 +SHA256: 541e9b2ca72bb2ce0723b1ebd3f405dfbc5fea15f3159cd947864170943ac4ac +SHA1: 9be3815ff472e5d8081cf5fbce85d433d8ee9ace +MD5sum: 88669d4969f3d5457f8b5230209c3e12 Description: Radeon Open Compute RAND library Maintainer: rocRAND Maintainer -Version: 3.1.0.60202-116~20.04 -Installed-Size: 3794 +Version: 3.2.0.60301-48~20.04 +Installed-Size: 3795 -Package: rocrand-dev-rpath6.2.2 +Package: rocrand-dev-rpath6.3.1 Architecture: amd64 -Depends: rocrand-rpath6.2.2 (>= 3.1.0.60202) +Depends: rocrand-rpath6.3.1 (>= 3.2.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocrand-dev-rpath6.2.2/rocrand-dev-rpath6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 543376 -SHA256: 3aefd6f046cb090afb0f57da7d9ddfd585dbca522fca964cd8447a803877072e -SHA1: d64ea7656037fa4fe563084cccb681cfc5f4fb68 -MD5sum: b16a8e4869236951ced9a2b1fd836438 +Filename: pool/main/r/rocrand-dev-rpath6.3.1/rocrand-dev-rpath6.3.1_3.2.0.60301-48~20.04_amd64.deb +Size: 544776 +SHA256: 70db4834b1cc3463fa8abf1262bf81534fb41f6ddfa0ad64f3b212c505c605a7 +SHA1: 2e8c1eed87f91f30d3d5818ba010846a553e38e4 +MD5sum: ab6c5a56e39787be61131b8566dcf125 Description: Radeon Open Compute RAND library Maintainer: rocRAND Maintainer -Version: 3.1.0.60202-116~20.04 -Installed-Size: 3794 +Version: 3.2.0.60301-48~20.04 +Installed-Size: 3795 -Package: rocrand-dev6.2.2 +Package: rocrand-dev6.3.1 Architecture: amd64 -Depends: rocrand6.2.2 (>= 3.1.0.60202) +Depends: rocrand6.3.1 (>= 3.2.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocrand-dev6.2.2/rocrand-dev6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 544888 -SHA256: 5b63b076f3d7f2d046919de82e8e4cdfc552e0900fd5b369918bd14e4d47c778 -SHA1: 65d018fec47a52fb26e6781887a148c71b0255c4 -MD5sum: 012abcb6f41d98e7696375683889d28f +Filename: pool/main/r/rocrand-dev6.3.1/rocrand-dev6.3.1_3.2.0.60301-48~20.04_amd64.deb +Size: 544956 +SHA256: b0492c7d5802e9816c01e8f2f6b7aa363f09cbf4ac87acd05c56bd0a460eaa54 +SHA1: 3d68a4629b518df773040b0c68a983b2ab529b51 +MD5sum: 56622bb8270c9eaaffbf603984f022fa Description: Radeon Open Compute RAND library Maintainer: rocRAND Maintainer -Version: 3.1.0.60202-116~20.04 -Installed-Size: 3794 +Version: 3.2.0.60301-48~20.04 +Installed-Size: 3795 -Package: rocrand-rpath6.2.2 +Package: rocrand-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocrand-rpath6.2.2/rocrand-rpath6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 21713060 -SHA256: 4e35b0953f020eae0e963c6efa0fbf3f71b735894fcc2cb21548a972d38fdc67 -SHA1: 0e11d72a111732eee4af4bcf6409b8db3b11da3b -MD5sum: 053e0bd6101e6f45bbc3f02ad4df87d6 +Filename: pool/main/r/rocrand-rpath6.3.1/rocrand-rpath6.3.1_3.2.0.60301-48~20.04_amd64.deb +Size: 23186440 +SHA256: b5f96ce330416fb36329e800b2209f546c36edd4db48ae270bff3f6710523287 +SHA1: e5b1fb6bf392bcf59fc9159ccc36ad906aad1d35 +MD5sum: 26cf890368ae4787178c2990245f0906 Description: Radeon Open Compute RAND library Maintainer: rocRAND Maintainer -Recommends: rocrand-dev-rpath6.2.2 (>=3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 301186 +Recommends: rocrand-dev-rpath6.3.1 (>=3.2.0.60301) +Version: 3.2.0.60301-48~20.04 +Installed-Size: 346260 -Package: rocrand6.2.2 +Package: rocrand6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocrand6.2.2/rocrand6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 21691444 -SHA256: 6aae5b7bb19a826b28b454162b511da13143cbb38497e9591b4719da0e1449c4 -SHA1: b09cad065d3304540315eabf8f5f75d294372f66 -MD5sum: 6526e14ca39c83d551d15dc0869f3c7c +Filename: pool/main/r/rocrand6.3.1/rocrand6.3.1_3.2.0.60301-48~20.04_amd64.deb +Size: 23209112 +SHA256: 74f289ffd39e0430fda9c93309b8d1869a2a3b14ce6f2d60c5dfa7346a67d5af +SHA1: c02fc2769aad7a1dd494759ac4d2472ec47d915c +MD5sum: 3736afd134bb3c2dda653338dba38554 Description: Radeon Open Compute RAND library Maintainer: rocRAND Maintainer -Recommends: rocrand-dev6.2.2 (>=3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 301186 +Recommends: rocrand-dev6.3.1 (>=3.2.0.60301) +Version: 3.2.0.60301-48~20.04 +Installed-Size: 346260 Package: rocsolver Architecture: amd64 -Depends: rocblas (>= 4.2), rocsparse (>= 2.2), rocm-core +Depends: rocblas (>= 4.1), rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocsolver/rocsolver_3.26.0.60202-116~20.04_amd64.deb -Size: 251150948 -SHA256: e96465d620b4818b00a2c48144c50caca1e9c15cfde12acad18750885cf324ca -SHA1: abb58a6cc07e1b4374c28ba5c2ab0630156b6b03 -MD5sum: bfe820518192be0c8115a292fc9e62c1 +Filename: pool/main/r/rocsolver/rocsolver_3.27.0.60301-48~20.04_amd64.deb +Size: 262390512 +SHA256: 6ca6d2f88ad75a5b0ddb731611af2fdeccaeb6a7d497ace1050f4a553f77680b +SHA1: d628279fe3ade819abef233bae159ac053557065 +MD5sum: c656ebcce525db0751b938de982c31d0 Description: AMD ROCm SOLVER library Maintainer: RocSOLVER maintainer -Recommends: rocsolver-dev (>=3.26.0.60202) -Version: 3.26.0.60202-116~20.04 -Installed-Size: 3383329 - -Package: rocsolver-asan -Architecture: amd64 -Depends: rocblas (>= 4.2), rocsparse (>= 2.2), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocsolver-asan/rocsolver-asan_3.26.0.60202-116~20.04_amd64.deb -Size: 268058028 -SHA256: 3891cd9913fe87cf70fe2c804574f8953faf8da0caffa310b4f8657ceb482f11 -SHA1: 59f1f2112374d1947fcd8e295e9ebe3b0e455ae1 -MD5sum: a9618c5663a2c053d0df53c2e1087d9d -Description: AMD ROCm SOLVER library -Maintainer: RocSOLVER maintainer -Recommends: rocsolver-asan-dev (>=3.26.0.60202) -Version: 3.26.0.60202-116~20.04 -Installed-Size: 3641644 - -Package: rocsolver-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 34a236b61698beef1179a396999403ace810fcc9 -Depends: rocsolver-asan (= 3.26.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsolver-asan-dbgsym/rocsolver-asan-dbgsym_3.26.0.60202-116~20.04_amd64.deb -Size: 126663428 -SHA256: 48e513863d466e3cf45c05a723976705c12262a8bab3e1249e09f082aecc0009 -SHA1: 4c93a34616bb11c5bcb4c3daf86606371001519a -MD5sum: b1d5e42ef2cb7d809c3d17827cb14f0b -Description: debug symbols for rocsolver-asan -Maintainer: RocSOLVER maintainer -Package-Type: ddeb -Version: 3.26.0.60202-116~20.04 -Installed-Size: 140468 - -Package: rocsolver-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 34a236b61698beef1179a396999403ace810fcc9 -Depends: rocsolver-asan-rpath6.2.2 (= 3.26.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsolver-asan-dbgsym-rpath6.2.2/rocsolver-asan-dbgsym-rpath6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 126662544 -SHA256: d23679eecaaf96c8252eb48de4bcd6721f01839e37f0c23e0efa02c6e1c829cb -SHA1: 864608de0cf29ff15997dc622545fcb8fa0b3a4b -MD5sum: de174668cd49865e0c19b7d3a8965a7b -Description: debug symbols for rocsolver-asan -Maintainer: RocSOLVER maintainer -Package-Type: ddeb -Version: 3.26.0.60202-116~20.04 -Installed-Size: 140468 - -Package: rocsolver-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 34a236b61698beef1179a396999403ace810fcc9 -Depends: rocsolver-asan6.2.2 (= 3.26.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsolver-asan-dbgsym6.2.2/rocsolver-asan-dbgsym6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 126663064 -SHA256: fd268e86ade5fe5c8520f0711f15c44be37b7b430c1411f81e6b421b468e48e7 -SHA1: 88fe68a417fbf9c5343dcf1193f82c22237c3111 -MD5sum: c9a39b2fd1f500884d24140e8a3e9e07 -Description: debug symbols for rocsolver-asan -Maintainer: RocSOLVER maintainer -Package-Type: ddeb -Version: 3.26.0.60202-116~20.04 -Installed-Size: 140468 - -Package: rocsolver-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocblas (>= 4.2), rocsparse (>= 2.2), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocsolver-asan-rpath6.2.2/rocsolver-asan-rpath6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 268057152 -SHA256: 38566bb7465ea2ae446c729bb8e6c3f4edee738154bd5089d62842356a5c5e71 -SHA1: 67a2e0ff4f20fad5f3dd7f4506b217e1b531eb62 -MD5sum: 0d8790ddaf9a2b4ed99c30b1de8fdf3d -Description: AMD ROCm SOLVER library -Maintainer: RocSOLVER maintainer -Recommends: rocsolver-asan-dev (>=3.26.0.60202) -Version: 3.26.0.60202-116~20.04 -Installed-Size: 3641644 - -Package: rocsolver-asan6.2.2 -Architecture: amd64 -Depends: rocblas (>= 4.2), rocsparse (>= 2.2), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocsolver-asan6.2.2/rocsolver-asan6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 268058712 -SHA256: 9e3de9c140be7d6654bb0d57bf11b3f79b100b78a176faf2f3a7717d51cb6a64 -SHA1: ff011c4dee8d2b5c5f9758ea70a3ad12fb45766d -MD5sum: 931b94ba2dfc6de2adc7194d5b772fd6 -Description: AMD ROCm SOLVER library -Maintainer: RocSOLVER maintainer -Recommends: rocsolver-asan-dev (>=3.26.0.60202) -Version: 3.26.0.60202-116~20.04 -Installed-Size: 3641644 +Recommends: rocsparse, rocsolver-dev (>=3.27.0.60301) +Version: 3.27.0.60301-48~20.04 +Installed-Size: 3379311 Package: rocsolver-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 3fc7e046426f28b44df45dd32f3ce3b1acc34e7c -Depends: rocsolver (= 3.26.0.60202-116~20.04) +Build-Ids: a7a264a1330693aee77d69f07d649b790ab95995 +Depends: rocsolver (= 3.27.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocsolver-dbgsym/rocsolver-dbgsym_3.26.0.60202-116~20.04_amd64.deb -Size: 34743916 -SHA256: 28ad5475b044c3f56470f16e044ccb0e461e2326061bd0cc00c4aaaba2032e43 -SHA1: d650c0b927332af1eff2eef1aab4bef7ee665e00 -MD5sum: 0fcb19cfa68fdfd234baedd4079d6e35 +Filename: pool/main/r/rocsolver-dbgsym/rocsolver-dbgsym_3.27.0.60301-48~20.04_amd64.deb +Size: 36188784 +SHA256: bb1c2429ded82f546d19a2abf16c5782ebf382885c3d2fb2c797a25cea08fecc +SHA1: c32cb565a49d6dd5df4a71ecb1fc5c8752ef0fff +MD5sum: beddc242be8e5aff316493085f5c2708 Description: debug symbols for rocsolver Maintainer: RocSOLVER maintainer Package-Type: ddeb -Version: 3.26.0.60202-116~20.04 -Installed-Size: 304262 - -Package: rocsolver-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3fc7e046426f28b44df45dd32f3ce3b1acc34e7c -Depends: rocsolver-rpath6.2.2 (= 3.26.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsolver-dbgsym-rpath6.2.2/rocsolver-dbgsym-rpath6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 34724608 -SHA256: 9476c849d2830036de533aaf2b93d54eadf0730732ffafb8810696bf3a5314b7 -SHA1: 86ba2496a83fbbf4fe868cc2cd1b9e2b3845eaf5 -MD5sum: 686b5a6b8664c1bc025e0f88469301b1 -Description: debug symbols for rocsolver -Maintainer: RocSOLVER maintainer -Package-Type: ddeb -Version: 3.26.0.60202-116~20.04 -Installed-Size: 304262 - -Package: rocsolver-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 3fc7e046426f28b44df45dd32f3ce3b1acc34e7c -Depends: rocsolver6.2.2 (= 3.26.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsolver-dbgsym6.2.2/rocsolver-dbgsym6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 34723520 -SHA256: 631b35f3ada72066c4e1b35612f4b2baa36e8ef2953def9d8e6900155d08c914 -SHA1: 655290872a8dfeb2c22b6943b8a032222f55aee8 -MD5sum: 561b06fe3f652840b18c28ff25cfcb3b -Description: debug symbols for rocsolver -Maintainer: RocSOLVER maintainer -Package-Type: ddeb -Version: 3.26.0.60202-116~20.04 -Installed-Size: 304262 +Version: 3.27.0.60301-48~20.04 +Installed-Size: 316110 Package: rocsolver-dev Architecture: amd64 -Depends: rocsolver (>= 3.26.0.60202) +Depends: rocsolver (>= 3.27.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocsolver-dev/rocsolver-dev_3.26.0.60202-116~20.04_amd64.deb -Size: 50976 -SHA256: b87ec77e4b8e1de1e97021b54bc6ed538eb2a54f1c6e61d2196fe67cf7b4c23f -SHA1: f023b4fcc49ba7270d522cefcc453456a867df93 -MD5sum: 38ad250ad8437391d04538ca90de3722 +Filename: pool/main/r/rocsolver-dev/rocsolver-dev_3.27.0.60301-48~20.04_amd64.deb +Size: 52014 +SHA256: 04f177e5c83b02d1fc4146cfe6dc0f5b009033a59fad2ef23760be5d297c1aec +SHA1: 0bd370d142cfb6370ce63f9bcc419d4c614d9286 +MD5sum: c6b5fc75fa4e5c1854750cf17cfc4166 Description: AMD ROCm SOLVER library Maintainer: RocSOLVER maintainer -Version: 3.26.0.60202-116~20.04 -Installed-Size: 1572 +Version: 3.27.0.60301-48~20.04 +Installed-Size: 1617 -Package: rocsolver-dev-rpath6.2.2 +Package: rocsolver-dev-rpath6.3.1 Architecture: amd64 -Depends: rocsolver-rpath6.2.2 (>= 3.26.0.60202) +Depends: rocsolver-rpath6.3.1 (>= 3.27.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocsolver-dev-rpath6.2.2/rocsolver-dev-rpath6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 51100 -SHA256: 5154b5c2a02e215ebf19643813075ae46f265fb4944bb0e8f1bf75cc8c009fae -SHA1: 294bde2dff84de779407ce62a53d195e05f73396 -MD5sum: c459125342c5011844bebd2d533e918b +Filename: pool/main/r/rocsolver-dev-rpath6.3.1/rocsolver-dev-rpath6.3.1_3.27.0.60301-48~20.04_amd64.deb +Size: 52188 +SHA256: 6667b3d9ca26a24c79741d9d64ee4d900da1518bb5d7a87824d5ffd7eafa1a59 +SHA1: 777a41d0cf695477f3e95359f5293ff32f59db7a +MD5sum: 86e0d35830a635fe05a1021c0021a492 Description: AMD ROCm SOLVER library Maintainer: RocSOLVER maintainer -Version: 3.26.0.60202-116~20.04 -Installed-Size: 1572 +Version: 3.27.0.60301-48~20.04 +Installed-Size: 1617 -Package: rocsolver-dev6.2.2 +Package: rocsolver-dev6.3.1 Architecture: amd64 -Depends: rocsolver6.2.2 (>= 3.26.0.60202) +Depends: rocsolver6.3.1 (>= 3.27.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocsolver-dev6.2.2/rocsolver-dev6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 51112 -SHA256: 92af3484de723db25da5a455f04a00ed52faddc7e35d9104ef17d3ebf4c1f793 -SHA1: bf5e75c4fc8107679bdaf36402952ecd88567b4a -MD5sum: f5b4b779eb4791024e46c273ccbb6a07 +Filename: pool/main/r/rocsolver-dev6.3.1/rocsolver-dev6.3.1_3.27.0.60301-48~20.04_amd64.deb +Size: 52164 +SHA256: fc27700773a7b705c25c789b7d37a8b474ae07726ca8e10a6b043a9177e4bcf4 +SHA1: 0e6f5b3a26842d4537132d545f01382cefb4565b +MD5sum: bf9e7adcacb56de2b827b20327730872 Description: AMD ROCm SOLVER library Maintainer: RocSOLVER maintainer -Version: 3.26.0.60202-116~20.04 -Installed-Size: 1572 +Version: 3.27.0.60301-48~20.04 +Installed-Size: 1617 -Package: rocsolver-rpath6.2.2 +Package: rocsolver-rpath6.3.1 Architecture: amd64 -Depends: rocblas-rpath6.2.2 (>= 4.2), rocsparse-rpath6.2.2 (>= 2.2), rocm-core-rpath6.2.2 +Depends: rocblas-rpath6.3.1 (>= 4.1), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocsolver-rpath6.2.2/rocsolver-rpath6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 251148860 -SHA256: a126c106fd083b6c017cc6533951900c80cd1f8928ad2b93ab602d21f5e2446f -SHA1: c83145277432ddc057c2ea0a29d983318e5a4ff5 -MD5sum: 8d9a6e21c7e73a811915d9df5c81c402 +Filename: pool/main/r/rocsolver-rpath6.3.1/rocsolver-rpath6.3.1_3.27.0.60301-48~20.04_amd64.deb +Size: 262391076 +SHA256: 94742e9c11b067dd963bb3f695d34981477fff73af23abf81a0579359749bb38 +SHA1: 9d7119ccaf24c780aeeb994a94f2a5b61c27d5ec +MD5sum: 9a8f82823d08a743280b42358715ba27 Description: AMD ROCm SOLVER library Maintainer: RocSOLVER maintainer -Recommends: rocsolver-dev-rpath6.2.2 (>=3.26.0.60202) -Version: 3.26.0.60202-116~20.04 -Installed-Size: 3383329 +Recommends: rocsparse-rpath6.3.1, rocsolver-dev-rpath6.3.1 (>=3.27.0.60301) +Version: 3.27.0.60301-48~20.04 +Installed-Size: 3379311 -Package: rocsolver6.2.2 +Package: rocsolver6.3.1 Architecture: amd64 -Depends: rocblas6.2.2 (>= 4.2), rocsparse6.2.2 (>= 2.2), rocm-core6.2.2 +Depends: rocblas6.3.1 (>= 4.1), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocsolver6.2.2/rocsolver6.2.2_3.26.0.60202-116~20.04_amd64.deb -Size: 251150368 -SHA256: 2092362b9e8a9d909a009159a759f94f30e6bf76e912ad1f7a91d39c2e2b5447 -SHA1: 174ba7c74d9d8eb4ce65fa099bd9f83f759e9ece -MD5sum: 7f6af9402e280ef625db61a841bf56ea +Filename: pool/main/r/rocsolver6.3.1/rocsolver6.3.1_3.27.0.60301-48~20.04_amd64.deb +Size: 262389060 +SHA256: 3fd6ee283310504afca17e4443752ae3c4b9bc644871d915c6d8bcdb36c38388 +SHA1: 5ed64f223b7ddfb79f83ebc5190c86a204d5bf15 +MD5sum: 6b6da5acd8e24acfc5163afd18087841 Description: AMD ROCm SOLVER library Maintainer: RocSOLVER maintainer -Recommends: rocsolver-dev6.2.2 (>=3.26.0.60202) -Version: 3.26.0.60202-116~20.04 -Installed-Size: 3383329 +Recommends: rocsparse6.3.1, rocsolver-dev6.3.1 (>=3.27.0.60301) +Version: 3.27.0.60301-48~20.04 +Installed-Size: 3379311 Package: rocsparse Architecture: amd64 Depends: hip-runtime-amd (>= 4.5.0), rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocsparse/rocsparse_3.2.0.60202-116~20.04_amd64.deb -Size: 172433726 -SHA256: a63f1daf1deea6d4c1856119034cba9cdc63c897dcfcaeec6f086ba81033eb4b -SHA1: f73b81830bbb41843b6ab7b8fe1b759d97507a64 -MD5sum: 65a2d9c0348bb32b0c6722b01497eded +Filename: pool/main/r/rocsparse/rocsparse_3.3.0.60301-48~20.04_amd64.deb +Size: 187009424 +SHA256: 920effa2b078222201c832557754ca79349705ec57470ef5acac033a5092d342 +SHA1: ebc74c57be001b534e1ff9a0f758fec48961b94f +MD5sum: 3b6f1d7de6a50a92388c76683e2b7b87 Description: Radeon Open Compute SPARSE library Maintainer: rocSPARSE Maintainer -Recommends: rocsparse-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 2809937 - -Package: rocsparse-asan -Architecture: amd64 -Depends: hip-runtime-amd-asan (>= 4.5.0), rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rocsparse-asan/rocsparse-asan_3.2.0.60202-116~20.04_amd64.deb -Size: 196496860 -SHA256: cad66b9d46b8327cec567f43a79da308f28a19d677bdc38b5af91df1a522b2d7 -SHA1: 3e4448e5185f46c84099799a0fad7e56632be4cb -MD5sum: 5ba21c0450111093bf4e6b27d89f3bde -Description: Radeon Open Compute SPARSE library -Maintainer: rocSPARSE Maintainer -Recommends: rocsparse-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3236868 - -Package: rocsparse-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 035a9ddb99045605f4185f7cc5631e7188eb9341 -Depends: rocsparse-asan (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsparse-asan-dbgsym/rocsparse-asan-dbgsym_3.2.0.60202-116~20.04_amd64.deb -Size: 40845960 -SHA256: e024766fb773b68a242bea77ae43ba93422c883e4b213f3ae578382f148bf4ac -SHA1: 28b593290861e6ede0f6b057dd1ae5c22b735943 -MD5sum: aa25fea199f6fdc068794c2e252fb03e -Description: debug symbols for rocsparse-asan -Maintainer: rocSPARSE Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 56488 - -Package: rocsparse-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 035a9ddb99045605f4185f7cc5631e7188eb9341 -Depends: rocsparse-asan-rpath6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsparse-asan-dbgsym-rpath6.2.2/rocsparse-asan-dbgsym-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 40838212 -SHA256: 7e79275f18f2101cc716066f893055dd9bfa0c8b13349ada3eee2c82fbfe9585 -SHA1: 6a9a0af58edbcfec5069092425ea2b10d6b87ddb -MD5sum: ce9e8cfa74959ef4c67ddad5b515e63a -Description: debug symbols for rocsparse-asan -Maintainer: rocSPARSE Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 56488 - -Package: rocsparse-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 035a9ddb99045605f4185f7cc5631e7188eb9341 -Depends: rocsparse-asan6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsparse-asan-dbgsym6.2.2/rocsparse-asan-dbgsym6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 40838220 -SHA256: 9b88c4fe6408b78f66c24c2e0653365818033ec344fce0e06425710fb1fdaea2 -SHA1: 9b5dc2b3b4bf2ade51a151a9345bcd5fd75982ac -MD5sum: d45e003ba5b311d5ce0e7b0bdf915e89 -Description: debug symbols for rocsparse-asan -Maintainer: rocSPARSE Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 56488 - -Package: rocsparse-asan-rpath6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan-rpath6.2.2 (>= 4.5.0), rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocsparse-asan-rpath6.2.2/rocsparse-asan-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 196494108 -SHA256: a4a4710e7cff249a682f3a45d8f92b95e03f9e4dfe8451697c0a3a9bb74dd350 -SHA1: 5e5d4db8f8dbbd14ccdb337288bc6be00c28888b -MD5sum: b2a13c095c9b9e7aad18c8770fce6ea0 -Description: Radeon Open Compute SPARSE library -Maintainer: rocSPARSE Maintainer -Recommends: rocsparse-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3236868 - -Package: rocsparse-asan6.2.2 -Architecture: amd64 -Depends: hip-runtime-amd-asan6.2.2 (>= 4.5.0), rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rocsparse-asan6.2.2/rocsparse-asan6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 196490584 -SHA256: 57dbc50a989c94968c5e28e3f81b4da53db08b9f49354beefacb3131dba0042d -SHA1: 524ce0081d1d463036743cd825bce24618150909 -MD5sum: ef95eed2fd2bfcc9b1cfdb7094ac9b7d -Description: Radeon Open Compute SPARSE library -Maintainer: rocSPARSE Maintainer -Recommends: rocsparse-asan-dev (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 3236868 +Recommends: rocsparse-dev (>=3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 2787561 Package: rocsparse-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: a12631a2023809a9d6fdb40004454d9390343722 -Depends: rocsparse (= 3.2.0.60202-116~20.04) +Build-Ids: b838de776ba4ea50cc87b22d907e3edf2f935891 +Depends: rocsparse (= 3.3.0.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rocsparse-dbgsym/rocsparse-dbgsym_3.2.0.60202-116~20.04_amd64.deb -Size: 16622428 -SHA256: bf02d32a5b8cea9b5729dab1a5e681fa02ce495e3e13ecef6f435183eb413468 -SHA1: faa533fc45206a4c74d1fe0826181e2750f55608 -MD5sum: a384b0e3ecda0795665979221d8866c6 +Filename: pool/main/r/rocsparse-dbgsym/rocsparse-dbgsym_3.3.0.60301-48~20.04_amd64.deb +Size: 16875714 +SHA256: b31bc1c59410a7789afd8fab3db67320961d2df42d5181756eff4411dac816e2 +SHA1: 39cdcedc1cfddb5f96514f17974dfd0b4347c331 +MD5sum: f1e0b6679892ea810a665c31fe519bc6 Description: debug symbols for rocsparse Maintainer: rocSPARSE Maintainer Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 135539 - -Package: rocsparse-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: a12631a2023809a9d6fdb40004454d9390343722 -Depends: rocsparse-rpath6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsparse-dbgsym-rpath6.2.2/rocsparse-dbgsym-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 16632584 -SHA256: 8b9669fc9293e6ad7d01a7081eb987863ea75bbb69f2a3ad90d3d71802ed53f7 -SHA1: c45289eb3dcc8ccbdc5846178e75e981873680fb -MD5sum: 038a1531666b9560ef9ad786d9253b58 -Description: debug symbols for rocsparse -Maintainer: rocSPARSE Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 135539 - -Package: rocsparse-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: a12631a2023809a9d6fdb40004454d9390343722 -Depends: rocsparse6.2.2 (= 3.2.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rocsparse-dbgsym6.2.2/rocsparse-dbgsym6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 16624956 -SHA256: 142c405aa442021b5e68d7a129439a6751694a373474837ac1b010924ddedcec -SHA1: d4bed365e4be6fc298efb7ff919044580a69e8a8 -MD5sum: 7af719c3bfcbb7d7af5959021852afce -Description: debug symbols for rocsparse -Maintainer: rocSPARSE Maintainer -Package-Type: ddeb -Version: 3.2.0.60202-116~20.04 -Installed-Size: 135539 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 137179 Package: rocsparse-dev Architecture: amd64 -Depends: rocsparse (>= 3.2.0.60202) +Depends: rocsparse (>= 3.3.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocsparse-dev/rocsparse-dev_3.2.0.60202-116~20.04_amd64.deb -Size: 92920 -SHA256: ae2c5ab73f7aaf5bb1b7817a785d6cc831861f37ae0518002881a4bb63ce9376 -SHA1: 778c5613588e76116b86eb8bbcef846f43eddfd9 -MD5sum: 1f5ba466dad6bf6d0cd3caf4871ce779 +Filename: pool/main/r/rocsparse-dev/rocsparse-dev_3.3.0.60301-48~20.04_amd64.deb +Size: 95808 +SHA256: b7ef18731d0c37d49e7fd70d0f7b151e2d76932180b4683711eab38938a6b6df +SHA1: 2599e19a578f441da39bcb267bec3a0eac1aa8cf +MD5sum: a5eb9eaf517f54b3f715228f6ac3a4fe Description: Radeon Open Compute SPARSE library Maintainer: rocSPARSE Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 1932 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1965 -Package: rocsparse-dev-rpath6.2.2 +Package: rocsparse-dev-rpath6.3.1 Architecture: amd64 -Depends: rocsparse-rpath6.2.2 (>= 3.2.0.60202) +Depends: rocsparse-rpath6.3.1 (>= 3.3.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocsparse-dev-rpath6.2.2/rocsparse-dev-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 92692 -SHA256: beee65ca66843b710ccb2990e5f3b9ac4061e8b725bf603092d76c2edf2db38e -SHA1: f3ed5f5c156617293fcbbe4eb419680a9ca30092 -MD5sum: d1c87c576c65bec5594adac0c60e9fd5 +Filename: pool/main/r/rocsparse-dev-rpath6.3.1/rocsparse-dev-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 95592 +SHA256: d89b8bee019b507f4c6229ac9c4b4444ea5088d8f3c2954f95433fde9098d2a5 +SHA1: 5e00b059d6cc104d324941359645e2e05a40b3d3 +MD5sum: 73a62384e11d6643665065cf8007233d Description: Radeon Open Compute SPARSE library Maintainer: rocSPARSE Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 1932 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1965 -Package: rocsparse-dev6.2.2 +Package: rocsparse-dev6.3.1 Architecture: amd64 -Depends: rocsparse6.2.2 (>= 3.2.0.60202) +Depends: rocsparse6.3.1 (>= 3.3.0.60301) Priority: optional Section: devel -Filename: pool/main/r/rocsparse-dev6.2.2/rocsparse-dev6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 92664 -SHA256: f8fe9d6efbe72e5aca22820ac14d545210dbbdf26579a87f65bc1107001dab28 -SHA1: 461fe428772ea2bb55779c7dd8df88ac73f8d77b -MD5sum: 6fbb71a0dcd1209d2301155becff2bea +Filename: pool/main/r/rocsparse-dev6.3.1/rocsparse-dev6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 95632 +SHA256: ca11f08705f9fe5b2583a9f7a41ea5b81de04cc5507bdee64b93fabee85ad436 +SHA1: e41a55221477c3d8105dfc5d59a478e156e3360a +MD5sum: 837855a0a9ec462f3953bb1fb7d7da0e Description: Radeon Open Compute SPARSE library Maintainer: rocSPARSE Maintainer -Version: 3.2.0.60202-116~20.04 -Installed-Size: 1932 +Version: 3.3.0.60301-48~20.04 +Installed-Size: 1965 -Package: rocsparse-rpath6.2.2 +Package: rocsparse-rpath6.3.1 Architecture: amd64 -Depends: hip-runtime-amd-rpath6.2.2 (>= 4.5.0), rocm-core-rpath6.2.2 +Depends: hip-runtime-amd-rpath6.3.1 (>= 4.5.0), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocsparse-rpath6.2.2/rocsparse-rpath6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 172432296 -SHA256: a8ba87c6a012bb077e790e58e5395f0da368104796acb914851de6aff076b6bd -SHA1: f68a924448a41980ecf8919bc8ba4a9a2a262a66 -MD5sum: f4ac2a6b70486dc22d25410066da169a +Filename: pool/main/r/rocsparse-rpath6.3.1/rocsparse-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 187007280 +SHA256: 806a1bb5ee4c03f59ef56636c4efad0f398e5c1f932fb48d0bd722a542cc0bdc +SHA1: fd6532bc3cab7526d3950ac98f024887e38c493a +MD5sum: f5a521a85984bddadac6be0e05c60007 Description: Radeon Open Compute SPARSE library Maintainer: rocSPARSE Maintainer -Recommends: rocsparse-dev-rpath6.2.2 (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 2809937 +Recommends: rocsparse-dev-rpath6.3.1 (>=3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 2787561 -Package: rocsparse6.2.2 +Package: rocsparse6.3.1 Architecture: amd64 -Depends: hip-runtime-amd6.2.2 (>= 4.5.0), rocm-core6.2.2 +Depends: hip-runtime-amd6.3.1 (>= 4.5.0), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocsparse6.2.2/rocsparse6.2.2_3.2.0.60202-116~20.04_amd64.deb -Size: 172433900 -SHA256: 2ac61174dae9e5b7c5196a08eb1a88a7cbda457ac8375927dda1eba5967bb6c2 -SHA1: e941fdffda51fb93398a80621a619d9b1094e134 -MD5sum: 893d46572b4be54fd22cae0a770bf2ab +Filename: pool/main/r/rocsparse6.3.1/rocsparse6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 187008172 +SHA256: 70fa3db9638ea70044aab1ff8b00c0e0eeedc949b57cb0dcd51a057d5e5ac843 +SHA1: 82cc6ca757ae88e4385dd4650759ef0ec8e98587 +MD5sum: 57d6d1b788ad336f99afdc714f79531e Description: Radeon Open Compute SPARSE library Maintainer: rocSPARSE Maintainer -Recommends: rocsparse-dev6.2.2 (>=3.2.0.60202) -Version: 3.2.0.60202-116~20.04 -Installed-Size: 2809937 +Recommends: rocsparse-dev6.3.1 (>=3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 2787561 Package: rocthrust-dev Architecture: amd64 @@ -10726,651 +6214,441 @@ Conflicts: hip-thrust, thrust Depends: rocprim-dev (>= 2.10.1), rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocthrust-dev/rocthrust-dev_3.1.0.60202-116~20.04_amd64.deb -Size: 416506 -SHA256: af3b9991279d516c8b472f37a1fa59507761c0c3dd080830e5981376112e7457 -SHA1: 01deb9176659bd58502487616f8cf6084047cdd9 -MD5sum: 257d0eb6ef83994b0ab7c3f758af05bc +Filename: pool/main/r/rocthrust-dev/rocthrust-dev_3.3.0.60301-48~20.04_amd64.deb +Size: 420116 +SHA256: a3b702ceabae184867a83ee1907147e7905dae6c885b520cf6dfc975dbfc7066 +SHA1: 47a6a29f6c1e4dba827cc442a90a8b81e896fbcd +MD5sum: 641b053c2bb28a79facdd76d6c59b809 Description: Radeon Open Compute Thrust library Maintainer: rocthrust-maintainer@amd.com -Provides: hipstdpar, CPACK_DEBIAN_PACKAGE_PROVIDES, rocthrust (= 3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 5630 +Provides: hipstdpar, rocthrust (= 3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 5691 -Package: rocthrust-dev-rpath6.2.2 +Package: rocthrust-dev-rpath6.3.1 Architecture: amd64 -Conflicts: hip-thrust-rpath6.2.2, thrust-rpath6.2.2 -Depends: rocprim-dev-rpath6.2.2 (>= 2.10.1), rocm-core-rpath6.2.2 +Conflicts: hip-thrust-rpath6.3.1, thrust-rpath6.3.1 +Depends: rocprim-dev-rpath6.3.1 (>= 2.10.1), rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocthrust-dev-rpath6.2.2/rocthrust-dev-rpath6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 412960 -SHA256: 203203a6ade0a843a5accf00a232f03d96ba670fc567a0de02cd468036bf7fd6 -SHA1: a36f29626b32f55132b839e723845aad31cb9315 -MD5sum: 58e66f028937ffae98243e05434f43f5 +Filename: pool/main/r/rocthrust-dev-rpath6.3.1/rocthrust-dev-rpath6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 416700 +SHA256: 4f82e0149b77ed466018f23751a6feab8881a25348bf4395eda0da46e0600a8e +SHA1: 818f20f362db1eb7bc946758cd767db7b70df488 +MD5sum: fdf93dc26e877fa892f1cf1e70baead8 Description: Radeon Open Compute Thrust library Maintainer: rocthrust-maintainer@amd.com -Provides: hipstdpar, CPACK_DEBIAN_PACKAGE_PROVIDES, rocthrust-rpath6.2.2 (= 3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 5630 +Provides: hipstdpar, rocthrust-rpath6.3.1 (= 3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 5691 -Package: rocthrust-dev6.2.2 +Package: rocthrust-dev6.3.1 Architecture: amd64 -Conflicts: hip-thrust6.2.2, thrust6.2.2 -Depends: rocprim-dev6.2.2 (>= 2.10.1), rocm-core6.2.2 +Conflicts: hip-thrust6.3.1, thrust6.3.1 +Depends: rocprim-dev6.3.1 (>= 2.10.1), rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocthrust-dev6.2.2/rocthrust-dev6.2.2_3.1.0.60202-116~20.04_amd64.deb -Size: 413000 -SHA256: efb48ddc326ce104f07881d350764a4627c95bddbf7cbc565918eb24626e8513 -SHA1: d513d1a21e94bf058d0f2dd0b6749088f64bc43b -MD5sum: e9324b11362bbde9ab1076741ee9fdc8 +Filename: pool/main/r/rocthrust-dev6.3.1/rocthrust-dev6.3.1_3.3.0.60301-48~20.04_amd64.deb +Size: 416560 +SHA256: 3c54bc7a3b75bc5135e25352321ad8f47a97e3e790490d683dafebda9e975568 +SHA1: 2374361364cc1b948bc5344682ab656378d50c57 +MD5sum: f381122cd7e801ebad73ab58ead34473 Description: Radeon Open Compute Thrust library Maintainer: rocthrust-maintainer@amd.com -Provides: hipstdpar, CPACK_DEBIAN_PACKAGE_PROVIDES, rocthrust6.2.2 (= 3.1.0.60202) -Version: 3.1.0.60202-116~20.04 -Installed-Size: 5630 +Provides: hipstdpar, rocthrust6.3.1 (= 3.3.0.60301) +Version: 3.3.0.60301-48~20.04 +Installed-Size: 5691 Package: roctracer Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/r/roctracer/roctracer_4.1.60202.60202-116~20.04_amd64.deb -Size: 451964 -SHA256: c734fc2a76b2faf70dede04730d18feb4ddcf2ff445a058c921f8dc44f42816d -SHA1: fe3d6e4e2535b20fbd748a45ca462ee4cd879556 -MD5sum: ccc07249386d11679f7a5008ecb40cdc +Filename: pool/main/r/roctracer/roctracer_4.1.60301.60301-48~20.04_amd64.deb +Size: 453186 +SHA256: 525ae3341ea239588d1abeb95c71908631675278251a10391e00ecc8ca5fac53 +SHA1: 4ca37eef6974de701fd4f674955e0ada5679d52f +MD5sum: f4c99610fa1def5c8cacc0d4ecc69e45 Description: AMD ROCTRACER library Dynamic libraries for the ROCtracer Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 1481 - -Package: roctracer-asan -Architecture: amd64 -Depends: rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/roctracer-asan/roctracer-asan_4.1.60202.60202-116~20.04_amd64.deb -Size: 565572 -SHA256: 0780b08a387207b4f6d0e1b064a87aaabc675deb04b9981118304e01d5ada157 -SHA1: 07b87d7c4fbe35e0855f4073b40a796ab0380398 -MD5sum: 15f620a1b0eda6b69c41563267ff2263 -Description: AMD ROCTRACER library - ASAN libraries for the ROCtracer -Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 3119 - -Package: roctracer-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e5a6abf5ebf60cb096ab49d958e2ff3c90507891 e2de70955d2536f021d0c74ceac7fcdc6995536d 401d7092c4878ead973952ddd05b6b1a63b9f97b 1994bbbe5b612a5d21e254ef88d74060cec02f0e df26785417eb3f19df4a14cb2ecda96fa7654e09 -Depends: roctracer-asan (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/roctracer-asan-dbgsym/roctracer-asan-dbgsym_4.1.60202.60202-116~20.04_amd64.deb -Size: 1741496 -SHA256: 41c9962754664fc2dfe6f73f1263ecc094c7395fbca9280549c4ea4f8bde2b8a -SHA1: 85079037425f1c114579cc4cbb266759cec4779b -MD5sum: 84837f4d9e8a0aed6d037d2cf0da4e68 -Description: debug symbols for roctracer-asan -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 5642 - -Package: roctracer-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e5a6abf5ebf60cb096ab49d958e2ff3c90507891 e2de70955d2536f021d0c74ceac7fcdc6995536d 401d7092c4878ead973952ddd05b6b1a63b9f97b 1994bbbe5b612a5d21e254ef88d74060cec02f0e df26785417eb3f19df4a14cb2ecda96fa7654e09 -Depends: roctracer-asan-rpath6.2.2 (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/roctracer-asan-dbgsym-rpath6.2.2/roctracer-asan-dbgsym-rpath6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 1108104 -SHA256: fd1b2b2400ac5cb3ca3bb6cb69f5dd680583b279016ed39f8ef519d39fe4696f -SHA1: 71a951249e2009e3a48a125f4d140445ab46c0fe -MD5sum: 8198a6f56cfe0a9a85070c44ae4d3592 -Description: debug symbols for roctracer-asan -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 5642 - -Package: roctracer-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: e5a6abf5ebf60cb096ab49d958e2ff3c90507891 e2de70955d2536f021d0c74ceac7fcdc6995536d 401d7092c4878ead973952ddd05b6b1a63b9f97b 1994bbbe5b612a5d21e254ef88d74060cec02f0e df26785417eb3f19df4a14cb2ecda96fa7654e09 -Depends: roctracer-asan6.2.2 (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/roctracer-asan-dbgsym6.2.2/roctracer-asan-dbgsym6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 1106948 -SHA256: 129f52f9e6e2d9feff343cce061b3954d0fec7cdb606e8bea4f307ec78a40a2b -SHA1: 745b3fda91bfd9a3da0f25482c7ddc0c5b6e3ea3 -MD5sum: a0004d7a45de1beeb65a08b21f326925 -Description: debug symbols for roctracer-asan -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 5642 - -Package: roctracer-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/roctracer-asan-rpath6.2.2/roctracer-asan-rpath6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 349108 -SHA256: c0098966b5de6f1420b3e41f5238b2bce2db324d6321f95c8834edc18e03073f -SHA1: 7d7127711ceaf3f42b78a882d545e9b92ebf95bf -MD5sum: 9038b4c3d014d13aba959619da768e1e -Description: AMD ROCTRACER library - ASAN libraries for the ROCtracer -Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 3119 - -Package: roctracer-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/roctracer-asan6.2.2/roctracer-asan6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 350636 -SHA256: 28634cd28693d6a88165020b9299779409e537ce2a6e8bd6f5b111c1f519302c -SHA1: 16fe88c1560f4508b71631651583838c7af25caa -MD5sum: 6aa721a43622f24aedebe8b733322b58 -Description: AMD ROCTRACER library - ASAN libraries for the ROCtracer -Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 3119 +Version: 4.1.60301.60301-48~20.04 +Installed-Size: 1477 Package: roctracer-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 2f74f94a8300d7c696b6fa7100a767e7126da1b4 c4a7b146ad8b0028be1a054c72e2b50260ca10ad b9dc3ec29e2bedfdbf3258c3947fc92fa6f0fc08 7b33698dc3ec7656b98a0c345ee10a4b3fe54b26 fd586d27f838047b200c63518efc9e0b345d1eb3 -Depends: roctracer (= 4.1.60202.60202-116~20.04) +Build-Ids: 8a4e098990887e8b94b90f191e243b80608380ca c4a7b146ad8b0028be1a054c72e2b50260ca10ad ad9431d8c450a9c47ec7355afebd0fa9d2711e6c 3fabf21ee0b522f5c0e7f034445637704ee58565 83c478158d620199b11d515ae4908129920d1ab7 +Depends: roctracer (= 4.1.60301.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/roctracer-dbgsym/roctracer-dbgsym_4.1.60202.60202-116~20.04_amd64.deb -Size: 2989458 -SHA256: 254c1a6fd4287d4e80185b8ba3f5d9f6a5149e6cff5ad8772cd9fcd25b7b9a1b -SHA1: 10c8495087fff5eddda459c4a060a156f9c678cf -MD5sum: dc1ca69b940fecb5a89fe4a81406bbc1 +Filename: pool/main/r/roctracer-dbgsym/roctracer-dbgsym_4.1.60301.60301-48~20.04_amd64.deb +Size: 2997238 +SHA256: c273e8975d64c35aaf25a90f850a75447394e698d8bbf501bec1031bb94cd7f4 +SHA1: de8d59c683cefbc94fa3618f857ed46fdef50585 +MD5sum: 476f08d0df9d2a0b5d0e3e5aff9ec14f Description: debug symbols for roctracer Maintainer: ROCm Profiler Support Package-Type: ddeb -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 11493 - -Package: roctracer-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 2f74f94a8300d7c696b6fa7100a767e7126da1b4 c4a7b146ad8b0028be1a054c72e2b50260ca10ad b9dc3ec29e2bedfdbf3258c3947fc92fa6f0fc08 7b33698dc3ec7656b98a0c345ee10a4b3fe54b26 fd586d27f838047b200c63518efc9e0b345d1eb3 -Depends: roctracer-rpath6.2.2 (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/roctracer-dbgsym-rpath6.2.2/roctracer-dbgsym-rpath6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 1983536 -SHA256: 923935f7b8f0d6abe2464a293dc202bee00ea2eec4ab37ad7edbfb70d492b5dd -SHA1: 6946f73ed33d4fad0d6c224552d01c890ebd111f -MD5sum: ca7e193bb5bd48c2e23e5c214273050b -Description: debug symbols for roctracer -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 11493 - -Package: roctracer-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 2f74f94a8300d7c696b6fa7100a767e7126da1b4 c4a7b146ad8b0028be1a054c72e2b50260ca10ad b9dc3ec29e2bedfdbf3258c3947fc92fa6f0fc08 7b33698dc3ec7656b98a0c345ee10a4b3fe54b26 fd586d27f838047b200c63518efc9e0b345d1eb3 -Depends: roctracer6.2.2 (= 4.1.60202.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/roctracer-dbgsym6.2.2/roctracer-dbgsym6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 1985452 -SHA256: 2870247d5fc39fd2280cb069458a702cdd9bacd56bc8593480506d25d403c06d -SHA1: 67b533532112ac7fdd7df025e167ef68f236a6fb -MD5sum: 3a85d4f4e65628c70d9190d3156547a9 -Description: debug symbols for roctracer -Maintainer: ROCm Profiler Support -Package-Type: ddeb -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 11493 +Version: 4.1.60301.60301-48~20.04 +Installed-Size: 11524 Package: roctracer-dev Architecture: amd64 -Depends: roctracer, rocm-core +Depends: roctracer, hsa-rocr-dev, rocm-core Priority: optional Section: devel -Filename: pool/main/r/roctracer-dev/roctracer-dev_4.1.60202.60202-116~20.04_amd64.deb -Size: 454194 -SHA256: 8afacf8c7a7aa2ca7c01af426b1aa46b445b33b8a88f7d5542256f7f15856451 -SHA1: 9e53df34152c3ff1c00c7284683fa5b4a226c1c9 -MD5sum: 456c29ae298a50b42f404a277f2e2790 +Filename: pool/main/r/roctracer-dev/roctracer-dev_4.1.60301.60301-48~20.04_amd64.deb +Size: 455098 +SHA256: 6221ba1226998f0e4e311d7e0d89e92c13a4eea1244a5e038a4f6b3d7915a3ff +SHA1: 2596cb933ee4baaacbaf7a9dcf0bcc5dbe796944 +MD5sum: 43edb9944d6437b2c4ced46e908b3922 Description: AMD ROCTRACER library Header files and documentation for ROCtracer Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 1447 +Version: 4.1.60301.60301-48~20.04 +Installed-Size: 1456 -Package: roctracer-dev-rpath6.2.2 +Package: roctracer-dev-rpath6.3.1 Architecture: amd64 -Depends: roctracer-rpath6.2.2, rocm-core-rpath6.2.2 +Depends: roctracer-rpath6.3.1, hsa-rocr-dev-rpath6.3.1, rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/roctracer-dev-rpath6.2.2/roctracer-dev-rpath6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 395396 -SHA256: 2e4f47fb5d8bd959d401ef424b9d3899ce01dfa4355e9b416cff60dae2f8809d -SHA1: cb25b954c2e7ce325de5df48df1ccd6677d8dba5 -MD5sum: 88b76bd98245b763163a22cf11a4c07b +Filename: pool/main/r/roctracer-dev-rpath6.3.1/roctracer-dev-rpath6.3.1_4.1.60301.60301-48~20.04_amd64.deb +Size: 395988 +SHA256: f7b89f3e22cc8ba441a80400c05305bcb002bd72260f33350eee820959cb08db +SHA1: cd49cbe48570dbdaf93f2e723b03ccc4697c3df3 +MD5sum: 7d227033bdf42d8ba5af4564df1cf417 Description: AMD ROCTRACER library Header files and documentation for ROCtracer Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 1447 +Version: 4.1.60301.60301-48~20.04 +Installed-Size: 1456 -Package: roctracer-dev6.2.2 +Package: roctracer-dev6.3.1 Architecture: amd64 -Depends: roctracer6.2.2, rocm-core6.2.2 +Depends: roctracer6.3.1, hsa-rocr-dev6.3.1, rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/roctracer-dev6.2.2/roctracer-dev6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 395400 -SHA256: e94f42477774969e835cf77507fb954d85f984d52e7d1dbe7085094679025f44 -SHA1: f684da54336dd3983657834636ec45a308ee90e9 -MD5sum: fbc260c9f5b914933a84f77f02ea0c3e +Filename: pool/main/r/roctracer-dev6.3.1/roctracer-dev6.3.1_4.1.60301.60301-48~20.04_amd64.deb +Size: 395968 +SHA256: 5b71fb695dd2f32dfe066609269c06fac12bb94b64ae712558d9e7da06f0f49d +SHA1: c7d152ae034d9e5b6d5944e4956b5e4a499ceced +MD5sum: 2dc50c6da9df9b8cbe57b8b7c3dea1f9 Description: AMD ROCTRACER library Header files and documentation for ROCtracer Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 1447 +Version: 4.1.60301.60301-48~20.04 +Installed-Size: 1456 -Package: roctracer-rpath6.2.2 +Package: roctracer-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/roctracer-rpath6.2.2/roctracer-rpath6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 262204 -SHA256: cde35dffe5da36d278c500578d7d8048cb6a76010a7f58acfa7d0918f763a3e5 -SHA1: 757d0824a5bc8a6c89d9c58fbef1fab468545dc9 -MD5sum: 2abec0da227f42c46c6a9b828f64b29c +Filename: pool/main/r/roctracer-rpath6.3.1/roctracer-rpath6.3.1_4.1.60301.60301-48~20.04_amd64.deb +Size: 262852 +SHA256: e1a597761d1408445e8137234bef2d8dbe5228ed79930330f8da6db980baac24 +SHA1: f99d3ee931480049d0077f8d0f1dbb9e21d2a416 +MD5sum: cbcaadb6c285d3a1e122fa5011115f1e Description: AMD ROCTRACER library Dynamic libraries for the ROCtracer Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 1481 +Version: 4.1.60301.60301-48~20.04 +Installed-Size: 1477 -Package: roctracer6.2.2 +Package: roctracer6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/roctracer6.2.2/roctracer6.2.2_4.1.60202.60202-116~20.04_amd64.deb -Size: 262244 -SHA256: b98f1dd4a9044ba3f969d9289d0bb1f05d19d337b96060d3d37e55d91fbe6085 -SHA1: bee50fb6da22dfc4cdb25702bc4e7fbf7d25da64 -MD5sum: d5d3524b43a2b219f31ab1b41a742758 +Filename: pool/main/r/roctracer6.3.1/roctracer6.3.1_4.1.60301.60301-48~20.04_amd64.deb +Size: 262584 +SHA256: 14f5fdae1d69300d1b9c3751c1b9fbe545775ae2354a1f84ab8edfce6517f21f +SHA1: 45ed8c6ae4e4b136489c8609ef0bbc2f9d4936c2 +MD5sum: a9571826e7dd65a58975ad0cf3d7c41e Description: AMD ROCTRACER library Dynamic libraries for the ROCtracer Maintainer: ROCm Profiler Support -Version: 4.1.60202.60202-116~20.04 -Installed-Size: 1481 +Version: 4.1.60301.60301-48~20.04 +Installed-Size: 1477 Package: rocwmma-dev Architecture: amd64 Depends: rocm-core Priority: optional Section: devel -Filename: pool/main/r/rocwmma-dev/rocwmma-dev_1.5.0.60202-116~20.04_amd64.deb -Size: 71886 -SHA256: 63b82cd2e81506e2848a488e68681b06aec899457d6d668ec5942ad1b777a006 -SHA1: 6eb21c0f66be1fb32f72a34b0a66567edb727402 -MD5sum: 99917bdf5b79b41ac0d366d82424d210 +Filename: pool/main/r/rocwmma-dev/rocwmma-dev_1.6.0.60301-48~20.04_amd64.deb +Size: 70246 +SHA256: 1e8e5c4a148136476bc74581d47ad071ac5eeccb139b2d99dba8f66f7efa437b +SHA1: 6bc985197759c5e5c2fd1f1829bc4828db391aa9 +MD5sum: bdb9814106d955bcc6a13763d626c25d Description: AMD C++ library for facilitating GEMM, or GEMM-like 2D matrix multiplications on GPU leveraging MFMA instructions executing on matrix cores. Maintainer: rocWMMA Maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, rocwmma (= 1.5.0.60202) -Version: 1.5.0.60202-116~20.04 -Installed-Size: 817 +Provides: rocwmma (= 1.6.0.60301) +Version: 1.6.0.60301-48~20.04 +Installed-Size: 828 -Package: rocwmma-dev-rpath6.2.2 +Package: rocwmma-dev-rpath6.3.1 Architecture: amd64 -Depends: rocm-core-rpath6.2.2 +Depends: rocm-core-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocwmma-dev-rpath6.2.2/rocwmma-dev-rpath6.2.2_1.5.0.60202-116~20.04_amd64.deb -Size: 71840 -SHA256: 392528f4b9df27f14d6f184cb71e524eec9b42f555551868990c47bf4624baad -SHA1: d080141c1d8c13c11313ad621052aeb13a59e2ca -MD5sum: e42765bfbf3626d439b997ed385c6fc3 +Filename: pool/main/r/rocwmma-dev-rpath6.3.1/rocwmma-dev-rpath6.3.1_1.6.0.60301-48~20.04_amd64.deb +Size: 70232 +SHA256: 858266eceb223e0decae9a1526fdcd474a489ca1af686591b2635a5c57d258f4 +SHA1: a484e917ba325abb73348e09a8005d9b084c1ee7 +MD5sum: 7539e5bcd293a6340fa4efd6c6d70c95 Description: AMD C++ library for facilitating GEMM, or GEMM-like 2D matrix multiplications on GPU leveraging MFMA instructions executing on matrix cores. Maintainer: rocWMMA Maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, rocwmma-rpath6.2.2 (= 1.5.0.60202) -Version: 1.5.0.60202-116~20.04 -Installed-Size: 817 +Provides: rocwmma-rpath6.3.1 (= 1.6.0.60301) +Version: 1.6.0.60301-48~20.04 +Installed-Size: 828 -Package: rocwmma-dev6.2.2 +Package: rocwmma-dev6.3.1 Architecture: amd64 -Depends: rocm-core6.2.2 +Depends: rocm-core6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rocwmma-dev6.2.2/rocwmma-dev6.2.2_1.5.0.60202-116~20.04_amd64.deb -Size: 71792 -SHA256: cbf83dfc3afde3a42495d7b3ec42826e296f1c396e7a72b34db490a2153a845e -SHA1: 122db691db6e870d48a8ebfa033fc9a1a9c759be -MD5sum: 2035b3dfebe770e50dcc23931a35e824 +Filename: pool/main/r/rocwmma-dev6.3.1/rocwmma-dev6.3.1_1.6.0.60301-48~20.04_amd64.deb +Size: 70196 +SHA256: d934bdd553042272271ca852d5f67fc562bcd179afbe8ef40038e787c9fe4bdd +SHA1: dc65c3036b37ea3ce747c7af67d634dcb9fed462 +MD5sum: aff87c8cb96e5826f1472281fae3f0a1 Description: AMD C++ library for facilitating GEMM, or GEMM-like 2D matrix multiplications on GPU leveraging MFMA instructions executing on matrix cores. Maintainer: rocWMMA Maintainer -Provides: CPACK_DEBIAN_PACKAGE_PROVIDES, rocwmma6.2.2 (= 1.5.0.60202) -Version: 1.5.0.60202-116~20.04 -Installed-Size: 817 +Provides: rocwmma6.3.1 (= 1.6.0.60301) +Version: 1.6.0.60301-48~20.04 +Installed-Size: 828 Package: rpp Architecture: amd64 Depends: rocm-hip-runtime Priority: optional Section: devel -Filename: pool/main/r/rpp/rpp_1.8.0.60202-116~20.04_amd64.deb -Size: 81559734 -SHA256: 1dc244ed66d0f9aa299079f75397f22a3ed79f9aec1f57168d85aa480d4a5e2c -SHA1: b347b004c7e0f8b3777111413a815e57f438e121 -MD5sum: 7895bd20f24959e2b3bbde439bfc596b +Filename: pool/main/r/rpp/rpp_1.9.1.60301-48~20.04_amd64.deb +Size: 70164680 +SHA256: c8a0c970434e470300dc2bcef4aea75263ff72b23f38a5a700214e33a6906b48 +SHA1: 93a59b33c844258160b23ee9ddf501afabfb270d +MD5sum: d8bcd8d54e89bb002d2eab35b9dfa3ec Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP runtime package provides rpp library and license.txt Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 559581 - -Package: rpp-asan -Architecture: amd64 -Depends: rocm-core-asan -Priority: optional -Section: devel -Filename: pool/main/r/rpp-asan/rpp-asan_1.8.0.60202-116~20.04_amd64.deb -Size: 85408466 -SHA256: e649ba4fda4bb44e658d4df13d547c4587e3c8d51c42caf337ba8dfd23b32ea7 -SHA1: e01879527462f9e9bbfd0ccbac39681161666e3a -MD5sum: 97706dea0baa461f4bb4efe31dc912e3 -Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP ASAN package provides rpp ASAN libraries -Homepage: https://github.com/ROCm/rpp -Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 552016 - -Package: rpp-asan-dbgsym -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 35a40bcaeb6b91840e0ffadeefe9b74952a128d0 -Depends: rpp-asan (= 1.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rpp-asan-dbgsym/rpp-asan-dbgsym_1.8.0.60202-116~20.04_amd64.deb -Size: 8421756 -SHA256: cc6ad72e28a9d7f479ec894c68717971ff03224bf03f5589964c676d322b95e4 -SHA1: 63d2005f121ff22809911c38b2fadd7d1a95aa35 -MD5sum: 8cbb56048decf98dbda13139ea79d9c7 -Description: debug symbols for rpp-asan -Maintainer: mivisionx support -Package-Type: ddeb -Version: 1.8.0.60202-116~20.04 -Installed-Size: 9515 - -Package: rpp-asan-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 35a40bcaeb6b91840e0ffadeefe9b74952a128d0 -Depends: rpp-asan-rpath6.2.2 (= 1.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rpp-asan-dbgsym-rpath6.2.2/rpp-asan-dbgsym-rpath6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 8287260 -SHA256: 3cc4dcb90cb3bbe231c0173550132a3baabf298f09d53103f4e8abb97dea9e62 -SHA1: 85024ce87176975de80e985631f9f747df10d75c -MD5sum: 48a3ee952799231903b33fd3b829cbef -Description: debug symbols for rpp-asan -Maintainer: mivisionx support -Package-Type: ddeb -Version: 1.8.0.60202-116~20.04 -Installed-Size: 9515 - -Package: rpp-asan-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 35a40bcaeb6b91840e0ffadeefe9b74952a128d0 -Depends: rpp-asan6.2.2 (= 1.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rpp-asan-dbgsym6.2.2/rpp-asan-dbgsym6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 8287264 -SHA256: 62e480c373f6f08ca06e249073dac113ae36be9e113497f00862e91fd94972bb -SHA1: 1ab81a01998070ef8da40c1a6ecb08921612fa38 -MD5sum: 6dd2f39c3a8400e32323a6f9cf22922c -Description: debug symbols for rpp-asan -Maintainer: mivisionx support -Package-Type: ddeb -Version: 1.8.0.60202-116~20.04 -Installed-Size: 9515 - -Package: rpp-asan-rpath6.2.2 -Architecture: amd64 -Depends: rocm-core-asan-rpath6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rpp-asan-rpath6.2.2/rpp-asan-rpath6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 39588176 -SHA256: b1424138953e81f77a618f5740b40eed63e79c0e413cd42c85efaf2089ecc959 -SHA1: d0cf83e5a9461c68e2500399b562cfd458ef374b -MD5sum: 9107a71b4da99a34934db2a20318beba -Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP ASAN package provides rpp ASAN libraries -Homepage: https://github.com/ROCm/rpp -Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 552016 - -Package: rpp-asan6.2.2 -Architecture: amd64 -Depends: rocm-core-asan6.2.2 -Priority: optional -Section: devel -Filename: pool/main/r/rpp-asan6.2.2/rpp-asan6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 39586764 -SHA256: 4cb58f7d8889ffc3f68af90e3f527377af0ee51e922a8f9abbabba167c488a8d -SHA1: 2bb1264dfe3b3d6be51701ed071d97f22fdb1cb0 -MD5sum: 4f9ba9beeca9ea6d6ded49237b09b9c6 -Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP ASAN package provides rpp ASAN libraries -Homepage: https://github.com/ROCm/rpp -Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 552016 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 481826 Package: rpp-dbgsym Architecture: amd64 Auto-Built-Package: debug-symbols -Build-Ids: 9bf48693abcf0e13bfc6da824c40ab1e623e0e0b -Depends: rpp (= 1.8.0.60202-116~20.04) +Build-Ids: d9eed6db1a35973bc2f9ebad1f093d67fd1693ab +Depends: rpp (= 1.9.1.60301-48~20.04) Priority: optional Section: debug -Filename: pool/main/r/rpp-dbgsym/rpp-dbgsym_1.8.0.60202-116~20.04_amd64.deb -Size: 5520754 -SHA256: 7d9e0cec2f3f4ac24201cac5068348abc62b494b96a572b7a03f6550df0c403f -SHA1: 82c7a6b43d23e0a45f5f064b2899956db9070012 -MD5sum: 7b038af7ee7dc5e67b2b469d0e939fa8 +Filename: pool/main/r/rpp-dbgsym/rpp-dbgsym_1.9.1.60301-48~20.04_amd64.deb +Size: 5588826 +SHA256: 1d26ec1857a93cb404c4d62e2088a2dd85f8bf52f577ef1cfc1490e8aa1d6e89 +SHA1: 3d70dc3c9e21270d09f60d74e87786548d7a2ae0 +MD5sum: 4cd5aa2227fe368da20eac3a01046e1d Description: debug symbols for rpp Maintainer: mivisionx support Package-Type: ddeb -Version: 1.8.0.60202-116~20.04 -Installed-Size: 16203 - -Package: rpp-dbgsym-rpath6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 9bf48693abcf0e13bfc6da824c40ab1e623e0e0b -Depends: rpp-rpath6.2.2 (= 1.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rpp-dbgsym-rpath6.2.2/rpp-dbgsym-rpath6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 3495688 -SHA256: 64b7034c3f0f19346f9cf9e1affe31571a4fcf5739ed41e775190a0269f14a56 -SHA1: 0b16f8432ef7b4f7ffb2e16e4712a67e46164254 -MD5sum: ac05f3d7743df7f7060e8fc84c23790a -Description: debug symbols for rpp -Maintainer: mivisionx support -Package-Type: ddeb -Version: 1.8.0.60202-116~20.04 -Installed-Size: 16203 - -Package: rpp-dbgsym6.2.2 -Architecture: amd64 -Auto-Built-Package: debug-symbols -Build-Ids: 9bf48693abcf0e13bfc6da824c40ab1e623e0e0b -Depends: rpp6.2.2 (= 1.8.0.60202-116~20.04) -Priority: optional -Section: debug -Filename: pool/main/r/rpp-dbgsym6.2.2/rpp-dbgsym6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 3495796 -SHA256: 1dad9d5e21ea988369415dd89b27c4031ae75bb6091845035c78d7ebb155de90 -SHA1: 4806b512a0bc506e65295a37e4ebccbd68157fc4 -MD5sum: 4c52777502b355eb47c786b78ec6e693 -Description: debug symbols for rpp -Maintainer: mivisionx support -Package-Type: ddeb -Version: 1.8.0.60202-116~20.04 -Installed-Size: 16203 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 16390 Package: rpp-dev Architecture: amd64 Depends: rpp, rocm-hip-runtime-dev, half Priority: optional Section: devel -Filename: pool/main/r/rpp-dev/rpp-dev_1.8.0.60202-116~20.04_amd64.deb -Size: 47558 -SHA256: 1a68849342bd627af4b225b00be80e192bb3171ed1f67889943ec4ad7701309e -SHA1: 0af750239db44088ee2880a1c3be04cc002c09f8 -MD5sum: 2afaf7e794d209673226cad44a478505 +Filename: pool/main/r/rpp-dev/rpp-dev_1.9.1.60301-48~20.04_amd64.deb +Size: 48016 +SHA256: ec9bf3822c61b1c4c00d4f56602bbdf6cd88d493207294803f46c6173a3c3d9e +SHA1: c6e854c12c37f6edb985d5775106f9cf4eeb90f2 +MD5sum: 54667a771cc9712c8780a0b9350f121b Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP develop package provides rpp library, header files, and license.txt Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 626 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 633 -Package: rpp-dev-rpath6.2.2 +Package: rpp-dev-rpath6.3.1 Architecture: amd64 -Depends: rpp-rpath6.2.2, rocm-hip-runtime-dev-rpath6.2.2, half-rpath6.2.2 +Depends: rpp-rpath6.3.1, rocm-hip-runtime-dev-rpath6.3.1, half-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rpp-dev-rpath6.2.2/rpp-dev-rpath6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 34924 -SHA256: 67eeeff47df05b708b3b3461a217b0180a547272f274f1371a5c3850971e8afa -SHA1: 85cba24cda103f0930eac0835df7e366ca93f305 -MD5sum: c600c1f2d2d5acd8460417c813640913 +Filename: pool/main/r/rpp-dev-rpath6.3.1/rpp-dev-rpath6.3.1_1.9.1.60301-48~20.04_amd64.deb +Size: 35296 +SHA256: fbf2999d6c6c4cf6f48215ea5695f5e72a9ef3e4c259b2deccbc111c2d00aee6 +SHA1: f33c509a0e458295586a9e2ae53263d07bb69037 +MD5sum: da0b89fb0564f5245dd5b2c769993d91 Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP develop package provides rpp library, header files, and license.txt Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 626 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 633 -Package: rpp-dev6.2.2 +Package: rpp-dev6.3.1 Architecture: amd64 -Depends: rpp6.2.2, rocm-hip-runtime-dev6.2.2, half6.2.2 +Depends: rpp6.3.1, rocm-hip-runtime-dev6.3.1, half6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rpp-dev6.2.2/rpp-dev6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 34908 -SHA256: dd8469c0330f4fcdce16e23168af4f0848c32dee4b87eb0032f6c7c0fadeee9b -SHA1: 34266f034306576c84c58b5fa2efe640bf5960c3 -MD5sum: 1a4333d0ecbceca1f01ac20a588ba1d9 +Filename: pool/main/r/rpp-dev6.3.1/rpp-dev6.3.1_1.9.1.60301-48~20.04_amd64.deb +Size: 35300 +SHA256: 051e0dfdfffe9d6c7a1f8acb45245c4b7550d7fc2cdb36bff7e0bbcce0b2a24e +SHA1: 2977579eddd245805b50c7e900874d86ac7d7454 +MD5sum: 6e76a31d00bca7436b201c7f6b8229de Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP develop package provides rpp library, header files, and license.txt Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 626 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 633 -Package: rpp-rpath6.2.2 +Package: rpp-rpath6.3.1 Architecture: amd64 -Depends: rocm-hip-runtime-rpath6.2.2 +Depends: rocm-hip-runtime-rpath6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rpp-rpath6.2.2/rpp-rpath6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 24334016 -SHA256: 56fb6f27890b084b03105ed35c8a42ed8fb1b04ec981d6faae8b51826306d1c7 -SHA1: ef17c428834f840d6cb963a613d043fcb14c6250 -MD5sum: fde9b3133e8fb6d93d81e45606da2e5b +Filename: pool/main/r/rpp-rpath6.3.1/rpp-rpath6.3.1_1.9.1.60301-48~20.04_amd64.deb +Size: 23581128 +SHA256: be125736d47fa6ce2a6512aadfb131e75ca04e6994909272bacf6187f2f738e7 +SHA1: ee698d06b50cfaf51f56b9d03a88b96fcbe6dec8 +MD5sum: ebdf0d6027695ed9f278d256b1d6b0c6 Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP runtime package provides rpp library and license.txt Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 559581 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 481826 Package: rpp-test Architecture: amd64 Depends: rpp-dev, clang Priority: optional Section: devel -Filename: pool/main/r/rpp-test/rpp-test_1.8.0.60202-116~20.04_amd64.deb -Size: 36448216 -SHA256: 9d81f56ea128aaa26d7466e00858d3d7e290f70d47539205f26f9c9a8f0be1e8 -SHA1: 9719ade9097055bb71c9fbc8f90aa7b10a93804d -MD5sum: ac03f196e3362db70a64a0a72e032a66 +Filename: pool/main/r/rpp-test/rpp-test_1.9.1.60301-48~20.04_amd64.deb +Size: 36450646 +SHA256: 754893e694194a623185b1f77d481d3fe8449313eda1b7a8d20803834a7ba8d5 +SHA1: 1c54e8f48e539ff8fb529aac66cee4dbee10ab10 +MD5sum: 1600c74458c20d3908401d94ca67ff9e Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP test package provides rpp test suite Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 93869 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 94146 -Package: rpp-test-rpath6.2.2 +Package: rpp-test-rpath6.3.1 Architecture: amd64 -Depends: rpp-dev-rpath6.2.2, clang +Depends: rpp-dev-rpath6.3.1, clang Priority: optional Section: devel -Filename: pool/main/r/rpp-test-rpath6.2.2/rpp-test-rpath6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 29752380 -SHA256: 2c8b35671610c7b3d5649e8d9b8a37e74172e28c29dfda502dd3775ec838013f -SHA1: 770288853b991b0bc7a7f0969ec91286d595357a -MD5sum: 7188f8b0c6cc1dd56007d0210cb08a55 +Filename: pool/main/r/rpp-test-rpath6.3.1/rpp-test-rpath6.3.1_1.9.1.60301-48~20.04_amd64.deb +Size: 29757284 +SHA256: 89a2de1b3b69849f022fd6aee55668e44bf29001c9e3d4777efae853010c5a23 +SHA1: ba64eb45a5bbb7c4198ce3c7e1920ef945833fa8 +MD5sum: 0172a18b37d970cd5b90739a4d763316 Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP test package provides rpp test suite Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 93869 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 94146 -Package: rpp-test6.2.2 +Package: rpp-test6.3.1 Architecture: amd64 -Depends: rpp-dev6.2.2, clang +Depends: rpp-dev6.3.1, clang Priority: optional Section: devel -Filename: pool/main/r/rpp-test6.2.2/rpp-test6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 29747996 -SHA256: 5e4f11592a55e046c829d49b715baa55df5a9d4e416e0522893d0b1c7471aa74 -SHA1: 91d03c029554ef54a5a78db3e10ee01e249f19b2 -MD5sum: 3de6727c421fda74657f95633eed8a0e +Filename: pool/main/r/rpp-test6.3.1/rpp-test6.3.1_1.9.1.60301-48~20.04_amd64.deb +Size: 29754924 +SHA256: 1e0e2bd243f8b8bc5320e8759602450e887eeed4c88dfff02e207d0bcc68e634 +SHA1: 2a3378a8ef2f10ae57768131276580c64695aa66 +MD5sum: faa7c078d245eb0bfceccdce16c24723 Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP test package provides rpp test suite Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 93869 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 94146 -Package: rpp6.2.2 +Package: rpp6.3.1 Architecture: amd64 -Depends: rocm-hip-runtime6.2.2 +Depends: rocm-hip-runtime6.3.1 Priority: optional Section: devel -Filename: pool/main/r/rpp6.2.2/rpp6.2.2_1.8.0.60202-116~20.04_amd64.deb -Size: 24334500 -SHA256: dfa2a255fceb71b5ebd34d9e0e3e6e2572e8cdb37b0f36152fc1a0628d715e0a -SHA1: b1327226d0935d338f024d6e225504715ed57842 -MD5sum: 41a9fec99bee27b4ad211714b75ff1db +Filename: pool/main/r/rpp6.3.1/rpp6.3.1_1.9.1.60301-48~20.04_amd64.deb +Size: 23583120 +SHA256: f7edf66125793451eda6033b06d58bfec573e8df0ed39e8d9d00048775ead0cd +SHA1: 2253bd8dcb75a51bafcc2aa9a4cc4b8934682c7a +MD5sum: 863ac82ff834656192f6032d80e9c102 Description: ROCm Performance Primitives library is a comprehensive high performance computer vision library for AMD CPUs and GPUs with HOST/HIP/OpenCL back-ends. RPP runtime package provides rpp library and license.txt Homepage: https://github.com/ROCm/rpp Maintainer: mivisionx support -Version: 1.8.0.60202-116~20.04 -Installed-Size: 559581 +Version: 1.9.1.60301-48~20.04 +Installed-Size: 481826 + +Package: transferbench-dev +Architecture: amd64 +Depends: numactl, hsa-rocr, rocm-core +Priority: optional +Section: devel +Filename: pool/main/t/transferbench-dev/transferbench-dev_1.52.0.60301-48~20.04_amd64.deb +Size: 215600 +SHA256: a227f3c9dba6567a8768b679c28b4eceb65b0b113e95765243a935f6d1c97f2b +SHA1: 057c93a15b09ed8b7be3f3bd0192675f72190347 +MD5sum: 92fcbe0d300eae505bc830ac8a0bdc31 +Description: TransferBench package +Maintainer: RCCL Team +Provides: transferbench (= 1.52.0.60301) +Version: 1.52.0.60301-48~20.04 +Installed-Size: 4458 + +Package: transferbench-dev-dbgsym +Architecture: amd64 +Auto-Built-Package: debug-symbols +Build-Ids: 6cc82969fa3f2374fd053f3cc153a899b1ffbeb0 +Depends: transferbench-dev (= 1.52.0.60301-48~20.04) +Priority: optional +Section: debug +Filename: pool/main/t/transferbench-dev-dbgsym/transferbench-dev-dbgsym_1.52.0.60301-48~20.04_amd64.deb +Size: 417866 +SHA256: 40383d73b69ce89892971f8fd0b0fd70b37a32abbada80d548063dc979adffe6 +SHA1: e597c6fa7aed114af2009994c7edbbaf241a1e01 +MD5sum: 2d029a1221abff2dbe20d5ee01bc0e28 +Description: debug symbols for transferbench-dev +Maintainer: RCCL Team +Package-Type: ddeb +Version: 1.52.0.60301-48~20.04 +Installed-Size: 1880 + +Package: transferbench-dev-rpath6.3.1 +Architecture: amd64 +Depends: numactl, hsa-rocr-rpath6.3.1, rocm-core-rpath6.3.1 +Priority: optional +Section: devel +Filename: pool/main/t/transferbench-dev-rpath6.3.1/transferbench-dev-rpath6.3.1_1.52.0.60301-48~20.04_amd64.deb +Size: 216232 +SHA256: 736baadf1be4374e236fb76ea1f281ebc9d708686437cf47efd00c0435bff0a0 +SHA1: 24a7388046c06f85a19cd2e1f809317c30ff13de +MD5sum: 94a792b0541e5909bd82d44de72b1c4a +Description: TransferBench package +Maintainer: RCCL Team +Provides: transferbench-rpath6.3.1 (= 1.52.0.60301) +Version: 1.52.0.60301-48~20.04 +Installed-Size: 4458 + +Package: transferbench-dev6.3.1 +Architecture: amd64 +Depends: numactl, hsa-rocr6.3.1, rocm-core6.3.1 +Priority: optional +Section: devel +Filename: pool/main/t/transferbench-dev6.3.1/transferbench-dev6.3.1_1.52.0.60301-48~20.04_amd64.deb +Size: 215340 +SHA256: 76dce98dd039f44ae19e9d212f03d91fc7d24baa33354d2eb5cccb669047646a +SHA1: fa93c6b209639cdeb25ccecb05b755fee1b93290 +MD5sum: c8841b9389c16a5cdaebccdb88d18240 +Description: TransferBench package +Maintainer: RCCL Team +Provides: transferbench6.3.1 (= 1.52.0.60301) +Version: 1.52.0.60301-48~20.04 +Installed-Size: 4458 diff --git a/runtimes/rocm/rocm.bzl b/runtimes/rocm/rocm.bzl index bf49334..491f678 100644 --- a/runtimes/rocm/rocm.bzl +++ b/runtimes/rocm/rocm.bzl @@ -2,9 +2,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") load("//bazel:dpkg.bzl", "dpkg") load("//bazel:http_deb_archive.bzl", "http_deb_archive") -ROCM_VERSION = "6.2.2" +ROCM_VERSION = "6.3.1" BASE_URL = "https://repo.radeon.com/rocm/apt/{}".format(ROCM_VERSION) -STRIP_PREFIX = "opt/rocm-6.2.2" +STRIP_PREFIX = "opt/rocm-6.3.1" def pkg_kwargs(pkg): return dict( @@ -127,9 +127,17 @@ cc_import( ) bytecode_select( - name = "runfiles", + name = "bytecodes", bytecodes = glob(["lib/rocblas/library/*"]), enabled_gfx = "@libpjrt_rocm//:gfx", +) + +filegroup( + name = "runfiles", + srcs = [ + ":bytecodes", + "lib/rocblas/library/TensileManifest.txt", + ], visibility = ["@libpjrt_rocm//:__subpackages__"], ) """, @@ -148,6 +156,7 @@ cc_import( """, "hipblaslt": """\ load("@zml//bazel:cc_import.bzl", "cc_import") +load("@zml//runtimes/rocm:gfx.bzl", "bytecode_select") cc_import( name = "hipblaslt", shared_library = "lib/libhipblaslt.so.0", @@ -157,9 +166,6 @@ cc_import( }, visibility = ["@libpjrt_rocm//:__subpackages__"], ) -""", - "hipblaslt-dev": """\ -load("@zml//runtimes/rocm:gfx.bzl", "bytecode_select") bytecode_select( name = "bytecodes", @@ -173,8 +179,9 @@ bytecode_select( filegroup( name = "runfiles", srcs = [ - "lib/hipblaslt/library/hipblasltExtOpLibrary.dat", ":bytecodes", + "lib/hipblaslt/library/hipblasltExtOpLibrary.dat", + "lib/hipblaslt/library/TensileManifest.txt", ], visibility = ["@libpjrt_rocm//:__subpackages__"], ) diff --git a/runtimes/rocm/rocm.zig b/runtimes/rocm/rocm.zig index 399ed4b..1071078 100644 --- a/runtimes/rocm/rocm.zig +++ b/runtimes/rocm/rocm.zig @@ -1,7 +1,12 @@ const builtin = @import("builtin"); +const std = @import("std"); + const asynk = @import("async"); -const pjrt = @import("pjrt"); +const bazel_builtin = @import("bazel_builtin"); const c = @import("c"); +const pjrt = @import("pjrt"); +const runfiles = @import("runfiles"); +const stdx = @import("stdx"); pub fn isEnabled() bool { return @hasDecl(c, "ZML_RUNTIME_ROCM"); @@ -14,6 +19,44 @@ fn hasRocmDevices() bool { return true; } +fn setupRocmEnv() !void { + var arena = std.heap.ArenaAllocator.init(std.heap.c_allocator); + defer arena.deinit(); + + const paths = .{ + .{ "HIPBLASLT_EXT_OP_LIBRARY_PATH", "hipblaslt/lib/hipblaslt/library/hipblasltExtOpLibrary.dat", false }, + .{ "HIPBLASLT_TENSILE_LIBPATH", "hipblaslt/lib/hipblaslt/library/TensileManifest.txt", true }, + .{ "ROCBLAS_TENSILE_LIBPATH", "rocblas/lib/rocblas/library/TensileManifest.txt", true }, + .{ "ROCM_PATH", "libpjrt_rocm/sandbox", false }, + }; + + const r = blk: { + var r_ = try runfiles.Runfiles.create(.{ .allocator = arena.allocator() }) orelse { + stdx.debug.panic("Unable to find Runfiles directory", .{}); + }; + const source_repo = bazel_builtin.current_repository; + break :blk r_.withSourceRepo(source_repo); + }; + + inline for (paths) |path| { + const name = path[0]; + const rpath = path[1]; + const dirname = path[2]; + + var real_path = r.rlocationAlloc(arena.allocator(), rpath) catch null orelse { + stdx.debug.panic("Unable to find " ++ name ++ " in " ++ bazel_builtin.current_repository, .{}); + }; + + if (dirname) { + real_path = std.fs.path.dirname(real_path) orelse { + stdx.debug.panic("Unable to dirname on {s}", .{real_path}); + }; + } + + _ = c.setenv(name, try arena.allocator().dupeZ(u8, real_path), 1); + } +} + pub fn load() !*const pjrt.Api { if (comptime !isEnabled()) { return error.Unavailable; @@ -25,5 +68,7 @@ pub fn load() !*const pjrt.Api { return error.Unavailable; } + try setupRocmEnv(); + return try pjrt.Api.loadFrom("libpjrt_rocm.so"); } diff --git a/runtimes/rocm/zmlxrocm.cc b/runtimes/rocm/zmlxrocm.c similarity index 52% rename from runtimes/rocm/zmlxrocm.cc rename to runtimes/rocm/zmlxrocm.c index e69f75b..ca5df79 100644 --- a/runtimes/rocm/zmlxrocm.cc +++ b/runtimes/rocm/zmlxrocm.c @@ -1,39 +1,9 @@ #include #include #include +#include -#include -#include -#include - -#include "tools/cpp/runfiles/runfiles.h" - -static void setup_runfiles(int argc, char **argv) __attribute__((constructor)) -{ - using bazel::tools::cpp::runfiles::Runfiles; - auto runfiles = std::unique_ptr(Runfiles::Create(argv[0], BAZEL_CURRENT_REPOSITORY)); - - auto HIPBLASLT_EXT_OP_LIBRARY_PATH = - runfiles->Rlocation("hipblaslt-dev/lib/hipblaslt/library/hipblasltExtOpLibrary.dat"); - if (HIPBLASLT_EXT_OP_LIBRARY_PATH != "") - { - setenv("HIPBLASLT_EXT_OP_LIBRARY_PATH", HIPBLASLT_EXT_OP_LIBRARY_PATH.c_str(), 1); - } - - auto HIPBLASLT_TENSILE_LIBPATH = runfiles->Rlocation("hipblaslt-dev/lib/hipblaslt/library"); - if (HIPBLASLT_TENSILE_LIBPATH != "") - { - setenv("HIPBLASLT_TENSILE_LIBPATH", HIPBLASLT_TENSILE_LIBPATH.c_str(), 1); - } - - auto ROCBLAS_TENSILE_LIBPATH = runfiles->Rlocation("rocblas/lib/rocblas/library"); - setenv("ROCBLAS_TENSILE_LIBPATH", ROCBLAS_TENSILE_LIBPATH.c_str(), 1); - - auto ROCM_PATH = runfiles->Rlocation("libpjrt_rocm/sandbox"); - setenv("ROCM_PATH", ROCM_PATH.c_str(), 1); -} - -extern "C" void *zmlxrocm_dlopen(const char *filename, int flags) __attribute__((visibility("default"))) +void *zmlxrocm_dlopen(const char *filename, int flags) __attribute__((visibility("default"))) { if (filename != NULL) { diff --git a/third_party/modules/libxev/20241208.0-db6a52b/MODULE.bazel b/third_party/modules/libxev/20241208.0-db6a52b/MODULE.bazel new file mode 100644 index 0000000..ce556ab --- /dev/null +++ b/third_party/modules/libxev/20241208.0-db6a52b/MODULE.bazel @@ -0,0 +1,7 @@ +module( + name = "libxev", + version = "20241208.0-db6a52b", + compatibility_level = 1, +) + +bazel_dep(name = "rules_zig", version = "20240904.0-010da15") diff --git a/third_party/modules/libxev/20241208.0-db6a52b/overlay/BUILD.bazel b/third_party/modules/libxev/20241208.0-db6a52b/overlay/BUILD.bazel new file mode 100644 index 0000000..7c0c4ce --- /dev/null +++ b/third_party/modules/libxev/20241208.0-db6a52b/overlay/BUILD.bazel @@ -0,0 +1,13 @@ +load("@rules_zig//zig:defs.bzl", "zig_library") + +zig_library( + name = "xev", + srcs = glob([ + "src/*.zig", + "src/backend/*.zig", + "src/linux/*.zig", + "src/watcher/*.zig", + ]), + main = "main2.zig", + visibility = ["//visibility:public"], +) diff --git a/third_party/modules/libxev/20241208.0-db6a52b/overlay/MODULE.bazel b/third_party/modules/libxev/20241208.0-db6a52b/overlay/MODULE.bazel new file mode 100644 index 0000000..ce556ab --- /dev/null +++ b/third_party/modules/libxev/20241208.0-db6a52b/overlay/MODULE.bazel @@ -0,0 +1,7 @@ +module( + name = "libxev", + version = "20241208.0-db6a52b", + compatibility_level = 1, +) + +bazel_dep(name = "rules_zig", version = "20240904.0-010da15") diff --git a/third_party/modules/libxev/20241208.0-db6a52b/overlay/main2.zig b/third_party/modules/libxev/20241208.0-db6a52b/overlay/main2.zig new file mode 100644 index 0000000..4166925 --- /dev/null +++ b/third_party/modules/libxev/20241208.0-db6a52b/overlay/main2.zig @@ -0,0 +1,22 @@ +const builtin = @import("builtin"); +const root = @import("root"); + +const main = @import("src/main.zig"); + +pub const ThreadPool = main.ThreadPool; +pub const stream = main.stream; + +pub const Options = struct { + linux_backend: main.Backend = .epoll, +}; + +pub const options: Options = if (@hasDecl(root, "xev_options")) root.xev_options else .{}; + +const default: main.Backend = switch (builtin.os.tag) { + .ios, .macos => .kqueue, + .linux => options.linux_backend, + .wasi => .wasi_poll, + .windows => .iocp, + else => @compileError("Unsupported OS"), +}; +pub usingnamespace default.Api(); diff --git a/third_party/modules/libxev/20241208.0-db6a52b/patches/128.patch b/third_party/modules/libxev/20241208.0-db6a52b/patches/128.patch new file mode 100644 index 0000000..a869595 --- /dev/null +++ b/third_party/modules/libxev/20241208.0-db6a52b/patches/128.patch @@ -0,0 +1,159 @@ +From 0d1c2f8258072148459d3114b9ccaf43c02e0958 Mon Sep 17 00:00:00 2001 +From: Steeve Morin +Date: Tue, 19 Nov 2024 16:14:14 +0100 +Subject: [PATCH 1/2] backend/epoll: implement eventfd wakeup notification + +Tries to mimic what happens in backend/kqueue. + +Closes #4 +--- + src/backend/epoll.zig | 42 ++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 42 insertions(+) + +diff --git a/src/backend/epoll.zig b/src/backend/epoll.zig +index ae4ec7d..f44d326 100644 +--- a/src/backend/epoll.zig ++++ b/src/backend/epoll.zig +@@ -21,6 +21,12 @@ pub const Loop = struct { + + fd: posix.fd_t, + ++ /// The eventfd that this epoll queue always has a filter for. Writing ++ /// an empty message to this eventfd can be used to wake up the loop ++ /// at any time. Waking up the loop via this eventfd won't trigger any ++ /// particular completion, it just forces tick to cycle. ++ eventfd: xev.Async, ++ + /// The number of active completions. This DOES NOT include completions that + /// are queued in the submissions queue. + active: usize = 0, +@@ -56,8 +62,12 @@ pub const Loop = struct { + } = .{}, + + pub fn init(options: xev.Options) !Loop { ++ var eventfd = try xev.Async.init(); ++ errdefer eventfd.deinit(); ++ + var res: Loop = .{ + .fd = try posix.epoll_create1(std.os.linux.EPOLL.CLOEXEC), ++ .eventfd = eventfd, + .thread_pool = options.thread_pool, + .thread_pool_completions = undefined, + .cached_now = undefined, +@@ -68,6 +78,7 @@ pub const Loop = struct { + + pub fn deinit(self: *Loop) void { + posix.close(self.fd); ++ self.eventfd.deinit(); + } + + /// Run the event loop. See RunMode documentation for details on modes. +@@ -262,9 +273,26 @@ pub const Loop = struct { + // Initialize + if (!self.flags.init) { + self.flags.init = true; ++ + if (self.thread_pool != null) { + self.thread_pool_completions.init(); + } ++ ++ var ev: linux.epoll_event = .{ ++ .events = linux.EPOLL.IN | linux.EPOLL.RDHUP, ++ .data = .{ .ptr = 0 }, ++ }; ++ posix.epoll_ctl( ++ self.fd, ++ linux.EPOLL.CTL_ADD, ++ self.eventfd.fd, ++ &ev, ++ ) catch |err| { ++ // We reset initialization because we can't do anything ++ // safely unless we get this mach port registered! ++ self.flags.init = false; ++ return err; ++ }; + } + + // Submit all the submissions. We copy the submission queue so that +@@ -369,6 +397,10 @@ pub const Loop = struct { + + // Process all our events and invoke their completion handlers + for (events[0..n]) |ev| { ++ // Zero data values are internal events that we do nothing ++ // on such as the eventfd wakeup. ++ if (ev.data.ptr == 0) continue; ++ + const c: *Completion = @ptrFromInt(@as(usize, @intCast(ev.data.ptr))); + + // We get the fd and mark this as in progress we can properly +@@ -415,6 +447,7 @@ pub const Loop = struct { + const pool = self.thread_pool orelse return error.ThreadPoolRequired; + + // Setup our completion state so that thread_perform can do stuff ++ c.task_loop = self; + c.task_completions = &self.thread_pool_completions; + c.task = .{ .callback = Loop.thread_perform }; + +@@ -436,6 +469,14 @@ pub const Loop = struct { + + // Add to our completion queue + c.task_completions.push(c); ++ ++ // Wake up our main loop ++ c.task_loop.wakeup() catch {}; ++ } ++ ++ /// Sends an empty message to this loop's eventfd so that it wakes up. ++ fn wakeup(self: *Loop) !void { ++ try self.eventfd.notify(); + } + + fn start(self: *Loop, completion: *Completion) void { +@@ -800,6 +841,7 @@ pub const Completion = struct { + /// reliable way to get access to the loop and shouldn't be used + /// except internally. + task: ThreadPool.Task = undefined, ++ task_loop: *Loop = undefined, + task_completions: *Loop.TaskCompletionQueue = undefined, + task_result: Result = undefined, + + +From 38d4dbed71a732b0fc30c1181354ad9d53919402 Mon Sep 17 00:00:00 2001 +From: Corentin Godeau +Date: Tue, 14 Jan 2025 14:43:54 +0000 +Subject: [PATCH 2/2] backend/epoll: read the wakeup eventfd to avoid being + awaken again + +--- + src/backend/epoll.zig | 11 +++++++---- + 1 file changed, 7 insertions(+), 4 deletions(-) + +diff --git a/src/backend/epoll.zig b/src/backend/epoll.zig +index f44d326..f84c687 100644 +--- a/src/backend/epoll.zig ++++ b/src/backend/epoll.zig +@@ -280,7 +280,7 @@ pub const Loop = struct { + + var ev: linux.epoll_event = .{ + .events = linux.EPOLL.IN | linux.EPOLL.RDHUP, +- .data = .{ .ptr = 0 }, ++ .data = .{ .fd = self.eventfd.fd }, + }; + posix.epoll_ctl( + self.fd, +@@ -397,9 +397,12 @@ pub const Loop = struct { + + // Process all our events and invoke their completion handlers + for (events[0..n]) |ev| { +- // Zero data values are internal events that we do nothing +- // on such as the eventfd wakeup. +- if (ev.data.ptr == 0) continue; ++ // Handle wakeup eventfd ++ if (ev.data.fd == self.eventfd.fd) { ++ var buffer: u64 = undefined; ++ _ = posix.read(self.eventfd.fd, std.mem.asBytes(&buffer)) catch {}; ++ continue; ++ } + + const c: *Completion = @ptrFromInt(@as(usize, @intCast(ev.data.ptr))); + diff --git a/third_party/modules/libxev/20241208.0-db6a52b/source.json b/third_party/modules/libxev/20241208.0-db6a52b/source.json new file mode 100644 index 0000000..f08c951 --- /dev/null +++ b/third_party/modules/libxev/20241208.0-db6a52b/source.json @@ -0,0 +1,14 @@ +{ + "strip_prefix": "libxev-db6a52bafadf00360e675fefa7926e8e6c0e9931", + "url": "https://github.com/zml/libxev/archive/db6a52bafadf00360e675fefa7926e8e6c0e9931.tar.gz", + "integrity": "sha256-4GT5wkfkZnIjNv20yDiWEzHAhbIiwHHJfS7A4u/LoNQ=", + "overlay": { + "MODULE.bazel": "", + "BUILD.bazel": "", + "main2.zig": "" + }, + "patches": { + "128.patch": "" + }, + "patch_strip": 1 +} diff --git a/third_party/modules/libxev/metadata.json b/third_party/modules/libxev/metadata.json index 3b334be..10e632b 100644 --- a/third_party/modules/libxev/metadata.json +++ b/third_party/modules/libxev/metadata.json @@ -12,7 +12,9 @@ ], "versions": [ "20240825.0-dbe2291", - "20240910.0-a2d9b31" + "20240910.0-a2d9b31", + "20241119.0-6afcde9", + "20241208.0-db6a52b" ], "yanked_versions": {} } diff --git a/zml/module.zig b/zml/module.zig index 3bcdc9e..73569cb 100644 --- a/zml/module.zig +++ b/zml/module.zig @@ -2,7 +2,6 @@ const std = @import("std"); const asynk = @import("async"); const dialect = @import("mlir/dialects"); -const runfiles = @import("runfiles"); const stdx = @import("stdx"); const xla_pb = @import("//xla:xla_proto"); @@ -902,10 +901,11 @@ fn compileModuleToPjrtExecutable(arena: std.mem.Allocator, platform: Platform, m } } switch (platform.target) { - .cuda => cuda_dir: { - // NVIDIA recommends to disable Triton GEMM on JAX: + .cuda => { + // NVIDIA recommends these settings // https://github.com/NVIDIA/JAX-Toolbox?tab=readme-ov-file#environment-variables setFlag(&options, "xla_gpu_enable_triton_gemm", false); + setFlag(&options, "xla_gpu_enable_latency_hiding_scheduler", true); // setFlag(&options, "xla_gpu_enable_cudnn_fmha", true); // setFlag(&options, "xla_gpu_fused_attention_use_cudnn_rng", true); // setFlag(&options, "xla_gpu_enable_cudnn_layer_norm", true); @@ -913,17 +913,6 @@ fn compileModuleToPjrtExecutable(arena: std.mem.Allocator, platform: Platform, m // setFlag(&options, "xla_gpu_enable_dynamic_slice_fusion", true); // setFlag(&options, "xla_gpu_enable_while_loop_double_buffering", true); // setFlag(&options, "xla_gpu_use_runtime_fusion", true); - // setFlag(&options, "xla_gpu_enable_latency_hiding_scheduler", true); - var r_ = try runfiles.Runfiles.create(.{ .allocator = arena }) orelse { - log.warn("Bazel runfile not found !", .{}); - break :cuda_dir; - }; - defer r_.deinit(arena); - const source_repo = @import("bazel_builtin").current_repository; - const r = r_.withSourceRepo(source_repo); - const cuda_data_dir = (try r.rlocationAlloc(arena, "libpjrt_cuda/sandbox")).?; - log.info("xla_gpu_cuda_data_dir: {s}", .{cuda_data_dir}); - setFlag(&options, "xla_gpu_cuda_data_dir", cuda_data_dir); }, .rocm => { // Disable Triton GEMM on ROCM. For some reason it's much, much slower when