diff options
author | Vinicius Monego <monego@posteo.net> | 2021-09-25 19:36:49 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-09-25 16:06:23 -0400 |
commit | 7e73fc3bb98bdc5f615684c5cedf3c7212afe28a (patch) | |
tree | 1ef4a6ea7366d69c410470dee85db539404b2fc4 /gnu | |
parent | c1bc2a43200d6c6016c2a4154799c73c86a54021 (diff) | |
download | guix-7e73fc3bb98bdc5f615684c5cedf3c7212afe28a.tar.gz guix-7e73fc3bb98bdc5f615684c5cedf3c7212afe28a.zip |
gnu: Add dmlc-core.
* gnu/packages/machine-learning.scm (dmlc-core): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/machine-learning.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 9b5d4c1743..a4768211a0 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -2310,6 +2310,34 @@ learning models. This package provides the \"lite\" variant for mobile devices.") (license license:asl2.0))) +(define-public dmlc-core + (package + (name "dmlc-core") + (version "0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dmlc/dmlc-core") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x4ad1jhn84fywlk031fmv1kxyiscclmrqn9hhj8gz0mh7z9vcrh")))) + (build-system cmake-build-system) + (arguments + `(#:configure-flags + (list "-DGOOGLE_TEST=ON"))) + (native-inputs + `(("googletest" ,googletest) + ("python" ,python-wrapper))) + (home-page "https://github.com/dmlc/dmlc-core") + (synopsis "Common bricks library for machine learning") + (description + "DMLC-Core is the backbone library to support all DMLC projects, +offers the bricks to build efficient and scalable distributed machine +learning libraries.") + (license license:asl2.0))) + (define-public python-iml (package (name "python-iml") |