civodul pushed a commit to branch master
in repository guix.

commit 56045f1ae15fceb8996c699467bdeb22ac8d87f3
Author: Spencer King <[email protected]>
AuthorDate: Thu Dec 19 23:03:12 2024 +0000

    gnu: Add julia-performancetesttools.
    
    * gnu/packages/julia-xyz.scm (julia-performancetesttools): New variable.
    
    Change-Id: Ia3d452f400a8dc0fe78ef8c131101ac2cd46550e
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 1f04558d27..71e5aaa7f4 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -4917,6 +4917,31 @@ algorithms, while ensuring that the most efficient 
implementation is used in
 actual computation.")
     (license license:expat)))
 
+(define-public julia-performancetesttools
+  (package
+    (name "julia-performancetesttools")
+    (version "0.1.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/JuliaTesting/PerformanceTestTools.jl";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0v5b8vnnhavra18h0136gahiyl7nc6r3rm3hm359ic3da8yzrnhn"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/JuliaTesting/PerformanceTestTools.jl";)
+    (synopsis "Enables efficient code generation in test cases")
+    (description
+     "This package enables the Julia compiler to generate
+efficient code when running test cases.  Test cases are typically run with
+flags that prevent efficient code generation.  This package detects those flags
+and instead spawns a separate Julia process without the flags in which to run
+the test cases.")
+    (license license:expat)))
+
+
 (define-public julia-plotthemes
   (package
     (name "julia-plotthemes")

Reply via email to