Skip to content

Commit 62d9352

Browse files
committed
Implemented AVX-512 optimized minimum and maximum search
1 parent 30eab07 commit 62d9352

File tree

5 files changed

+575
-4
lines changed

5 files changed

+575
-4
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
* Copyright (C) 2024 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2024 Vladimir Sadovnikov <sadko4u@gmail.com>
4+
*
5+
* This file is part of lsp-dsp-lib
6+
* Created on: 29 июл. 2024 г.
7+
*
8+
* lsp-dsp-lib is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* any later version.
12+
*
13+
* lsp-dsp-lib is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
20+
*/
21+
22+
#ifndef PRIVATE_DSP_ARCH_X86_AVX512_SEARCH_H_
23+
#define PRIVATE_DSP_ARCH_X86_AVX512_SEARCH_H_
24+
25+
#include <lsp-plug.in/dsp/common/types.h>
26+
27+
#include <private/dsp/arch/x86/avx512/search/minmax.h>
28+
29+
#endif /* PRIVATE_DSP_ARCH_X86_AVX512_SEARCH_H_ */

0 commit comments

Comments
 (0)