summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2025-01-10 08:28:53 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2025-01-10 08:28:53 +0100
commit94aa7c8e0da2e72e13ca45d4785e604c7eb32723 (patch)
tree47cc85eacae2cb5ad60deec1e36645048fd2dc64
parent73778459c0ee01c6d201807fb2189c08fb0c106e (diff)
Fix compilation without avx512
-rw-r--r--mbw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbw.c b/mbw.c
index 36cd627..d0c4fdf 100644
--- a/mbw.c
+++ b/mbw.c
@@ -462,8 +462,8 @@ void *thread_worker(void *arg)
_mm512_store_si512((void*)(dst), zmm0);
dst += 512;
}
- }
#endif // HAVE_AVX512
+ }
if (sem_post(&stop_sem) != 0) {
err(1, "sem_post(stop_sem)");
}