From b828f4aa5f9c28f68e2f775e51c1eb10caf4eb24 Mon Sep 17 00:00:00 2001 From: Abhilash Majumder <30946547+abhilash1910@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:57:10 +0530 Subject: [PATCH] remove prints for CI --- ggml/src/ggml-sycl/ggml-sycl.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/ggml/src/ggml-sycl/ggml-sycl.cpp b/ggml/src/ggml-sycl/ggml-sycl.cpp index de2b8e40c..a353309e4 100644 --- a/ggml/src/ggml-sycl/ggml-sycl.cpp +++ b/ggml/src/ggml-sycl/ggml-sycl.cpp @@ -1797,7 +1797,6 @@ static void pool2d_nchw_kernel( default: res = NAN; op_valid = false; - sycl::intel::experimental::printf("An unsupported op is passed as argument.\n"); break; } @@ -1819,7 +1818,6 @@ static void pool2d_nchw_kernel( case GGML_OP_POOL_MAX: res = sycl::max(res, (To)cur); break; default: op_valid = false; - sycl::intel::experimental::printf("An unsupported op is passed as argument.\n"); break; } }