diff options
| author | Anuj Mittal <anuj.mittal@intel.com> | 2019-08-21 16:07:13 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2019-08-21 12:41:20 -0700 |
| commit | 191b689b83e14ff5c96ca54fabbee6de7081ee8e (patch) | |
| tree | 2a5db9ae56627965772728dec68ecb2953f9b019 | |
| parent | ad947d2c7717597616f189b7b14fa243483ce5fa (diff) | |
| download | meta-openembedded-191b689b83e14ff5c96ca54fabbee6de7081ee8e.tar.gz | |
clinfo: add recipe
clinfo is a simple command-line application that enumerates all possible
(known) properties of the OpenCL platform and devices available on the
system.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/opencl/clinfo_2.2.18.04.06.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/opencl/clinfo_2.2.18.04.06.bb b/meta-oe/recipes-support/opencl/clinfo_2.2.18.04.06.bb new file mode 100644 index 0000000000..9fd88ced95 --- /dev/null +++ b/meta-oe/recipes-support/opencl/clinfo_2.2.18.04.06.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | SUMMARY = "Enumerate all known properties of OpenCL platform and devices." | ||
| 2 | DESCRIPTION = "clinfo is a simple command-line application that enumerates \ | ||
| 3 | all possible (known) properties of the OpenCL platform and devices \ | ||
| 4 | available on the system." | ||
| 5 | HOMEPAGE = "https://github.com/Oblomov/clinfo" | ||
| 6 | |||
| 7 | LICENSE = "CC0-1.0" | ||
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fd8857f774dfb0eefe1e80c8f9240a7e" | ||
| 9 | |||
| 10 | SRC_URI = "git://github.com/Oblomov/clinfo.git;protocol=https" | ||
| 11 | |||
| 12 | SRCREV = "59d0daf898e48d76ccbb788acbba258fa0a8ba7c" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | DEPENDS += "opencl-headers opencl-icd-loader" | ||
| 17 | |||
| 18 | do_install() { | ||
| 19 | install -D -m 755 clinfo ${D}${bindir}/clinfo | ||
| 20 | } | ||
