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:37 +0300
committerHenrik Gramner <gramner@twoorioles.com>2021-10-18 17:49:05 +0300
commit0568212665f83fda6fb3626388c2220a4357e038 (patch)
treefcba7964773f03b7218df1441c4b300a89409cea /tests
parentbf0f46900091b289b8079ab6aa2e28d0469f4aa3 (diff)
x86: Add sgr 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 5597870..bbee796 100644
--- a/tests/checkasm/looprestoration.c
+++ b/tests/checkasm/looprestoration.c
@@ -119,9 +119,9 @@ static void check_wiener(Dav1dLoopRestorationDSPContext *const c, const int bpc)
}
static void check_sgr(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;