From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: James Hilliard <james.hilliard1@gmail.com>
Cc: Stefan Hager <stefan.hager@ginzinger.com>,
Samuel Martin <s.martin49@gmail.com>,
Fabrice Fontaine <fontaine.fabrice@gmail.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH v4 05/13] package/neon-2-sse: new package
Date: Sun, 29 Jan 2023 22:58:18 +0100 [thread overview]
Message-ID: <20230129215818.GA2632@scaer> (raw)
In-Reply-To: <20230127141058.2180747-5-james.hilliard1@gmail.com>
James, All,
On 2023-01-27 07:10 -0700, James Hilliard spake thusly:
> This package is required by tensorflow-lite.
>
> Tested-by: Stefan Hager <stefan.hager@ginzinger.com>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Applied to master, thanks.
> ---
> DEVELOPERS | 1 +
> package/Config.in | 1 +
> package/neon-2-sse/Config.in | 9 +++++++++
> package/neon-2-sse/neon-2-sse.hash | 4 ++++
> package/neon-2-sse/neon-2-sse.mk | 14 ++++++++++++++
> 5 files changed, 29 insertions(+)
> create mode 100644 package/neon-2-sse/Config.in
> create mode 100644 package/neon-2-sse/neon-2-sse.hash
> create mode 100644 package/neon-2-sse/neon-2-sse.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index f48ea66660..a711f9f1ee 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -2704,6 +2704,7 @@ F: package/ti-gfx/
> N: Stefan Hager <stefan.hager@ginzinger.com>
> F: package/cpuinfo/
> F: package/gemmlowp/
> +F: package/neon-2-sse/
Since Stefan was not the author, only a tester, I moved that to James
entry.
Applied to master, thanks.
Regards,
Yann E. MORIN.
> F: package/ruy/
>
> N: Stefan Ott <stefan@ott.net>
> diff --git a/package/Config.in b/package/Config.in
> index 8f78080963..6377ddd2e5 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -2101,6 +2101,7 @@ endif
> source "package/msgpack/Config.in"
> source "package/musl-compat-headers/Config.in"
> source "package/musl-fts/Config.in"
> + source "package/neon-2-sse/Config.in"
> source "package/openblas/Config.in"
> source "package/orc/Config.in"
> source "package/p11-kit/Config.in"
> diff --git a/package/neon-2-sse/Config.in b/package/neon-2-sse/Config.in
> new file mode 100644
> index 0000000000..25613c5ec4
> --- /dev/null
> +++ b/package/neon-2-sse/Config.in
> @@ -0,0 +1,9 @@
> +config BR2_PACKAGE_NEON_2_SSE
> + bool "neon-2-sse"
> + help
> + The platform independent header allowing to compile any
> + C/C++ code containing ARM NEON intrinsic functions for
> + x86 target systems using SIMD up to SSE4 intrinsic
> + functions.
> +
> + https://github.com/intel/ARM_NEON_2_x86_SSE
> diff --git a/package/neon-2-sse/neon-2-sse.hash b/package/neon-2-sse/neon-2-sse.hash
> new file mode 100644
> index 0000000000..ded20d58f5
> --- /dev/null
> +++ b/package/neon-2-sse/neon-2-sse.hash
> @@ -0,0 +1,4 @@
> +# Locally calculated
> +sha256 019fbc7ec25860070a1d90e12686fc160cfb33e22aa063c80f52b363f1361e9d neon-2-sse-a15b489e1222b2087007546b4912e21293ea86ff.tar.gz
> +# License files, locally calculated
> +sha256 7022f51b439a5915e933ecc270c83e24ca0cb2cceeb08b0132dcd4dbb03ed2dc LICENSE
> diff --git a/package/neon-2-sse/neon-2-sse.mk b/package/neon-2-sse/neon-2-sse.mk
> new file mode 100644
> index 0000000000..0e9d066abd
> --- /dev/null
> +++ b/package/neon-2-sse/neon-2-sse.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# neon-2-sse
> +#
> +################################################################################
> +
> +NEON_2_SSE_VERSION = a15b489e1222b2087007546b4912e21293ea86ff
> +NEON_2_SSE_SITE = $(call github,intel,ARM_NEON_2_x86_SSE,$(NEON_2_SSE_VERSION))
> +NEON_2_SSE_LICENSE = BSD-2-Clause
> +NEON_2_SSE_LICENSE_FILES = LICENSE
> +NEON_2_SSE_INSTALL_STAGING = YES
> +NEON_2_SSE_INSTALL_TARGET = NO
> +
> +$(eval $(cmake-package))
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2023-01-29 21:58 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-27 14:10 [Buildroot] [PATCH v4 01/13] package/flatbuffers: build position independent code James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 02/13] package/cpuinfo: new package James Hilliard
2023-01-29 21:18 ` Yann E. MORIN
2023-01-27 14:10 ` [Buildroot] [PATCH v4 03/13] package/ruy: " James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 04/13] package/gemmlowp: " James Hilliard
2023-01-29 21:45 ` Yann E. MORIN
2023-01-30 3:17 ` James Hilliard
2023-01-30 7:13 ` Yann E. MORIN
2023-01-30 7:45 ` James Hilliard
2023-01-29 21:46 ` Yann E. MORIN
2023-01-29 23:51 ` James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 05/13] package/neon-2-sse: " James Hilliard
2023-01-29 21:58 ` Yann E. MORIN [this message]
2023-01-27 14:10 ` [Buildroot] [PATCH v4 06/13] package/fxdiv: " James Hilliard
2023-01-29 22:28 ` Yann E. MORIN
2023-01-27 14:10 ` [Buildroot] [PATCH v4 07/13] package/pthreadpool: " James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 08/13] package/psimd: " James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 09/13] package/fp16: " James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 10/13] package/xnnpack: " James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 11/13] package/fft2d: " James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 12/13] package/farmhash: " James Hilliard
2023-01-27 14:10 ` [Buildroot] [PATCH v4 13/13] package/tensorflow-lite: " James Hilliard
2023-01-29 20:55 ` [Buildroot] [PATCH v4 01/13] package/flatbuffers: build position independent code Yann E. MORIN
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230129215818.GA2632@scaer \
--to=yann.morin.1998@free.fr \
--cc=buildroot@buildroot.org \
--cc=fontaine.fabrice@gmail.com \
--cc=james.hilliard1@gmail.com \
--cc=s.martin49@gmail.com \
--cc=stefan.hager@ginzinger.com \
--cc=thomas.petazzoni@bootlin.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox