remove prints for CI

This commit is contained in:
Abhilash Majumder 2024-12-12 14:57:10 +05:30 committed by GitHub
parent 524acb4279
commit b828f4aa5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
}