Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2021-10-05 00:21:35 +0300
committerHenrik Gramner <gramner@twoorioles.com>2021-10-18 17:49:05 +0300
commitbf0f46900091b289b8079ab6aa2e28d0469f4aa3 (patch)
tree8f29bb9b940fdee99730b9e0efa089307a5c2306 /tests
parentef216e172c8868a2f51d1ff4d9468c3d10ab9685 (diff)
x86: Add wiener_filter AVX-512 (Ice Lake) asm
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/looprestoration.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/checkasm/looprestoration.c b/tests/checkasm/looprestoration.c
index 4bab5cd..5597870 100644
--- a/tests/checkasm/looprestoration.c
+++ b/tests/checkasm/looprestoration.c
@@ -54,9 +54,9 @@ static void init_tmp(pixel *buf, const ptrdiff_t stride,
}
static void check_wiener(Dav1dLoopRestorationDSPContext *const c, const int bpc) {
- ALIGN_STK_64(pixel, c_src, 448 * 64,), *const c_dst = c_src + 32;
- ALIGN_STK_64(pixel, a_src, 448 * 64,), *const a_dst = a_src + 32;
- ALIGN_STK_64(pixel, edge_buf, 448 * 8,), *const h_edge = edge_buf + 32;
+ ALIGN_STK_64(pixel, c_src, 448 * 64 + 64,), *const c_dst = c_src + 64;
+ ALIGN_STK_64(pixel, a_src, 448 * 64 + 64,), *const a_dst = a_src + 64;
+ ALIGN_STK_64(pixel, edge_buf, 448 * 8 + 64,), *const h_edge = edge_buf + 64;
pixel left[64][4];
LooprestorationParams params;
int16_t (*const filter)[8] = params.filter;