All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] tidl-api: update to version 1.2.0
@ 2018-12-04 20:48 Yuan Zhao
  2018-12-04 21:04 ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Yuan Zhao @ 2018-12-04 20:48 UTC (permalink / raw)
  To: meta-arago

- Minimized TIDL API/OpenCL dispatch overhead using multiple execution
  contexts on devices.  Added MNIST example for demonstration.
- Execution graph generation with timestamps.
- Python 3 bindings for TIDL API.
- Add a top level license file.

Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
---
 meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc         | 6 +++---
 meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb      | 2 ++
 meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb | 2 ++
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
index fb37a249..1b1167ec 100644
--- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
+++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
@@ -1,11 +1,11 @@
-PV = "1.1.0.1"
+PV = "1.2.0"
 INC_PR = "r0"
 
-LIC_FILES_CHKSUM = "file://tidl_api_manifest.html;md5=fb8d8b8edb866b0b233462139d1c3222"
+LIC_FILES_CHKSUM = "file://license.txt;md5=e3daeabffb9fc131a73f16d16cbdb118"
 
 GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
 GIT_PROTOCOL = "git"
 BRANCH = "master"
 
 SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${BRANCH}"
-SRCREV = "7e9a3942ec38efd64d45e34c10cba2f2938f5618"
+SRCREV = "03978a83b03d8881261222344d1a08e0f4e2bd06"
diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
index 47e98ef9..fbea9aa8 100644
--- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
+++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
@@ -11,6 +11,8 @@ PR = "${INC_PR}.0"
 COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
+inherit python3native
+
 DEPENDS = "opencv \
            opencl \
            opencl-monitor \
diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
index 94f215c3..2f5ca537 100644
--- a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
+++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
@@ -15,11 +15,13 @@ DEPENDS = "opencv \
            clocl-native \
            ti-cgt6x-native \
            tidl-api \
+           json-c \
 "
 
 RDEPENDS_${PN} += "tidl-api \
                    opencl-runtime \
                    opencv \
+                   json-c \
 "
 
 S = "${WORKDIR}/git"
-- 
2.14.1



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

* Re: [PATCH v2] tidl-api: update to version 1.2.0
  2018-12-04 20:48 [PATCH v2] tidl-api: update to version 1.2.0 Yuan Zhao
@ 2018-12-04 21:04 ` Denys Dmytriyenko
  2018-12-04 21:06   ` Zhao, Yuan
  0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2018-12-04 21:04 UTC (permalink / raw)
  To: Yuan Zhao; +Cc: meta-arago

On Tue, Dec 04, 2018 at 02:48:33PM -0600, Yuan Zhao wrote:
> - Minimized TIDL API/OpenCL dispatch overhead using multiple execution
>   contexts on devices.  Added MNIST example for demonstration.
> - Execution graph generation with timestamps.
> - Python 3 bindings for TIDL API.
> - Add a top level license file.

Is the license the same, just moved to a separate file?


> Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
> ---
>  meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc         | 6 +++---
>  meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb      | 2 ++
>  meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb | 2 ++
>  3 files changed, 7 insertions(+), 3 deletions(-)
> 
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> index fb37a249..1b1167ec 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> @@ -1,11 +1,11 @@
> -PV = "1.1.0.1"
> +PV = "1.2.0"

I see you changed it back to not have leading zeros. I'm fine either way.


>  INC_PR = "r0"
>  
> -LIC_FILES_CHKSUM = "file://tidl_api_manifest.html;md5=fb8d8b8edb866b0b233462139d1c3222"
> +LIC_FILES_CHKSUM = "file://license.txt;md5=e3daeabffb9fc131a73f16d16cbdb118"
>  
>  GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
>  GIT_PROTOCOL = "git"
>  BRANCH = "master"
>  
>  SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${BRANCH}"
> -SRCREV = "7e9a3942ec38efd64d45e34c10cba2f2938f5618"
> +SRCREV = "03978a83b03d8881261222344d1a08e0f4e2bd06"
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> index 47e98ef9..fbea9aa8 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> @@ -11,6 +11,8 @@ PR = "${INC_PR}.0"
>  COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
> +inherit python3native
> +
>  DEPENDS = "opencv \
>             opencl \
>             opencl-monitor \
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> index 94f215c3..2f5ca537 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> @@ -15,11 +15,13 @@ DEPENDS = "opencv \
>             clocl-native \
>             ti-cgt6x-native \
>             tidl-api \
> +           json-c \
>  "
>  
>  RDEPENDS_${PN} += "tidl-api \
>                     opencl-runtime \
>                     opencv \
> +                   json-c \
>  "
>  
>  S = "${WORKDIR}/git"
> -- 
> 2.14.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH v2] tidl-api: update to version 1.2.0
  2018-12-04 21:04 ` Denys Dmytriyenko
@ 2018-12-04 21:06   ` Zhao, Yuan
  2018-12-04 21:06     ` Denys Dmytriyenko
  0 siblings, 1 reply; 4+ messages in thread
From: Zhao, Yuan @ 2018-12-04 21:06 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

License is the same.  We added a top level text license file which points to components in html file.  The checksum is now based on the top level license file.  - Yuan

-----Original Message-----
From: Dmytriyenko, Denys 
Sent: Tuesday, December 4, 2018 3:04 PM
To: Zhao, Yuan
Cc: meta-arago@arago-project.org
Subject: Re: [meta-arago] [PATCH v2] tidl-api: update to version 1.2.0

On Tue, Dec 04, 2018 at 02:48:33PM -0600, Yuan Zhao wrote:
> - Minimized TIDL API/OpenCL dispatch overhead using multiple execution
>   contexts on devices.  Added MNIST example for demonstration.
> - Execution graph generation with timestamps.
> - Python 3 bindings for TIDL API.
> - Add a top level license file.

Is the license the same, just moved to a separate file?


> Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
> ---
>  meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc         | 6 +++---
>  meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb      | 2 ++
>  meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb | 2 ++
>  3 files changed, 7 insertions(+), 3 deletions(-)
> 
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> index fb37a249..1b1167ec 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> @@ -1,11 +1,11 @@
> -PV = "1.1.0.1"
> +PV = "1.2.0"

I see you changed it back to not have leading zeros. I'm fine either way.


>  INC_PR = "r0"
>  
> -LIC_FILES_CHKSUM = "file://tidl_api_manifest.html;md5=fb8d8b8edb866b0b233462139d1c3222"
> +LIC_FILES_CHKSUM = "file://license.txt;md5=e3daeabffb9fc131a73f16d16cbdb118"
>  
>  GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
>  GIT_PROTOCOL = "git"
>  BRANCH = "master"
>  
>  SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${BRANCH}"
> -SRCREV = "7e9a3942ec38efd64d45e34c10cba2f2938f5618"
> +SRCREV = "03978a83b03d8881261222344d1a08e0f4e2bd06"
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> index 47e98ef9..fbea9aa8 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> @@ -11,6 +11,8 @@ PR = "${INC_PR}.0"
>  COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
> +inherit python3native
> +
>  DEPENDS = "opencv \
>             opencl \
>             opencl-monitor \
> diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> index 94f215c3..2f5ca537 100644
> --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> @@ -15,11 +15,13 @@ DEPENDS = "opencv \
>             clocl-native \
>             ti-cgt6x-native \
>             tidl-api \
> +           json-c \
>  "
>  
>  RDEPENDS_${PN} += "tidl-api \
>                     opencl-runtime \
>                     opencv \
> +                   json-c \
>  "
>  
>  S = "${WORKDIR}/git"
> -- 
> 2.14.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH v2] tidl-api: update to version 1.2.0
  2018-12-04 21:06   ` Zhao, Yuan
