guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/11: gnu: Add rocm-bandwidth-test.


From: guix-commits
Subject: 10/11: gnu: Add rocm-bandwidth-test.
Date: Sun, 8 Aug 2021 10:57:29 -0400 (EDT)

lbraun pushed a commit to branch master
in repository guix.

commit 339762235d6eb323513aeff34149f3ab29b27227
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Fri Aug 6 08:29:39 2021 +0200

    gnu: Add rocm-bandwidth-test.
    
    * gnu/packages/rocm.scm (rocm-bandwidth-test): New variable.
---
 gnu/packages/rocm.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/rocm.scm b/gnu/packages/rocm.scm
index 0cf5a34..d6bd584 100644
--- a/gnu/packages/rocm.scm
+++ b/gnu/packages/rocm.scm
@@ -325,3 +325,29 @@ and in-process/in-memory compilation.")
     (synopsis "ROCm Application for Reporting System Info")
     (description #f)
     (license license:ncsa)))
+
+(define-public rocm-bandwidth-test
+  (package
+    (name "rocm-bandwidth-test")
+    (version %rocm-version)
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url 
"https://github.com/RadeonOpenCompute/rocm_bandwidth_test.git";)
+                    (commit (string-append "rocm-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0a14kwkjpiyljgzxblh031qibn6xgbxp6m12zdy1pmwb2c44jjmm"))))
+    (build-system cmake-build-system)
+    (arguments `(#:tests? #f)) ; No tests.
+    (inputs `(("rocr-runtime" ,rocr-runtime)))
+    (home-page "https://github.com/RadeonOpenCompute/rocm_bandwidth_test";)
+    (synopsis "Bandwidth test for ROCm")
+    (description "RocBandwidthTest is designed to capture the performance
+characteristics of buffer copying and kernel read/write operations. The help
+screen of the benchmark shows various options one can use in initiating
+cop/read/writer operations.  In addition one can also query the topology of the
+system in terms of memory pools and their agents.")
+    (license license:ncsa)))
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]