mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-05 05:04:45 +02:00
onedpl: add recipe
The Intel® oneAPI DPC++ Library (oneDPL) accompanies the Intel® oneAPI DPC++/C++ Compiler and provides high-productivity APIs aimed to minimize programming efforts of C++ developers creating efficient heterogeneous applications. oneDPL consists of following components: * Parallel STL for DPC++ * An additional set of library classes and functions (referred below as "Extension API") * Tested standard C++ APIs Release notes: https://software.intel.com/content/www/us/en/develop/articles/intel-oneapi-dpcpp-library-release-notes.html https://github.com/oneapi-src/oneDPL Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
This commit is contained in:
parent
d1e09d2f05
commit
f4955ea96c
24
recipes-oneapi/onedpl/onedpl_2021.3.bb
Normal file
24
recipes-oneapi/onedpl/onedpl_2021.3.bb
Normal file
|
@ -0,0 +1,24 @@
|
|||
SUMMARY = "oneAPI DPC++ Library (oneDPL)"
|
||||
DESCRIPTION = "The oneAPI DPC++ Library (oneDPL) aims to work with the \
|
||||
oneAPI DPC++ Compiler to provide high-productivity APIs to developers, \
|
||||
which can minimize DPC++ programming efforts across devices for high \
|
||||
performance parallel applications."
|
||||
HOMEPAGE = "https://github.com/oneapi-src/oneDPL"
|
||||
|
||||
LICENSE = "Apache-2.0-with-LLVM-exception"
|
||||
LIC_FILES_CHKSUM = "file://licensing/LICENSE.txt;md5=2e982d844baa4df1c80de75470e0c5cb \
|
||||
file://licensing/third-party-programs.txt;md5=4075f07036267ff083d9e095c6a6019f"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
SRC_URI = "git://github.com/oneapi-src/oneDPL.git;protocol=https;branch=release/2021.3 \
|
||||
"
|
||||
SRCREV = "e18b78a43fd3ec4909331723b2dc11346b667422"
|
||||
|
||||
do_compile[noexec] = "1"
|
||||
do_configure[noexec] = "1"
|
||||
|
||||
do_install() {
|
||||
install -d -m 755 ${D}${includedir}/onedpl
|
||||
cp -r ${S}/include/* ${D}${includedir}/onedpl
|
||||
}
|
Loading…
Reference in New Issue
Block a user