Skip to content

Commit

Permalink
Update version to 23.11 and update the release notes
Browse files Browse the repository at this point in the history
Signed-off-by: Liang Xiaoxia <[email protected]>
  • Loading branch information
xiaoxial committed Nov 21, 2023
1 parent 684625d commit 39edcfb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ set(CMAKE_BUILD_TYPE Release)
enable_language(CXX)
include(CheckCXXCompilerFlag)

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

if( UNIX )
Expand Down
4 changes: 2 additions & 2 deletions Library/RaisrVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#pragma once

// API Version
#define RAISR_VERSION_MAJOR (22)
#define RAISR_VERSION_MINOR (12)
#define RAISR_VERSION_MAJOR (23)
#define RAISR_VERSION_MINOR (11)

#define RAISR_CHECK_VERSION(major, minor) \
(RAISR_VERSION_MAJOR > (major) || \
Expand Down
25 changes: 25 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Intel® Library for Video Super Resolution (Intel® Library for VSR) Release Notes

# New and Changed in Release v23.11

**v23.11**

## New and Changed in v23.11
- NEW:Enabled OpenCL acceleration, supported Intel® GPUs platforms.
- NEW:Enabled AVX512-FP16 for faster processing on 4th generation Intel® Xeon Scalable processor.
- NEW:Supported 1.5x upscaling for 8-bit.
- NEW:Added filters with denoising effect.
- NEW:Supported YUV444 format in ffmpeg plugin which can improve quality for input and output in RBG or YUV444 format.
- NEW:Added new dockerfiles with Ubuntu 22.04 and CentOS 7.9.
- Upgraded ffmpeg to n6.0.
- Improved performance for Intel® Xeon platforms.
- Optimized the filter size and enhanced filter file format to binary.
- Removed the filters2, filters3, filters5 and renamed filters1->filters_2x/filters_lowres and filters4->filters_2x/filters_highres, and improved the quality of filters_highres.

## Bug Fixes
- Fixed the segmentation fault issue with some specific threadcount.
- Fixed the black block issue with blending=1 cases.

## Known Limitations
- Only 2x and 1.5x upscaling supported.
- 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 ). For usage of Intel AVX512-FP16, system hardware must be run on 4th generation Intel Xeon Scalable Processesors or later.

# New and Changed in Release v22.12

**v22.12**
Expand Down

0 comments on commit 39edcfb

Please sign in to comment.