[Release] NPU Engine new release 2.0.1
authorDongju Chae <dongju.chae@samsung.com>
Tue, 26 May 2020 11:42:21 +0000 (20:42 +0900)
committer송욱/On-Device Lab(SR)/Staff Engineer/삼성전자 <wook16.song@samsung.com>
Thu, 28 May 2020 01:55:25 +0000 (10:55 +0900)
This patch makes new release 2.0.1

Signed-off-by: Dongju Chae <dongju.chae@samsung.com>
CHANGES
debian/changelog
include/common/npubinfmt.h
meson.build
packaging/npu-engine.spec

diff --git a/CHANGES b/CHANGES
index 2171790..ac8cdb6 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+2.0.0 -> 2.0.1:
+  - Fully support the TRIV2 device and kernel driver
+  - Add missing device functions (e.g., unsetModel)
+  - Resolve minor bugs and svace issues
+
 1.2.0 -> 2.0.0:
   - Revise the whole source codes (C++ porting/refactoring)
   - Increase the code coverage (>= 85%)
index 99c2353..52a2a44 100644 (file)
@@ -1,3 +1,9 @@
+npu-engine (2.0.1) unstable xenial bionic; urgency=medium
+
+  * 2.0.1 release
+
+ -- Dongju Chae <dongju.chae@samsung.com>  Tue, 26 May 2020 20:39:00 +0900
+
 npu-engine (2.0.0) unstable xenial bionic; urgency=medium
 
   * 2.0.0 release
index 94a9d7e..3bc83f1 100644 (file)
@@ -50,7 +50,7 @@ static inline uint64_t NPUBIN_META_TOTAL_SIZE (uint64_t magiccode) {
 
 /* npubinfmt magiccode macros */
 #define NPUBIN_MAGICCODE (0x53524E5055000000ULL)  /* ASCII hex for 'SRNPU' */
-#define NPUBIN_VERSION_MAX (2)
+#define NPUBIN_VERSION_MAX (3)
 #define NPUBIN_VERSION(magiccode) ((magiccode) & 0xFFULL)
 #define CHECK_NPUBIN(magiccode) (((magiccode) & ~0xFFFFFFULL) == NPUBIN_MAGICCODE)
 
index e3433b6..9af6a67 100644 (file)
@@ -1,5 +1,5 @@
 project('npu-engine', ['c', 'cpp'],
-  version: '2.0.0',
+  version: '2.0.1',
   license: ['Proprietary'],
   meson_version: '>=0.50.0',
   default_options: [
index fce1861..cce20f7 100644 (file)
@@ -2,7 +2,7 @@
 
 Name:          npu-engine
 Summary:       NPU Engine
-Version:       2.0.0
+Version:       2.0.1
 Release:       1
 Group:         System Environment/Daemons
 Packager:      MyungJoo Ham <myungjoo.ham@samsung.com>
@@ -193,6 +193,9 @@ HTML pages of lcov results of NPU Engine generated during rpmbuild
 %endif
 
 %changelog
+* Tue May 26 2020 Dongju Chae <dongju.chae@samsung.com>
+- Release of 2.0.1
+
 * Fri May 15 2020 Dongju Chae <dongju.chae@samsung.com>
 - Release of 2.0.0