mirror of
https://github.com/opencv/opencv.git
synced 2024-12-05 09:49:12 +08:00
85923c8f30
Update zlib-ng to 2.2.1 #26113 Release: https://github.com/zlib-ng/zlib-ng/releases/tag/2.2.1 ARM diagnostics patch: https://github.com/zlib-ng/zlib-ng/pull/1774 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* AVX2 optimized hash slide, based on Intel's slide_sse implementation
|
|
*
|
|
* Copyright (C) 2017 Intel Corporation
|
|
* Authors:
|
|
* Arjan van de Ven <arjan@linux.intel.com>
|
|
* Jim Kukunas <james.t.kukunas@linux.intel.com>
|
|
* Mika T. Lindqvist <postmaster@raasu.org>
|
|
*
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
#include "zbuild.h"
|
|
#include "deflate.h"
|
|
|
|
#include <immintrin.h>
|
|
|
|
static inline void slide_hash_chain(Pos *table, uint32_t entries, const __m256i wsize) {
|
|
table += entries;
|
|
table -= 16;
|
|
|
|
do {
|
|
__m256i value, result;
|
|
|
|
value = _mm256_loadu_si256((__m256i *)table);
|
|
result = _mm256_subs_epu16(value, wsize);
|
|
_mm256_storeu_si256((__m256i *)table, result);
|
|
|
|
table -= 16;
|
|
entries -= 16;
|
|
} while (entries > 0);
|
|
}
|
|
|
|
Z_INTERNAL void slide_hash_avx2(deflate_state *s) {
|
|
uint16_t wsize = (uint16_t)s->w_size;
|
|
const __m256i ymm_wsize = _mm256_set1_epi16((short)wsize);
|
|
|
|
slide_hash_chain(s->head, HASH_SIZE, ymm_wsize);
|
|
slide_hash_chain(s->prev, wsize, ymm_wsize);
|
|
}
|