gnu: Add julia-tensorcore.

* gnu/packages/julia-xyz.scm (julia-tensorcore): New variable.
This commit is contained in:
Efraim Flashner 2021-05-31 12:07:54 +03:00
parent 277fef2026
commit 6a2d36c734
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2023,6 +2023,29 @@ (define-public julia-tabletraits
(description "TableTraits defines a generic interface for tabular data.")
(license license:expat)))
(define-public julia-tensorcore
(package
(name "julia-tensorcore")
(version "0.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaMath/TensorCore.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1sy3in4a1rl3l2vk0cm9mzg2nkva7syhr7i35si0kbzhkdwpbqjy"))))
(build-system julia-build-system)
(home-page "https://github.com/JuliaMath/TensorCore.jl")
(synopsis "Tensor-algebra definitions")
(description "This package is intended as a lightweight foundation for
tensor operations across the Julia ecosystem. Currently it exports three
operations: @acronym{hadamard, elementwise multiplication}, @acronym{tensor,
product preserves all dimensions}, and @acronym{boxdot, contracts neighboring
dimensions}.")
(license license:expat)))
(define-public julia-unpack
(package
(name "julia-unpack")