SYCL: clean comments step 2

This commit is contained in:
Akarshan Biswas 2024-12-11 15:58:40 +05:30
parent cb0daca00b
commit 8f123ae71d
No known key found for this signature in database
GPG key ID: 52A578A14B32134D
3 changed files with 0 additions and 4 deletions

View file

@ -4648,7 +4648,6 @@ static void *ggml_backend_sycl_reg_get_proc_address(ggml_backend_reg_t reg, cons
// SYCL doesn't support registering host memory, left here for reference
// "ggml_backend_register_host_buffer"
// "ggml_backend_unregister_host_buffer"
// doing this to make the compiler happy
(void) name;
return nullptr;
}

View file

@ -13,8 +13,6 @@
#include "mmq.hpp"
#include "vecdotq.hpp"
typedef void (*allocate_tiles_sycl_t)(
int** x_ql,
sycl::half2** x_dm,

View file

@ -59,7 +59,6 @@ static void rwkv_wkv_f32_kernel(
float y = 0;
// Process in chunks of 4 for better vectorization
// TODO: What's the purpose of kv4?
sycl::float4 k4, r4, tf4, td4, s4;
#pragma unroll
for (int j = 0; j < head_size; j += 4) {