mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add ruy.
* gnu/packages/maths.scm (ruy): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
7879ab4229
commit
2d366e309b
1 changed files with 36 additions and 0 deletions
|
@ -8543,3 +8543,39 @@ (define-public scilab
|
||||||
optimization, and modeling, simulation of explicit and implicit dynamical
|
optimization, and modeling, simulation of explicit and implicit dynamical
|
||||||
systems and symbolic manipulations.")
|
systems and symbolic manipulations.")
|
||||||
(license license:cecill))) ;CeCILL v2.1
|
(license license:cecill))) ;CeCILL v2.1
|
||||||
|
|
||||||
|
(define-public ruy
|
||||||
|
(let ((commit "caa244343de289f913c505100e6a463d46c174de")
|
||||||
|
(version "0")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "ruy")
|
||||||
|
(version (git-version version revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/google/ruy")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0j2g90nzam4h52zwx2vpanj8m17068cfb1zi4hcy0pyk52kb11dy"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "-DRUY_FIND_CPUINFO=ON"
|
||||||
|
;; Needed to make sure code is relocatable for use in
|
||||||
|
;; tensorflow.
|
||||||
|
"-DCMAKE_CXX_FLAGS=-fPIC ")))
|
||||||
|
(inputs (list cpuinfo))
|
||||||
|
(native-inputs (list googletest))
|
||||||
|
(home-page "https://github.com/google/ruy")
|
||||||
|
(synopsis "Matrix multiplication library")
|
||||||
|
(description
|
||||||
|
"Ruy is a matrix multiplication library. Its focus is to cover the
|
||||||
|
matrix multiplication needs of neural network inference engines. Its initial
|
||||||
|
user has been TensorFlow Lite, where it is used by default on the ARM CPU
|
||||||
|
architecture.")
|
||||||
|
(license license:asl2.0))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue