All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] Integrate OpenCL
@ 2015-10-27 19:05 Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 1/8] packagegroup-arago-tisdk-addons: Clean up machine-specific packages Jacob Stiffler
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

* Integrate the OpenCL packages into the target filesystem and devkit
* Integrate the OpenCL Example matrix files
* Enable rebuilding the OpenCL example sources from the SDK

Jacob Stiffler (8):
  packagegroup-arago-tisdk-addons: Clean up machine-specific packages
  packagegroup-arago-tisdk-addons: Add opencl dev pkgs and examples
  packagegroup-arago-tisdk-addons-sdk-target: Add opencl to devkit
  packagegroup-arago-tisdk-addons-sdk-host: Add opencl example sources
  packagegroup-arago-tisdk-matrix: Add opencl matrix demos
  nativesdk-packagegroup-arago-sdk-host: Add clocl
  ti-tisdk-makefile: Include opencl-example fragment for dra7xx
  arago-base-tisdk-image: Add BAD_RECOMMENDATIONS to remove unneeded dev
    pkgs

 .../recipes-core/images/arago-base-tisdk-image.bb  |  7 ++++
 .../packagegroup-arago-tisdk-addons-sdk-host.bb    |  6 +++-
 .../packagegroup-arago-tisdk-addons-sdk-target.bb  |  6 ++--
 .../packagegroup-arago-tisdk-addons.bb             | 38 ++++++++++++++--------
 .../packagegroup-arago-tisdk-matrix.bb             |  7 +++-
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |  3 +-
 .../nativesdk-packagegroup-arago-sdk-host.bb       |  4 +--
 7 files changed, 51 insertions(+), 20 deletions(-)

-- 
1.9.1



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

* [PATCH 1/8] packagegroup-arago-tisdk-addons: Clean up machine-specific packages
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 2/8] packagegroup-arago-tisdk-addons: Add opencl dev pkgs and examples Jacob Stiffler
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

* Reorganize into easier-to-read lists

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroup-arago-tisdk-addons.bb             | 36 ++++++++++++++--------
 1 file changed, 23 insertions(+), 13 deletions(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
index 4a94dc7..fa2d04d 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install additional utilities/demos for SDKs"
 LICENSE = "MIT"
-PR = "r30"
+PR = "r31"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -25,24 +25,34 @@ UTILS = " \
 UTILS_UBOOT_FW = "u-boot-fw-utils"
 UTILS_UBOOT_FW_keystone = ""
 
-UTILS_append_ti33x = " mmc-utils"
-UTILS_append_ti43x = " mmc-utils"
-UTILS_append_omap-a15 = " mmc-utils"
+UTILS_append_ti33x = " mmc-utils \
+                       canutils \
+                       switch-config \
+"
+
+UTILS_append_ti43x = " mmc-utils \
+                       canutils \
+                       switch-config \
+                       libdrm-omap \
+"
+
+UTILS_append_omap-a15 = " mmc-utils \
+                          parted \
+                          switch-config \
+                          libdrm-omap \
+                          stream-openmp \
+"
 
 # Add PRU examples for am180x-evm devices
 UTILS_append_am180x-evm = " ti-pru-sw-examples"
 
 UTILS_append_omap3 = " canutils"
-UTILS_append_ti33x = " canutils"
-UTILS_append_ti43x = " canutils"
-UTILS_append_dra7xx = " canutils dsptop gdbc6x"
-UTILS_append_omap-a15 = " parted"
-
-UTILS_append_ti33x = " switch-config"
-UTILS_append_ti43x = " switch-config libdrm-omap"
-UTILS_append_omap-a15 = " switch-config libdrm-omap stream-openmp"
 
-UTILS_append_dra7xx = " glsdk-example-apps"
+UTILS_append_dra7xx = " canutils \
+                        dsptop \
+                        gdbc6x \
+                        glsdk-example-apps \
+"
 
 EXTRA_LIBS = ""
 EXTRA_LIBS_append_omap-a15 = " cmem"
-- 
1.9.1



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

* [PATCH 2/8] packagegroup-arago-tisdk-addons: Add opencl dev pkgs and examples
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 1/8] packagegroup-arago-tisdk-addons: Clean up machine-specific packages Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 3/8] packagegroup-arago-tisdk-addons-sdk-target: Add opencl to devkit Jacob Stiffler
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb     | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
index fa2d04d..ca011d0 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install additional utilities/demos for SDKs"
 LICENSE = "MIT"
-PR = "r31"
+PR = "r32"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -52,6 +52,8 @@ UTILS_append_dra7xx = " canutils \
                         dsptop \
                         gdbc6x \
                         glsdk-example-apps \
+                        opencl-staticdev \
+                        opencl-examples-dev \
 "
 
 EXTRA_LIBS = ""
-- 
1.9.1



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

* [PATCH 3/8] packagegroup-arago-tisdk-addons-sdk-target: Add opencl to devkit
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 1/8] packagegroup-arago-tisdk-addons: Clean up machine-specific packages Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 2/8] packagegroup-arago-tisdk-addons: Add opencl dev pkgs and examples Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 4/8] packagegroup-arago-tisdk-addons-sdk-host: Add opencl example sources Jacob Stiffler
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb     | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
index 41dc86a..a87082d 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install headers and libraries related to addons into the SDK"
 LICENSE = "MIT"