@ 2018-12-04 21:06     ` Denys Dmytriyenko
  0 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2018-12-04 21:06 UTC (permalink / raw)
  To: Zhao, Yuan; +Cc: meta-arago

Thanks!

On Tue, Dec 04, 2018 at 04:06:00PM -0500, Zhao, Yuan wrote:
> License is the same.  We added a top level text license file which points to 
> components in html file.  The checksum is now based on the top level license 
> file.  - Yuan
> 
> -----Original Message-----
> From: Dmytriyenko, Denys 
> Sent: Tuesday, December 4, 2018 3:04 PM
> To: Zhao, Yuan
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH v2] tidl-api: update to version 1.2.0
> 
> On Tue, Dec 04, 2018 at 02:48:33PM -0600, Yuan Zhao wrote:
> > - Minimized TIDL API/OpenCL dispatch overhead using multiple execution
> >   contexts on devices.  Added MNIST example for demonstration.
> > - Execution graph generation with timestamps.
> > - Python 3 bindings for TIDL API.
> > - Add a top level license file.
> 
> Is the license the same, just moved to a separate file?
> 
> 
> > Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
> > ---
> >  meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc         | 6 +++---
> >  meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb      | 2 ++
> >  meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb | 2 ++
> >  3 files changed, 7 insertions(+), 3 deletions(-)
> > 
> > diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> > index fb37a249..1b1167ec 100644
> > --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> > +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc
> > @@ -1,11 +1,11 @@
> > -PV = "1.1.0.1"
> > +PV = "1.2.0"
> 
> I see you changed it back to not have leading zeros. I'm fine either way.
> 
> 
> >  INC_PR = "r0"
> >  
> > -LIC_FILES_CHKSUM = "file://tidl_api_manifest.html;md5=fb8d8b8edb866b0b233462139d1c3222"
> > +LIC_FILES_CHKSUM = "file://license.txt;md5=e3daeabffb9fc131a73f16d16cbdb118"
> >  
> >  GIT_URI = "git://git.ti.com/tidl/tidl-api.git"
> >  GIT_PROTOCOL = "git"
> >  BRANCH = "master"
> >  
> >  SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${BRANCH}"
> > -SRCREV = "7e9a3942ec38efd64d45e34c10cba2f2938f5618"
> > +SRCREV = "03978a83b03d8881261222344d1a08e0f4e2bd06"
> > diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> > index 47e98ef9..fbea9aa8 100644
> > --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> > +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api_git.bb
> > @@ -11,6 +11,8 @@ PR = "${INC_PR}.0"
> >  COMPATIBLE_MACHINE = "am57xx-evm|am57xx-hs-evm"
> >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> >  
> > +inherit python3native
> > +
> >  DEPENDS = "opencv \
> >             opencl \
> >             opencl-monitor \
> > diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> > index 94f215c3..2f5ca537 100644
> > --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> > +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-examples_git.bb
> > @@ -15,11 +15,13 @@ DEPENDS = "opencv \
> >             clocl-native \
> >             ti-cgt6x-native \
> >             tidl-api \
> > +           json-c \
> >  "
> >  
> >  RDEPENDS_${PN} += "tidl-api \
> >                     opencl-runtime \
> >                     opencv \
> > +                   json-c \
> >  "
> >  
> >  S = "${WORKDIR}/git"
> > -- 
> > 2.14.1
> > 
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

end of thread, other threads:[~2018-12-04 21:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-04 20:48 [PATCH v2] tidl-api: update to version 1.2.0 Yuan Zhao
2018-12-04 21:04 ` Denys Dmytriyenko
2018-12-04 21:06   ` Zhao, Yuan
2018-12-04 21:06     ` Denys Dmytriyenko

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.