All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone benchmark
@ 2017-11-03  4:42 Manjukumar Matha
  2017-11-03 17:22 ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Manjukumar Matha @ 2017-11-03  4:42 UTC (permalink / raw)
  To: openembedded-devel

The Whetstone benchmark is a synthetic benchmark for evaluating the
performance of computers.

https://en.wikipedia.org/wiki/Whetstone_(benchmark)

Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
---
 meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb

diff --git a/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
new file mode 100644
index 0000000..8fad04e
--- /dev/null
+++ b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "Whetstone benchmark is a synthetic benchmark for evaluating the performance of computers"
+SUMMARY = "CPU benchmark to measure floating point performance"
+
+LICENSE = "PD"
+LIC_FILES_CHKSUM ="file://${WORKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7e1d92ca8f88ad718449f5"
+
+SRC_URI = "http://www.netlib.org/benchmark/whetstone.c"
+SRC_URI[md5sum] = "d8eb2cd7104bb5a12d614ac6d3f1f9fb"
+SRC_URI[sha256sum] = "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf"
+
+S = "${WORKDIR}"
+
+do_compile () {
+	${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm
+}
+
+do_install () {
+	install -Dm 0755 whetstone ${D}${bindir}/whetstone
+}
+
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone benchmark
  2017-11-03  4:42 [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone benchmark Manjukumar Matha
@ 2017-11-03 17:22 ` Denys Dmytriyenko
  2017-11-17 18:26   ` Manjukumar Harthikote Matha
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2017-11-03 17:22 UTC (permalink / raw)
  To: Manjukumar Matha; +Cc: openembedded-devel

On Thu, Nov 02, 2017 at 09:42:38PM -0700, Manjukumar Matha wrote:
> The Whetstone benchmark is a synthetic benchmark for evaluating the
> performance of computers.
> 
> https://en.wikipedia.org/wiki/Whetstone_(benchmark)
> 
> Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>

Acked-by: Denys Dmytriyenko <denys@ti.com>


> ---
>  meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>  create mode 100644 meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> 
> diff --git a/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> new file mode 100644
> index 0000000..8fad04e
> --- /dev/null
> +++ b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> @@ -0,0 +1,20 @@
> +DESCRIPTION = "Whetstone benchmark is a synthetic benchmark for evaluating the performance of computers"
> +SUMMARY = "CPU benchmark to measure floating point performance"
> +
> +LICENSE = "PD"
> +LIC_FILES_CHKSUM ="file://${WORKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7e1d92ca8f88ad718449f5"
> +
> +SRC_URI = "http://www.netlib.org/benchmark/whetstone.c"
> +SRC_URI[md5sum] = "d8eb2cd7104bb5a12d614ac6d3f1f9fb"
> +SRC_URI[sha256sum] = "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf"
> +
> +S = "${WORKDIR}"
> +
> +do_compile () {
> +	${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm
> +}
> +
> +do_install () {
> +	install -Dm 0755 whetstone ${D}${bindir}/whetstone
> +}
> +
> -- 
> 2.7.4
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone benchmark
  2017-11-03 17:22 ` Denys Dmytriyenko
@ 2017-11-17 18:26   ` Manjukumar Harthikote Matha
  2017-11-17 18:28     ` Manjukumar Harthikote Matha
  0 siblings, 1 reply; 4+ messages in thread
From: Manjukumar Harthikote Matha @ 2017-11-17 18:26 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: openembedded-devel

Ping

Thanks,
Manju

> -----Original Message-----
> From: Denys Dmytriyenko [mailto:denis@denix.org]
> Sent: Friday, November 03, 2017 10:22 AM
> To: Manjukumar Harthikote Matha <MANJUKUM@xilinx.com>
> Cc: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone
> benchmark
> 
> On Thu, Nov 02, 2017 at 09:42:38PM -0700, Manjukumar Matha wrote:
> > The Whetstone benchmark is a synthetic benchmark for evaluating the
> > performance of computers.
> >
> > https://en.wikipedia.org/wiki/Whetstone_(benchmark)
> >
> > Signed-off-by: Manjukumar Matha
> > <manjukumar.harthikote-matha@xilinx.com>
> 
> Acked-by: Denys Dmytriyenko <denys@ti.com>
> 
> 
> > ---
> >  meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb | 20
> > ++++++++++++++++++++
> >  1 file changed, 20 insertions(+)
> >  create mode 100644
> > meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> >
> > diff --git a/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> > b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> > new file mode 100644
> > index 0000000..8fad04e
> > --- /dev/null
> > +++ b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> > @@ -0,0 +1,20 @@
> > +DESCRIPTION = "Whetstone benchmark is a synthetic benchmark for evaluating
> the performance of computers"
> > +SUMMARY = "CPU benchmark to measure floating point performance"
> > +
> > +LICENSE = "PD"
> > +LIC_FILES_CHKSUM
> ="file://${WORKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7e1d92
> ca8f88ad718449f5"
> > +
> > +SRC_URI = "http://www.netlib.org/benchmark/whetstone.c"
> > +SRC_URI[md5sum] = "d8eb2cd7104bb5a12d614ac6d3f1f9fb"
> > +SRC_URI[sha256sum] =
> "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf"
> > +
> > +S = "${WORKDIR}"
> > +
> > +do_compile () {
> > +	${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm }
> > +
> > +do_install () {
> > +	install -Dm 0755 whetstone ${D}${bindir}/whetstone }
> > +
> > --
> > 2.7.4
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone benchmark
  2017-11-17 18:26   ` Manjukumar Harthikote Matha
@ 2017-11-17 18:28     ` Manjukumar Harthikote Matha
  0 siblings, 0 replies; 4+ messages in thread
From: Manjukumar Harthikote Matha @ 2017-11-17 18:28 UTC (permalink / raw)
  To: Manjukumar Harthikote Matha, Denys Dmytriyenko; +Cc: openembedded-devel

Sorry, this was sitting in my outbox and they went out

This has been applied

Thanks,
Manju

> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org
> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
> Manjukumar Harthikote Matha
> Sent: Friday, November 17, 2017 10:27 AM
> To: Denys Dmytriyenko <denis@denix.org>
> Cc: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone
> benchmark
> 
> [This sender failed our fraud detection checks and may not be who they appear to
> be. Learn about spoofing at http://aka.ms/LearnAboutSpoofing]
> 
> Ping
> 
> Thanks,
> Manju
> 
> > -----Original Message-----
> > From: Denys Dmytriyenko [mailto:denis@denix.org]
> > Sent: Friday, November 03, 2017 10:22 AM
> > To: Manjukumar Harthikote Matha <MANJUKUM@xilinx.com>
> > Cc: openembedded-devel@lists.openembedded.org
> > Subject: Re: [oe] [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone
> > benchmark
> >
> > On Thu, Nov 02, 2017 at 09:42:38PM -0700, Manjukumar Matha wrote:
> > > The Whetstone benchmark is a synthetic benchmark for evaluating the
> > > performance of computers.
> > >
> > > https://en.wikipedia.org/wiki/Whetstone_(benchmark)
> > >
> > > Signed-off-by: Manjukumar Matha
> > > <manjukumar.harthikote-matha@xilinx.com>
> >
> > Acked-by: Denys Dmytriyenko <denys@ti.com>
> >
> >
> > > ---
> > >  meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb | 20
> > > ++++++++++++++++++++
> > >  1 file changed, 20 insertions(+)
> > >  create mode 100644
> > > meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> > >
> > > diff --git a/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> > > b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> > > new file mode 100644
> > > index 0000000..8fad04e
> > > --- /dev/null
> > > +++ b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb
> > > @@ -0,0 +1,20 @@
> > > +DESCRIPTION = "Whetstone benchmark is a synthetic benchmark for
> > > +evaluating
> > the performance of computers"
> > > +SUMMARY = "CPU benchmark to measure floating point performance"
> > > +
> > > +LICENSE = "PD"
> > > +LIC_FILES_CHKSUM
> > ="file://${WORKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7
> > e1d92
> > ca8f88ad718449f5"
> > > +
> > > +SRC_URI = "http://www.netlib.org/benchmark/whetstone.c"
> > > +SRC_URI[md5sum] = "d8eb2cd7104bb5a12d614ac6d3f1f9fb"
> > > +SRC_URI[sha256sum] =
> > "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf"
> > > +
> > > +S = "${WORKDIR}"
> > > +
> > > +do_compile () {
> > > +   ${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm }
> > > +
> > > +do_install () {
> > > +   install -Dm 0755 whetstone ${D}${bindir}/whetstone }
> > > +
> > > --
> > > 2.7.4
> > >
> > > --
> > > _______________________________________________
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-11-17 18:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-03  4:42 [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone benchmark Manjukumar Matha
2017-11-03 17:22 ` Denys Dmytriyenko
2017-11-17 18:26   ` Manjukumar Harthikote Matha
2017-11-17 18:28     ` Manjukumar Harthikote Matha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.