-PR = "r12"
+PR = "r13"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -98,7 +98,9 @@ EXTRA_LIBS_append_k2hk-evm = "\
 UTILS_append_omap3 = " canutils-dev"
 UTILS_append_ti33x = " canutils-dev"
 UTILS_append_ti43x = " canutils-dev"
-UTILS_append_dra7xx = " canutils-dev"
+UTILS_append_dra7xx = " canutils-dev \
+                        opencl-staticdev \
+"
 
 EXTRA_LIBS = ""
 EXTRA_LIBS_append_omap-a15 = " cmem-dev"
-- 
1.9.1



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

* [PATCH 4/8] packagegroup-arago-tisdk-addons-sdk-host: Add opencl example sources
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
                   ` (2 preceding siblings ...)
  2015-10-27 19:05 ` [PATCH 3/8] packagegroup-arago-tisdk-addons-sdk-target: Add opencl to devkit Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 5/8] packagegroup-arago-tisdk-matrix: Add opencl matrix demos Jacob Stiffler
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb       | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb
index 525655f..4afe4f7 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install sources for additional utilities/demos for SDKs"
 LICENSE = "MIT"
-PR = "r13"
+PR = "r14"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -25,6 +25,10 @@ UTILS_append_ti33x = " \
     omapconf-src \
 "
 
+UTILS_append_dra7xx = " \
+    opencl-examples-src \
+"
+
 EXTRA_LIBS = ""
 EXTRA_LIBS_append_omap-a15 = " cmem-mod-src"
 EXTRA_LIBS_append_dra7xx = " debugss-module-drv-src gdbserverproxy-module-drv-src"
-- 
1.9.1



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

* [PATCH 5/8] packagegroup-arago-tisdk-matrix: Add opencl matrix demos
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
                   ` (3 preceding siblings ...)
  2015-10-27 19:05 ` [PATCH 4/8] packagegroup-arago-tisdk-addons-sdk-host: Add opencl example sources Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 6/8] nativesdk-packagegroup-arago-sdk-host: Add clocl Jacob Stiffler
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb  | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
index a6d1b39..c487d46 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to include Matrix v2"
 LICENSE = "MIT"
-PR = "r45"
+PR = "r46"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -113,6 +113,11 @@ MATRIX_APPS_append_omap-a15 = "     \
     matrix-gui-pm-demos-governor    \
 "
 
+MATRIX_APPS_append_dra7xx = "        \
+    matrix-opencl-demo-floatcompute  \
+    matrix-opencl-demo-vecadd        \
+"
+
 MATRIX_APPS_append_beagleboard = "  \
     matrix-gui-display-control      \
 "
-- 
1.9.1



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

* [PATCH 6/8] nativesdk-packagegroup-arago-sdk-host: Add clocl
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
                   ` (4 preceding siblings ...)
  2015-10-27 19:05 ` [PATCH 5/8] packagegroup-arago-tisdk-matrix: Add opencl matrix demos Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 7/8] ti-tisdk-makefile: Include opencl-example fragment for dra7xx Jacob Stiffler
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

* clocl is the OpenCL kernel compiler which is required for OpenCL
  runtime and development.

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroups/nativesdk-packagegroup-arago-sdk-host.bb            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb b/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb
index ec80bcb..4914e70 100644
--- a/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb
+++ b/meta-arago-extras/recipes-core/packagegroups/nativesdk-packagegroup-arago-sdk-host.bb
@@ -1,10 +1,10 @@
 DESCRIPTION = "Host packages for a standalone Arago SDK or external toolchain"
-PR = "r9"
+PR = "r10"
 LICENSE = "MIT"
 
 inherit packagegroup nativesdk
 
-EXTRA_TOOLS = "nativesdk-ti-cgt6x"
+EXTRA_TOOLS = "nativesdk-ti-cgt6x nativesdk-clocl"
 
 RDEPENDS_${PN} = "\
     nativesdk-pkgconfig \
-- 
1.9.1



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

* [PATCH 7/8] ti-tisdk-makefile: Include opencl-example fragment for dra7xx
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
                   ` (5 preceding siblings ...)
  2015-10-27 19:05 ` [PATCH 6/8] nativesdk-packagegroup-arago-sdk-host: Add clocl Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-10-27 19:05 ` [PATCH 8/8] arago-base-tisdk-image: Add BAD_RECOMMENDATIONS to remove unneeded dev pkgs Jacob Stiffler
  2015-11-02 17:40 ` [PATCH 0/8] Integrate OpenCL Jacob Stiffler
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb           | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index fcca764..3791bf2 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -40,7 +40,7 @@ SRC_URI = "\
     file://Makefile_opencl-examples \
 "
 
-PR = "r53"
+PR = "r54"
 
 MAKEFILES_COMMON = "linux \
                     matrix-gui \
@@ -87,6 +87,7 @@ MAKEFILES_append_ti43x = " u-boot-spl \
 MAKEFILES_append_dra7xx = " cryptodev \
                             debugss-module-drv \
                             gdbserverproxy-module-drv \
+                            opencl-examples \
 "
 
 MAKEFILES_append_omap-a15 = " u-boot-spl \
-- 
1.9.1



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

* [PATCH 8/8] arago-base-tisdk-image: Add BAD_RECOMMENDATIONS to remove unneeded dev pkgs
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
                   ` (6 preceding siblings ...)
  2015-10-27 19:05 ` [PATCH 7/8] ti-tisdk-makefile: Include opencl-example fragment for dra7xx Jacob Stiffler
@ 2015-10-27 19:05 ` Jacob Stiffler
  2015-11-02 17:40 ` [PATCH 0/8] Integrate OpenCL Jacob Stiffler
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-10-27 19:05 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb b/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb
index ef47dc0..51d2652 100644
--- a/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb
+++ b/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb
@@ -12,4 +12,11 @@ IMAGE_INSTALL += "\
     packagegroup-arago-base-tisdk \
     "
 
+BAD_RECOMMENDATIONS += " \
+    ti-llvm3.3-dev \
+    opencl-monitor-dev \
+    libulm-dev \
+    gdbserver-c6x-dev \
+"
+
 export IMAGE_BASENAME = "arago-base-tisdk-image"
-- 
1.9.1



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

* Re: [PATCH 0/8] Integrate OpenCL
  2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
                   ` (7 preceding siblings ...)
  2015-10-27 19:05 ` [PATCH 8/8] arago-base-tisdk-image: Add BAD_RECOMMENDATIONS to remove unneeded dev pkgs Jacob Stiffler
@ 2015-11-02 17:40 ` Jacob Stiffler
  8 siblings, 0 replies; 10+ messages in thread
From: Jacob Stiffler @ 2015-11-02 17:40 UTC (permalink / raw)
  To: meta-arago

Ping.

On 10/27/2015 3:05 PM, Jacob Stiffler wrote:
> * Integrate the OpenCL packages into the target filesystem and devkit
> * Integrate the OpenCL Example matrix files
> * Enable rebuilding the OpenCL example sources from the SDK
>
> Jacob Stiffler (8):
>    packagegroup-arago-tisdk-addons: Clean up machine-specific packages
>    packagegroup-arago-tisdk-addons: Add opencl dev pkgs and examples
>    packagegroup-arago-tisdk-addons-sdk-target: Add opencl to devkit
>    packagegroup-arago-tisdk-addons-sdk-host: Add opencl example sources
>    packagegroup-arago-tisdk-matrix: Add opencl matrix demos
>    nativesdk-packagegroup-arago-sdk-host: Add clocl
>    ti-tisdk-makefile: Include opencl-example fragment for dra7xx
>    arago-base-tisdk-image: Add BAD_RECOMMENDATIONS to remove unneeded dev
>      pkgs
>
>   .../recipes-core/images/arago-base-tisdk-image.bb  |  7 ++++
>   .../packagegroup-arago-tisdk-addons-sdk-host.bb    |  6 +++-
>   .../packagegroup-arago-tisdk-addons-sdk-target.bb  |  6 ++--
>   .../packagegroup-arago-tisdk-addons.bb             | 38 ++++++++++++++--------
>   .../packagegroup-arago-tisdk-matrix.bb             |  7 +++-
>   .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |  3 +-
>   .../nativesdk-packagegroup-arago-sdk-host.bb       |  4 +--
>   7 files changed, 51 insertions(+), 20 deletions(-)
>



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

end of thread, other threads:[~2015-11-02 17:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-27 19:05 [PATCH 0/8] Integrate OpenCL Jacob Stiffler
2015-10-27 19:05 ` [PATCH 1/8] packagegroup-arago-tisdk-addons: Clean up machine-specific packages Jacob Stiffler
2015-10-27 19:05 ` [PATCH 2/8] packagegroup-arago-tisdk-addons: Add opencl dev pkgs and examples Jacob Stiffler
2015-10-27 19:05 ` [PATCH 3/8] packagegroup-arago-tisdk-addons-sdk-target: Add opencl to devkit Jacob Stiffler
2015-10-27 19:05 ` [PATCH 4/8] packagegroup-arago-tisdk-addons-sdk-host: Add opencl example sources Jacob Stiffler
2015-10-27 19:05 ` [PATCH 5/8] packagegroup-arago-tisdk-matrix: Add opencl matrix demos Jacob Stiffler
2015-10-27 19:05 ` [PATCH 6/8] nativesdk-packagegroup-arago-sdk-host: Add clocl Jacob Stiffler
2015-10-27 19:05 ` [PATCH 7/8] ti-tisdk-makefile: Include opencl-example fragment for dra7xx Jacob Stiffler
2015-10-27 19:05 ` [PATCH 8/8] arago-base-tisdk-image: Add BAD_RECOMMENDATIONS to remove unneeded dev pkgs Jacob Stiffler
2015-11-02 17:40 ` [PATCH 0/8] Integrate OpenCL Jacob Stiffler

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.