diff options
author | Anuj Solanki <anuj603362@gmail.com> | 2024-07-03 17:28:05 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-08-30 11:53:02 +0000 |
commit | 8607d696eca482e025a9ca30ee992707211d1f11 (patch) | |
tree | ca4342a7db0465199119d1c24bf3e824a0f0a1c3 /meta-offline-voice-agent/recipes-python/python3-numpy | |
parent | 65f1ec44778eaa59c2c74bf5fbb22a670b6231a0 (diff) |
Integrate Whisper AI into AGL Voice Agent and Update Dependencies
V1:
- Removed the following recipes from meta-offline-voiceagent:
- python3-scipy
- python3-scikit-learn
- python3-openblas
- python3-lapack
- python3-numpy
- Updated to use meta-python-ai layer for:
- python3-scipy
- python3-scikit-learn
- python3-openblas
- python3-lapack
- python3-numpy
- python3-pytorch
- Added all the required recipes for Whisper AI:
- Included recipes for Whisper AI base and tiny model
- Updated recipes for:
- python3-uvloop
- python3-python-crfsuite
V2:
- Remove vulkan from DISTRO_FEATURES as it has become coditional
at upstream
- Fix flutter_voiceassistant service
- Update recipe of llvmlite to include the wheel for aarch64 also.
V3:
- Fix llvmlite recipe and some patches
- Removes rasa and its dependencies
- Fix agl-service-voiceagent.service
Bug-AGL: SPEC-5200
Change-Id: I429e7d4b98fbbe1a4f8c1341ac8918d7d177b382
Signed-off-by: Anuj Solanki <anuj603362@gmail.com>
Diffstat (limited to 'meta-offline-voice-agent/recipes-python/python3-numpy')
3 files changed, 0 insertions, 79 deletions
diff --git a/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy/0001-Disable-runtimelibdirs-for-cross-compile.patch b/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy/0001-Disable-runtimelibdirs-for-cross-compile.patch deleted file mode 100644 index c96bb64d..00000000 --- a/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy/0001-Disable-runtimelibdirs-for-cross-compile.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 9729175ae0ee7b2c8641483b9dfd16051cc4ad23 Mon Sep 17 00:00:00 2001 -From: Greg Anders <greg@gpanders.com> -Date: Mon, 2 Mar 2020 14:34:04 +0000 -Subject: [PATCH] Disable runtime_lib_dirs for cross compile - ---- - numpy/distutils/system_info.py | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py -index 28c7b92..d1a92ab 100644 ---- a/numpy/distutils/system_info.py -+++ b/numpy/distutils/system_info.py -@@ -669,10 +669,7 @@ class system_info(object): - return self.get_paths(self.section, key) - - def get_runtime_lib_dirs(self, key='runtime_library_dirs'): -- path = self.get_paths(self.section, key) -- if path == ['']: -- path = [] -- return path -+ return [] - - def get_include_dirs(self, key='include_dirs'): - return self.get_paths(self.section, key)
\ No newline at end of file diff --git a/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy/0001-Remove-using-library-directories-as-runtime-library-.patch b/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy/0001-Remove-using-library-directories-as-runtime-library-.patch deleted file mode 100644 index d7e818a8..00000000 --- a/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy/0001-Remove-using-library-directories-as-runtime-library-.patch +++ /dev/null @@ -1,48 +0,0 @@ -From b14d1c1b684014a65b8b7ea0030f7f070a34e6c5 Mon Sep 17 00:00:00 2001 -From: Scott Murray <scott.murray@konsulko.com> -Date: Tue, 4 Jul 2023 10:24:11 -0400 -Subject: [PATCH] Remove using library directories as runtime library - directories - -The code in calc_libraries_info in distutils/system_info.py converts -library directories to runtime library directories, which seems to -only make sense in an environment when the external libraries are not -coming from standard system locations. It is actively harmful in the -OE build environment since it results in sysroot paths getting put -into RPATH in the resulting binaries. Remove that snippet of code so -that module .so's do not trigger the rpath QA sanity checking. - -Upstream-Status: Inappropriate - -Signed-off-by: Scott Murray <scott.murray@konsulko.com> ---- - numpy/distutils/system_info.py | 13 ------------- - 1 file changed, 13 deletions(-) - -diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py -index 656bc37..fb075a1 100644 ---- a/numpy/distutils/system_info.py -+++ b/numpy/distutils/system_info.py -@@ -728,19 +728,6 @@ class system_info: - else: - log.info('Library %s was not found. Ignoring' % (lib)) - -- if r_dirs: -- i = self.check_libs(r_dirs, [lib]) -- if i is not None: -- # Swap library keywords found to runtime_library_dirs -- # the libraries are insisting on the user having defined -- # them using the library_dirs, and not necessarily by -- # runtime_library_dirs -- del i['libraries'] -- i['runtime_library_dirs'] = i.pop('library_dirs') -- dict_append(info, **i) -- else: -- log.info('Runtime library %s was not found. Ignoring' % (lib)) -- - return info - - def set_info(self, **info): --- -2.40.1 - diff --git a/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy_%.bbappend b/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy_%.bbappend deleted file mode 100644 index b8d1f144..00000000 --- a/meta-offline-voice-agent/recipes-python/python3-numpy/python3-numpy_%.bbappend +++ /dev/null @@ -1,6 +0,0 @@ -FILESEXTRAPATHS:prepend := "${THISDIR}/${BPN}:" - -SRC_URI += " \ - file://0001-Disable-runtimelibdirs-for-cross-compile.patch \ - file://0001-Remove-using-library-directories-as-runtime-library-.patch \ - " |