From 10844ee8b22b8b691d72a7b9c27994f26409a066 Mon Sep 17 00:00:00 2001 From: Stephane Rigaud Date: Thu, 17 Oct 2024 16:28:55 +0200 Subject: [PATCH] specific case for all apple user --- clic/src/array.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clic/src/array.cpp b/clic/src/array.cpp index 27c16624..d75ef195 100644 --- a/clic/src/array.cpp +++ b/clic/src/array.cpp @@ -249,7 +249,7 @@ Array::copyTo(const Array::Pointer & dst, auto Array::fill(const float value) -> void { -#if defined(__APPLE__) && defined(__arm64__) +#if defined(__APPLE__) // clEnqueueFillBuffer not behaving as expected on Apple Silicon // FIX: Filling buffer with host data // TODO: Find a better solution