mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add dmlc-core.
* gnu/packages/machine-learning.scm (dmlc-core): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
c1bc2a4320
commit
7e73fc3bb9
1 changed files with 28 additions and 0 deletions
|
@ -2310,6 +2310,34 @@ (define-public tensorflow-lite
|
||||||
devices.")
|
devices.")
|
||||||
(license license:asl2.0)))
|
(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
|
(define-public python-iml
|
||||||
(package
|
(package
|
||||||
(name "python-iml")
|
(name "python-iml")
|
||||||
|
|
Loading…
Reference in a new issue