Skip to content

Commit

Permalink
Update version to 22.12 and update the release notes
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaoxia Liang <[email protected]>
  • Loading branch information
xiaoxial committed Dec 23, 2022
1 parent 91dbf6a commit 2dccb39
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ enable_language(CXX)
include(CheckCXXCompilerFlag)

set(RAISR_VERSION_MAJOR "22")
set(RAISR_VERSION_MINOR "9")
set(RAISR_VERSION_MINOR "12")
configure_file(${PROJECT_SOURCE_DIR}/Library/RaisrVersion.h.in ${PROJECT_SOURCE_DIR}/Library/RaisrVersion.h @ONLY)

if( UNIX )
Expand Down
2 changes: 1 addition & 1 deletion Library/RaisrVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

// API Version
#define RAISR_VERSION_MAJOR (22)
#define RAISR_VERSION_MINOR (9)
#define RAISR_VERSION_MINOR (12)

#define RAISR_CHECK_VERSION(major, minor) \
(RAISR_VERSION_MAJOR > (major) || \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To build this project you will need:
- Compiler (clang++, g++)
- Cmake version 3.14 or later
- Intel® Integrated Performance Primitives (Intel® IPP) (Stand-Alone Version is the minimum requirement)
- (optional) libx264, libx265, zlib1g-dev
- (optional) libx264, libx265, zlib1g-dev, pkg-config (The pkg-config is used to find x264.pc/x265.pc in specific pkgconfig path.)

## Install Intel IPP
Standalone version of IPP (minimum requirement): https://www.intel.com/content/www/us/en/developer/articles/tool/oneapi-standalone-components.html#ipp \
Expand Down
22 changes: 22 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
# Intel® Library for Video Super Resolution (Intel® Library for VSR) Release Notes

# New and Changed in Release v22.12

**v22.12**

## New Features
- Support the use of Intel AVX2 instructions. See README for usage.
- Performance Optimizations: improved performance via using AVX2 instructions to enhance some functions.
- Add scripts that support setup Raisr without internet access. These scripts are in scripts folder.

## Bug Fixes
- Fixed ffmpeg compilation issue with low GCC 7.5.0.
- Fixed the issue that some video resolutions were not working correctly.
- Ehanced inspection of inputs.

## Known Limitations
- Only 2x upscaling supported. Ratio passed into RNLInit should be set to 2.
- 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.
- 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 )

# Release Notes in Release v22.9

**v22.9**

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.
Expand Down

0 comments on commit 2dccb39

Please sign in to comment.