diff options
author | Vinicius Monego <monego@posteo.net> | 2023-07-30 11:17:08 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2023-09-30 10:37:47 -0300 |
commit | eb871ffd761e119026a7c11a69dda5ef0788c2fa (patch) | |
tree | 45fc915172801543cf00e458d49b3533070db65e | |
parent | 7a53bd61a02e77074aca2693ba4909f196d5ce69 (diff) |
gnu: Add primesieve.
* gnu/packages/maths.scm (primesieve): New variable.
-rw-r--r-- | gnu/packages/maths.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 31fd3cebee..9881ca9aca 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1316,6 +1316,33 @@ plotting engine by third-party applications like Octave.") C++ with a C API. It contains a LU and LLt solver, and a few other things.") (license license:gpl2+))) +(define-public primesieve + (package + (name "primesieve") + (version "11.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kimwalisch/primesieve") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0ja3kxvpya7bwrib40hnyahsiiiavf65ppk7i7afvc093b7gg9bg")))) + (build-system cmake-build-system) + (arguments + (list #:configure-flags #~(list "-DBUILD_STATIC_LIBS=off" + "-DBUILD_TESTS=ON"))) + (home-page "https://github.com/kimwalisch/primesieve") + (synopsis "Prime number generator") + (description "@code{primesieve} is a command-line program and C/C++ + library for quickly generating prime numbers. It is very cache efficient, + it detects your CPU's L1 & L2 cache sizes and allocates its main data + structures accordingly. It is also multi-threaded by default, it uses all + available CPU cores whenever possible i.e. if sequential ordering is not + required. primesieve can generate primes and prime k-tuplets up to 264.") + (license license:bsd-2))) + (define-public gctp (package (name "gctp") |