summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNaveen Saini <naveen.kumar.saini@intel.com>2019-10-14 13:43:09 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2019-10-21 07:18:55 +0800
commitdd9437e9bebd028fcddff3a8e4e5ec70a6df16bd (patch)
treefa686103ce234fda7e782e6422782fb73d5b9461
parentf247a8a3b6e75b67f9de7e21fbecf7834125b174 (diff)
downloadmeta-intel-dd9437e9bebd028fcddff3a8e4e5ec70a6df16bd.tar.gz
mkl-dnn: upgrade v1.0.2 -> v1.1
Added third party license info: CMake, 3-clause BSD licenseq Copyright 2000-2019 Kitware, Inc. and Contributors See full license text in cmake/Copyright.txt MathJax, Apache License 2.0 Copyright (c) 2009-2018 The MathJax Consortium See full license text in doc/assets/mathjax/LICENSE Boost C++ Libraries, Boost Software License, Version 1.0 Copyright 2005-2014 Daniel James. See full license text in src/common/LICENSE_1_0 Release highlights can be found here: https://github.com/intel/mkl-dnn/releases/tag/v1.1 Note: Starting with this release (version 1.1) the library is renamed to DNNL https://intel.github.io/mkl-dnn/dev_guide_transition_to_dnnl.html https://intel.github.io/mkl-dnn/dev_guide_transition_to_v1.html Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--recipes-core/mkl-dnn/mkl-dnn_1.1.bb (renamed from recipes-core/mkl-dnn/mkl-dnn_1.0.2.bb)28
1 files changed, 16 insertions, 12 deletions
diff --git a/recipes-core/mkl-dnn/mkl-dnn_1.0.2.bb b/recipes-core/mkl-dnn/mkl-dnn_1.1.bb
index 9f726848..799a58aa 100644
--- a/recipes-core/mkl-dnn/mkl-dnn_1.0.2.bb
+++ b/recipes-core/mkl-dnn/mkl-dnn_1.1.bb
@@ -1,28 +1,32 @@
1SUMMARY = "Intel Math Kernel Library for Deep Neural Networks" 1SUMMARY = "Deep Neural Network Library"
2DESCRIPTION = "This software is a user mode library that accelerates\ 2DESCRIPTION = "This software is a user mode library that accelerates\
3deep-learning applications and frameworks on Intel architecture." 3deep-learning applications and frameworks on Intel architecture."
4LICENSE = "Apache-2.0 & BSD-3-Clause" 4LICENSE = "Apache-2.0 & BSD-3-Clause & BSL-1.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=a34303951205b8c53485477c74052380 \ 5LIC_FILES_CHKSUM = "file://LICENSE;md5=477df9cc728dd9c63128c0f3525f4649 \
6 file://tests/gtests/gtest/LICENSE;md5=cbbd27594afd089daa160d3a16dd515a \ 6 file://tests/gtests/gtest/LICENSE;md5=cbbd27594afd089daa160d3a16dd515a \
7 file://src/cpu/xbyak/COPYRIGHT;md5=03532861dad9003cc2c17f14fc7a4efa \ 7 file://src/cpu/xbyak/COPYRIGHT;md5=3b9bf048d063d54cdb28964db558bcc7 \
8 file://src/cpu/jit_utils/jitprofiling/LICENSE.BSD;md5=e671ff178b24a95a382ba670503c66fb" 8 file://src/cpu/jit_utils/jitprofiling/LICENSE.BSD;md5=e671ff178b24a95a382ba670503c66fb \
9 file://cmake/Copyright.txt;md5=622747147b46f22e1953876a7cba3323 \
10 file://doc/assets/mathjax/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \
11 file://src/common/LICENSE_1_0;md5=e4224ccaecb14d942c71d31bef20d78c \
12 "
9SECTION = "lib" 13SECTION = "lib"
10 14
11inherit pkgconfig cmake ptest 15inherit pkgconfig cmake ptest
12 16
13S = "${WORKDIR}/git" 17S = "${WORKDIR}/git"
14SRCREV = "3289d3c06e07b55fdbec927461bd89f8989eff5d" 18SRCREV = "dc6c0f3897c910a6ccba7f1db1f8d6f318c04f16"
15SRC_URI = "git://github.com/intel/mkl-dnn.git;branch=rls-v1.0 \ 19SRC_URI = "git://github.com/intel/mkl-dnn.git;branch=rls-v1.1 \
16 file://run-ptest \ 20 file://run-ptest \
17" 21 "
18 22
19UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>(\d+(\.\d+)+))$" 23UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>(\d+(\.\d+)+))$"
20 24
21COMPATIBLE_HOST = '(x86_64).*-linux' 25COMPATIBLE_HOST = '(x86_64).*-linux'
22COMPATIBLE_HOST_libc-musl = 'null' 26COMPATIBLE_HOST_libc-musl = 'null'
23 27
24EXTRA_OECMAKE += "-DMKLDNN_LIBRARY_TYPE=SHARED" 28EXTRA_OECMAKE += "-DDNNL_LIBRARY_TYPE=SHARED"
25EXTRA_OECMAKE += "-DMKLDNN_THREADING=OMP" 29EXTRA_OECMAKE += "-DDNNL_THREADING=OMP"
26EXTRA_OECMAKE += "-DWITH_EXAMPLE=ON" 30EXTRA_OECMAKE += "-DWITH_EXAMPLE=ON"
27EXTRA_OECMAKE += "-DWITH_TEST=ON" 31EXTRA_OECMAKE += "-DWITH_TEST=ON"
28EXTRA_OECMAKE += "-DARCH_OPT_FLAGS=''" 32EXTRA_OECMAKE += "-DARCH_OPT_FLAGS=''"