From d8956a4ce38c06289f684fd56c10546b71e4de6d Mon Sep 17 00:00:00 2001 From: nscipione Date: Wed, 15 Jan 2025 16:53:38 +0100 Subject: [PATCH] Remove unused variable Signed-off-by: nscipione --- ggml/src/ggml-sycl/ggml-sycl.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ggml/src/ggml-sycl/ggml-sycl.cpp b/ggml/src/ggml-sycl/ggml-sycl.cpp index c6757f29f..75f1b0f10 100644 --- a/ggml/src/ggml-sycl/ggml-sycl.cpp +++ b/ggml/src/ggml-sycl/ggml-sycl.cpp @@ -1207,7 +1207,6 @@ struct ggml_sycl_pool_host : public ggml_sycl_pool { void * alloc(size_t size, size_t * actual_size) override { if (counter == MAX_POOL_SIZE) { ggml_sycl_buffer b = buffer_pool[0]; - size_t look_ahead_size = (size_t) (1.05 * size); void * ptr = b.ptr; *actual_size = b.size; counter = 1;