mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: xnnpack: Fix build on riscv64-linux.
* gnu/packages/machine-learning.scm (xnnpack)[native-inputs]: When target riscv64, Add gcc-14. Change-Id: Ifd19f13e6148cd9aa0bbdbf427466b1030da9a5e
This commit is contained in:
parent
90dd6cf01c
commit
1d4ad65066
1 changed files with 6 additions and 1 deletions
|
@ -4483,7 +4483,12 @@ on quantized 8-bit tensors.")
|
|||
fxdiv
|
||||
fp16
|
||||
psimd))
|
||||
(native-inputs (list python-pyyaml python-wrapper))
|
||||
(native-inputs
|
||||
(append (if (target-riscv64?)
|
||||
;; Required by "#include <riscv_vector.h>"
|
||||
(list gcc-14)
|
||||
(list))
|
||||
(list python-pyyaml python-wrapper)))
|
||||
(synopsis "Optimized floating-point neural network inference operators")
|
||||
(description
|
||||
"XNNPACK is a highly optimized library of floating-point neural network
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue