aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentina Kats <valentina.kats@intel.com>2021-02-24 13:36:35 +0300
committerMikhail Dvorskiy <mikhail.dvorskiy@intel.com>2021-02-25 09:59:30 +0300
commita4f60686197ffb638bdfaabe0da03aea9b5697f6 (patch)
tree032fbdd16f552de787e8f9c87a1b1640eedced08
parentRefactor generated names of kernels (#113) (diff)
downloadllvm-project-a4f60686197ffb638bdfaabe0da03aea9b5697f6.tar.gz
llvm-project-a4f60686197ffb638bdfaabe0da03aea9b5697f6.tar.bz2
llvm-project-a4f60686197ffb638bdfaabe0da03aea9b5697f6.zip
Version update (#132)
-rw-r--r--include/oneapi/dpl/pstl/onedpl_config.h4
-rw-r--r--test/general/version.pass.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/oneapi/dpl/pstl/onedpl_config.h b/include/oneapi/dpl/pstl/onedpl_config.h
index 383a5505331a..ebd29d25eec7 100644
--- a/include/oneapi/dpl/pstl/onedpl_config.h
+++ b/include/oneapi/dpl/pstl/onedpl_config.h
@@ -24,8 +24,8 @@
#endif
#define ONEDPL_VERSION_MAJOR 2021
-#define ONEDPL_VERSION_MINOR 1
-#define ONEDPL_VERSION_PATCH 1
+#define ONEDPL_VERSION_MINOR 2
+#define ONEDPL_VERSION_PATCH 0
#if defined(ONEDPL_USE_DPCPP_BACKEND)
# undef _ONEDPL_BACKEND_SYCL
diff --git a/test/general/version.pass.cpp b/test/general/version.pass.cpp
index de4a103e09db..e2cf6726fbb7 100644
--- a/test/general/version.pass.cpp
+++ b/test/general/version.pass.cpp
@@ -35,8 +35,8 @@ static_assert(_PSTL_VERSION_PATCH == 0, "");
#endif
static_assert(ONEDPL_VERSION_MAJOR == 2021, "");
-static_assert(ONEDPL_VERSION_MINOR == 1, "");
-static_assert(ONEDPL_VERSION_PATCH == 1, "");
+static_assert(ONEDPL_VERSION_MINOR == 2, "");
+static_assert(ONEDPL_VERSION_PATCH == 0, "");
int main() {
::std::cout << TestUtils::done() << ::std::endl;