Skip to content

Commit 2dccb39

Browse files
committed
Update version to 22.12 and update the release notes
Signed-off-by: Xiaoxia Liang <[email protected]>
1 parent 91dbf6a commit 2dccb39

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ enable_language(CXX)
1515
include(CheckCXXCompilerFlag)
1616

1717
set(RAISR_VERSION_MAJOR "22")
18-
set(RAISR_VERSION_MINOR "9")
18+
set(RAISR_VERSION_MINOR "12")
1919
configure_file(${PROJECT_SOURCE_DIR}/Library/RaisrVersion.h.in ${PROJECT_SOURCE_DIR}/Library/RaisrVersion.h @ONLY)
2020

2121
if( UNIX )

Library/RaisrVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
// API Version
1111
#define RAISR_VERSION_MAJOR (22)
12-
#define RAISR_VERSION_MINOR (9)
12+
#define RAISR_VERSION_MINOR (12)
1313

1414
#define RAISR_CHECK_VERSION(major, minor) \
1515
(RAISR_VERSION_MAJOR > (major) || \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To build this project you will need:
99
- Compiler (clang++, g++)
1010
- Cmake version 3.14 or later
1111
- Intel® Integrated Performance Primitives (Intel® IPP) (Stand-Alone Version is the minimum requirement)
12-
- (optional) libx264, libx265, zlib1g-dev
12+
- (optional) libx264, libx265, zlib1g-dev, pkg-config (The pkg-config is used to find x264.pc/x265.pc in specific pkgconfig path.)
1313

1414
## Install Intel IPP
1515
Standalone version of IPP (minimum requirement): https://www.intel.com/content/www/us/en/developer/articles/tool/oneapi-standalone-components.html#ipp \

ReleaseNotes.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11
# Intel® Library for Video Super Resolution (Intel® Library for VSR) Release Notes
2+
3+
# New and Changed in Release v22.12
4+
5+
**v22.12**
6+
7+
## New Features
8+
- Support the use of Intel AVX2 instructions. See README for usage.
9+
- Performance Optimizations: improved performance via using AVX2 instructions to enhance some functions.
10+
- Add scripts that support setup Raisr without internet access. These scripts are in scripts folder.
11+
12+
## Bug Fixes
13+
- Fixed ffmpeg compilation issue with low GCC 7.5.0.
14+
- Fixed the issue that some video resolutions were not working correctly.
15+
- Ehanced inspection of inputs.
16+
17+
## Known Limitations
18+
- Only 2x upscaling supported. Ratio passed into RNLInit should be set to 2.
19+
- patchSize passed into RNLInit must be set to 11. Algorithms are currently tuned to work only with a patch size of 11. Values other than 11 will fail.
20+
- For usage of Intel AVX2, system hardware must be run on Intel Haswell Processor or later. For usage of Intel AVX-512, system hardware must be run on Intel Xeon Scalable Processesors (1st Gen or later, Skylake or later )
21+
22+
# Release Notes in Release v22.9
23+
224
**v22.9**
325

426
This release is packaged as a docker container and should contain everything one needs to evaluate the super resolution upscaling of the Intel Library for VSR. This project is under active development, but is well suited for evaluation. Please refer to the included README for guidance surrounding building the plugin and running it.

0 commit comments

Comments
 (0)