[PATCH] gnu: Add rtneural.

  • Open
  • quality assurance status badge
Details
One participant
  • Antero Mejr
Owner
unassigned
Submitted by
Antero Mejr
Severity
normal

Debbugs page

A
A
Antero Mejr wrote on 6 Sep 22:00 -0700
(address . guix-patches@gnu.org)
87wmjo9hyj.fsf@antr.me
* gnu/packages/machine-learning.scm (rtneural): New variable.

Change-Id: I0e3a74dddaed7fc239b0408b74c4595ab139e474
---
The tests are too heavy for my machine to run. It builds with them
turned off, but I turned them back on to see if the QA machine can
handle it.

gnu/packages/machine-learning.scm | 56 +++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)

Toggle diff (68 lines)
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 5d34283947..f1c31ffddf 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -6117,3 +6117,59 @@ (define-public python-gymnasium
"This package provides a standard API for reinforcement learning and a
diverse set of reference environments (formerly Gym).")
(license license:expat)))
+
+(define-public rtneural
+ (let ((commit "f9c2c646c6bf5a9a74cf0fd0e062e1351dde6208") ;no releases
+ (revision "0"))
+ (package
+ (name "rtneural")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jatinchowdhury18/RTNeural")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0i2f5s6kjn9ivm17wbil0imgqfzxqpdw5avqdnha30czv5wa62ls"))
+ (modules '((guix build utils)))
+ (snippet #~(begin
+ ;; unbundle
+ (delete-file-recursively "modules")
+ (substitute* "RTNeural/model_loader.h"
+ (("#include \"../modules/json/json.hpp\"")
+ "#include <nlohmann/json.hpp>"))
+ (substitute* (find-files "RTNeural" "\\.h$")
+ (("#include <Eigen/")
+ "#include <eigen3/Eigen/"))
+ (substitute* "CMakeLists.txt"
+ (("include\\(cmake/CPM\\.cmake\\)") ""))
+ (substitute* "RTNeural/CMakeLists.txt"
+ (("STATIC") "SHARED"))
+ (substitute* "cmake/Testing.cmake"
+ (("CPMAddPackage.*$") ""))))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:configure-flags #~(list "-DBUILD_TESTS=ON")
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'install
+ (lambda _
+ (let ((inc (string-append #$output "/include/RTNeural"))
+ (lib (string-append #$output "/lib")))
+ (for-each (lambda (file)
+ (install-file file lib))
+ (find-files "." "\\.so"))
+ (with-directory-excursion "../source/RTNeural"
+ (for-each (lambda (file)
+ (install-file file inc))
+ (find-files "." "\\.h")))))))))
+ (inputs (list eigen nlohmann-json))
+ (home-page "https://github.com/jatinchowdhury18/RTNeural")
+ (synopsis "Real-time neural network interface library")
+ (description
+ "This package provides a neural network inferencing engine written in
+ C++. The library was designed with the intention of being used in real-time
+ systems, specifically real-time audio processing.")
+ (license license:bsd-3))))

base-commit: 18d02443e1ec37779ee3cf63f9aaff1746bfdd8e
--
2.45.2
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 73089@patchwise.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 73089
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch