fix macro typo

This commit is contained in:
Meng, Hengyu 2024-02-02 14:53:59 +08:00 committed by GitHub
parent a28c5eff5b
commit 621e60e484
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11323,10 +11323,10 @@ void ggml_init_sycl() try {
GGML_ASSERT(g_all_sycl_device_count <= GGML_SYCL_MAX_DEVICES);
int64_t total_vram = 0;
#if defined(GGML_SYCL_FP16)
fprintf(stderr, "%s: GGML_SYCL_FP16: yes\n", __func__);
#if defined(GGML_SYCL_F16)
fprintf(stderr, "%s: GGML_SYCL_F16: yes\n", __func__);
#else
fprintf(stderr, "%s: GGML_SYCL_FP16: no\n", __func__);
fprintf(stderr, "%s: GGML_SYCL_F16: no\n", __func__);
#endif