dequantize.hpp 23.4 KB
Newer Older
xuxzh1's avatar
init  
xuxzh1 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// MIT license
// Copyright (C) 2024 Intel Corporation
// SPDX-License-Identifier: MIT
//

//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//

#ifndef GGML_SYCL_DEQUANTIZE_HPP
#define GGML_SYCL_DEQUANTIZE_HPP

#include "common.hpp"

xuxzh1's avatar
update  
xuxzh1 committed
18
typedef void (*dequantize_kernel_t)(const void * vx, const int64_t ib, const int iqs, dfloat2 & v);
xuxzh1's avatar
init  
xuxzh1 committed
19

xuxzh1's avatar
update  
xuxzh1 committed
20
static __dpct_inline__ void dequantize_q4_0(const void *vx, const int64_t ib,
xuxzh1's avatar
init  
xuxzh1 committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
                                            const int iqs, dfloat2 &v) {
    const block_q4_0 * x = (const block_q4_0 *) vx;

    const dfloat d = x[ib].d;

    const int vui = x[ib].qs[iqs];

    v.x() = vui & 0xF;
    v.y() = vui >> 4;

#ifdef GGML_SYCL_F16
    // v = v - {8.0f, 8.0f};
    // v = v * {d, d};
    v.s0() = (v.s0() - 8.0f) * d;
    v.s1() = (v.s1() - 8.0f) * d;

#else
    v.x() = (v.x() - 8.0f) * d;
    v.y() = (v.y() - 8.0f) * d;
#endif // GGML_SYCL_F16
}

xuxzh1's avatar
update  
xuxzh1 committed
43
static __dpct_inline__ void dequantize_q4_1(const void *vx, const int64_t ib,
xuxzh1's avatar
init  
xuxzh1 committed
44
45
46
47
48
49
50
51
52
53
54
55
56
57
                                            const int iqs, dfloat2 &v) {
    const block_q4_1 * x = (const block_q4_1 *) vx;

    const dfloat d = x[ib].dm[0];
    const dfloat m = x[ib].dm[1];

    const int vui = x[ib].qs[iqs];

    v.x() = vui & 0xF;
    v.y() = vui >> 4;

#ifdef GGML_SYCL_F16
    // v = v * {d, d};
    // v = v + {m, m};
xuxzh1's avatar
update  
xuxzh1 committed
58
59
    v.s0() = sycl::fma(v.s0(), d, m);
    v.s1() = sycl::fma(v.s1(), d, m);
xuxzh1's avatar
init  
xuxzh1 committed
60
61

#else
xuxzh1's avatar
update  
xuxzh1 committed
62
63
    v.x() = sycl::fma(v.x(), d, m);
    v.y() = sycl::fma(v.y(), d, m);
xuxzh1's avatar
init  
xuxzh1 committed
64
65
66
#endif // GGML_SYCL_F16
}

xuxzh1's avatar
update  
xuxzh1 committed
67
static __dpct_inline__ void dequantize_q5_0(const void *vx, const int64_t ib,
xuxzh1's avatar
init  
xuxzh1 committed
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
                                            const int iqs, dfloat2 &v) {
    const block_q5_0 * x = (const block_q5_0 *) vx;

    const dfloat d = x[ib].d;

    uint32_t qh;
    memcpy(&qh, x[ib].qh, sizeof(qh));

    const int xh_0 = ((qh >> (iqs +  0)) << 4) & 0x10;
    const int xh_1 = ((qh >> (iqs + 12))     ) & 0x10;

    v.x() = ((x[ib].qs[iqs] & 0xf) | xh_0);
    v.y() = ((x[ib].qs[iqs] >> 4) | xh_1);

#ifdef GGML_SYCL_F16
    // v = v - {16.0f, 16.0f};
    // v = v * {d, d};
    v.s0() = (v.s0() - 16.0f) * d;
    v.s1() = (v.s1() - 16.0f) * d;

#else
    v.x() = (v.x() - 16.0f) * d;
    v.y() = (v.y() - 16.0f) * d;
#endif // GGML_SYCL_F16
}

xuxzh1's avatar
update  
xuxzh1 committed
94
static __dpct_inline__ void dequantize_q5_1(const void *vx, const int64_t ib,
xuxzh1's avatar
init  
xuxzh1 committed
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
                                            const int iqs, dfloat2 &v) {
    const block_q5_1 * x = (const block_q5_1 *) vx;

    const dfloat d = x[ib].dm[0];
    const dfloat m = x[ib].dm[1];

    uint32_t qh;
    memcpy(&qh, x[ib].qh, sizeof(qh));

    const int xh_0 = ((qh >> (iqs +  0)) << 4) & 0x10;
    const int xh_1 = ((qh >> (iqs + 12))     ) & 0x10;

    v.x() = ((x[ib].qs[iqs] & 0xf) | xh_0);
    v.y() = ((x[ib].qs[iqs] >> 4) | xh_1);

#ifdef GGML_SYCL_F16
    // v = v * {d, d};
    // v = v + {m, m};
xuxzh1's avatar
update  
xuxzh1 committed
113
114
    v.s0() = sycl::fma(v.s0(), d, m);
    v.s1() = sycl::fma(v.s1(), d, m);
xuxzh1's avatar
init  
xuxzh1 committed
115
#else
xuxzh1's avatar
update  
xuxzh1 committed
116
117
    v.x() = sycl::fma(v.x(), d, m);
    v.y() = sycl::fma(v.y(), d, m);
xuxzh1's avatar
init  
xuxzh1 committed
118
119
120
#endif // GGML_SYCL_F16
}

xuxzh1's avatar
update  
xuxzh1 committed
121
static __dpct_inline__ void dequantize_q8_0(const void *vx, const int64_t ib,
xuxzh1's avatar
init  
xuxzh1 committed
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
                                            const int iqs, dfloat2 &v) {
    const block_q8_0 * x = (const block_q8_0 *) vx;

    const dfloat d = x[ib].d;

    v.x() = x[ib].qs[iqs + 0];
    v.y() = x[ib].qs[iqs + 1];

#ifdef GGML_SYCL_F16
    // v = v * {d, d};
    v.s0() *= d;
    v.s1() *= d;
#else
    v.x() *= d;
    v.y() *= d;
#endif // GGML_SYCL_F16
}

template<typename dst_t>
xuxzh1's avatar
update  
xuxzh1 committed
141
static void dequantize_block_q4_0(const void * __restrict__ vx, dst_t * __restrict__ yy, int64_t nb32,
xuxzh1's avatar
init  
xuxzh1 committed
142
143
                                  const sycl::nd_item<3> &item_ct1) {

xuxzh1's avatar
update  
xuxzh1 committed
144
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
145
146

    // assume 32 threads
xuxzh1's avatar
update  
xuxzh1 committed
147
148
149
150
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t il  = tid/8;
    const int64_t ir  = tid%8;
    const int64_t ib = 8*i + ir;
xuxzh1's avatar
init  
xuxzh1 committed
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
    if (ib >= nb32) {
        return;
    }

    dst_t * y = yy + 256*i + 32*ir + 4*il;

    const block_q4_0 * x = (const block_q4_0 *)vx + ib;
    const float d = sycl::vec<sycl::half, 1>(x->d)
                        .convert<float, sycl::rounding_mode::automatic>()[0];
    const float dm = -8*d;

    const uint8_t * q = x->qs + 4*il;

    for (int l = 0; l < 4; ++l) {
        y[l+ 0] = d * (q[l] & 0xF) + dm;
        y[l+16] = d * (q[l] >>  4) + dm;
    }
}

template<typename dst_t>
xuxzh1's avatar
update  
xuxzh1 committed
171
static void dequantize_block_q4_1(const void * __restrict__ vx, dst_t * __restrict__ yy, int64_t nb32,
xuxzh1's avatar
init  
xuxzh1 committed
172
173
                                  const sycl::nd_item<3> &item_ct1) {

xuxzh1's avatar
update  
xuxzh1 committed
174
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
175
176

    // assume 32 threads
xuxzh1's avatar
update  
xuxzh1 committed
177
178
179
180
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t il  = tid/8;
    const int64_t ir  = tid%8;
    const int64_t ib = 8*i + ir;
xuxzh1's avatar
init  
xuxzh1 committed
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
    if (ib >= nb32) {
        return;
    }

    dst_t * y = yy + 256*i + 32*ir + 4*il;

    const block_q4_1 * x = (const block_q4_1 *)vx + ib;
    const sycl::float2 d =
        x->dm.convert<float, sycl::rounding_mode::automatic>();

    const uint8_t * q = x->qs + 4*il;

    for (int l = 0; l < 4; ++l) {
        y[l + 0] = d.x() * (q[l] & 0xF) + d.y();
        y[l + 16] = d.x() * (q[l] >> 4) + d.y();
    }
}


//================================== k-quants

template<typename dst_t>
static void dequantize_block_q2_K(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                  const sycl::nd_item<3> &item_ct1) {

xuxzh1's avatar
update  
xuxzh1 committed
206
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
207
208
    const block_q2_K * x = (const block_q2_K *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
209
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
210
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
211
212
213
    const int64_t n   = tid/32;
    const int64_t l   = tid - 32*n;
    const int64_t is  = 8*n + l/16;
xuxzh1's avatar
init  
xuxzh1 committed
214
215
216
217
218
219
220
221
222
223
224

    const uint8_t q = x[i].qs[32*n + l];
    dst_t * y = yy + i*QK_K + 128*n;

    float dall = x[i].dm[0];
    float dmin = x[i].dm[1];
    y[l+ 0] = dall * (x[i].scales[is+0] & 0xF) * ((q >> 0) & 3) - dmin * (x[i].scales[is+0] >> 4);
    y[l+32] = dall * (x[i].scales[is+2] & 0xF) * ((q >> 2) & 3) - dmin * (x[i].scales[is+2] >> 4);
    y[l+64] = dall * (x[i].scales[is+4] & 0xF) * ((q >> 4) & 3) - dmin * (x[i].scales[is+4] >> 4);
    y[l+96] = dall * (x[i].scales[is+6] & 0xF) * ((q >> 6) & 3) - dmin * (x[i].scales[is+6] >> 4);
#else
xuxzh1's avatar
update  
xuxzh1 committed
225
226
    const int64_t is = tid/16;  // 0 or 1
    const int64_t il = tid%16;  // 0...15
xuxzh1's avatar
init  
xuxzh1 committed
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
    const uint8_t q = x[i].qs[il] >> (2*is);
    dst_t * y = yy + i*QK_K + 16*is + il;

    float dall = x[i].dm[0];
    float dmin = x[i].dm[1];
    y[ 0] = dall * (x[i].scales[is+0] & 0xF) * ((q >> 0) & 3) - dmin * (x[i].scales[is+0] >> 4);
    y[32] = dall * (x[i].scales[is+2] & 0xF) * ((q >> 4) & 3) - dmin * (x[i].scales[is+2] >> 4);
#endif

}

template<typename dst_t>
static void dequantize_block_q3_K(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                  const sycl::nd_item<3> &item_ct1) {

xuxzh1's avatar
update  
xuxzh1 committed
242
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
243
244
245
    const block_q3_K * x = (const block_q3_K *) vx;

#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
246
247
248
249
250
251
    const int64_t r = item_ct1.get_local_id(2) / 4;
    const int64_t tid = r/2;
    const int64_t is0 = r%2;
    const int64_t l0 = 16 * is0 + 4 * (item_ct1.get_local_id(2) % 4);
    const int64_t n = tid / 4;
    const int64_t j = tid - 4*n;
xuxzh1's avatar
init  
xuxzh1 committed
252
253

    uint8_t m = 1 << (4*n + j);
xuxzh1's avatar
update  
xuxzh1 committed
254
    int64_t is = 8*n + 2*j + is0;
xuxzh1's avatar
init  
xuxzh1 committed
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
    int shift = 2*j;

    int8_t us = is <  4 ? (x[i].scales[is-0] & 0xF) | (((x[i].scales[is+8] >> 0) & 3) << 4) :
                is <  8 ? (x[i].scales[is-0] & 0xF) | (((x[i].scales[is+4] >> 2) & 3) << 4) :
                is < 12 ? (x[i].scales[is-8] >>  4) | (((x[i].scales[is+0] >> 4) & 3) << 4) :
                          (x[i].scales[is-8] >>  4) | (((x[i].scales[is-4] >> 6) & 3) << 4);
    float d_all = x[i].d;
    float dl = d_all * (us - 32);

    dst_t * y = yy + i*QK_K + 128*n + 32*j;
    const uint8_t * q = x[i].qs + 32*n;
    const uint8_t * hm = x[i].hmask;

    for (int l = l0; l < l0+4; ++l) y[l] = dl * ((int8_t)((q[l] >> shift) & 3) - ((hm[l] & m) ? 0 : 4));
#else
xuxzh1's avatar
update  
xuxzh1 committed
270
271
272
273
274
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t is  = tid/16;  // 0 or 1
    const int64_t il  = tid%16;  // 0...15
    const int64_t im  = il/8;    // 0...1
    const int64_t in  = il%8;    // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309

    dst_t * y = yy + i*QK_K + 16*is + il;

    const uint8_t q = x[i].qs[il] >> (2*is);
    const uint8_t h = x[i].hmask[in] >> (2*is + im);
    const float   d = (float)x[i].d;

    if (is == 0) {
        y[ 0] = d * ((x[i].scales[0] & 0xF) - 8) * ((int8_t)((q >> 0) & 3) - ((h >> 0) & 1 ? 0 : 4));
        y[32] = d * ((x[i].scales[1] & 0xF) - 8) * ((int8_t)((q >> 4) & 3) - ((h >> 4) & 1 ? 0 : 4));
    } else {
        y[ 0] = d * ((x[i].scales[0] >>  4) - 8) * ((int8_t)((q >> 0) & 3) - ((h >> 0) & 1 ? 0 : 4));
        y[32] = d * ((x[i].scales[1] >>  4) - 8) * ((int8_t)((q >> 4) & 3) - ((h >> 4) & 1 ? 0 : 4));
    }
#endif

}

#if QK_K == 256
static inline void get_scale_min_k4(int j, const uint8_t * q, uint8_t & d, uint8_t & m) {
    if (j < 4) {
        d = q[j] & 63;
        m = q[j + 4] & 63;
    } else {
        d = (q[j+4] & 0xF) | ((q[j-4] >> 6) << 4);
        m = (q[j+4] >>  4) | ((q[j-0] >> 6) << 4);
    }
}
#endif

template<typename dst_t>
static void dequantize_block_q4_K(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                  uint8_t* scales_local, const sycl::nd_item<3> &item_ct1) {
    const block_q4_K * x = (const block_q4_K *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
310
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
311
312
313

#if QK_K == 256
    // assume 32 threads
xuxzh1's avatar
update  
xuxzh1 committed
314
315
316
317
318
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t il  = tid/8;
    const int64_t ir  = tid%8;
    const int64_t is  = 2*il;
    const int64_t n   = 4;
xuxzh1's avatar
init  
xuxzh1 committed
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343

    dst_t * y = yy + i*QK_K + 64*il + n*ir;

    const sycl::half2 dm = x[i].dm;
    const float dall = dm[0];
    const float dmin = dm[1];

    if (tid < 12)
        scales_local[tid] = x[i].scales[tid];
    item_ct1.barrier(sycl::access::fence_space::local_space);

    uint8_t sc, m;
    get_scale_min_k4(is + 0, scales_local, sc, m);
    const float d1 = dall * sc;
    const float m1 = dmin * m;
    get_scale_min_k4(is + 1, scales_local, sc, m);
    const float d2 = dall * sc;
    const float m2 = dmin * m;

    sycl::vec<uint8_t, n> q_vec = vec_aligned_load<uint8_t, n>(x[i].qs + 32*il + n*ir);
    for (int l = 0; l < n; ++l) {
        y[l + 0] = d1 * (q_vec[l] & 0xF) - m1;
        y[l +32] = d2 * (q_vec[l] >>  4) - m2;
    }
#else
xuxzh1's avatar
update  
xuxzh1 committed
344
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
345
346
347
348
349
350
351
352
353
354
355
356
357
358
    const uint8_t * q = x[i].qs;
    dst_t * y = yy + i*QK_K;
    const float d = (float)x[i].dm[0];
    const float m = (float)x[i].dm[1];
    y[tid+ 0] = d * (x[i].scales[0] & 0xF) * (q[tid] & 0xF) - m * (x[i].scales[0] >> 4);
    y[tid+32] = d * (x[i].scales[1] & 0xF) * (q[tid] >>  4) - m * (x[i].scales[1] >> 4);
#endif
}

template<typename dst_t>
static void dequantize_block_q5_K(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                  const sycl::nd_item<3> &item_ct1) {
    const block_q5_K * x = (const block_q5_K *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
359
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
360
361
362

#if QK_K == 256
    // assume 64 threads - this is very slightly better than the one below
xuxzh1's avatar
update  
xuxzh1 committed
363
364
365
366
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t il  = tid/16;   // il is in 0...3
    const int64_t ir  = tid%16;   // ir is in 0...15
    const int64_t is  = 2*il;     // is is in 0...6
xuxzh1's avatar
init  
xuxzh1 committed
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388

    dst_t * y = yy + i*QK_K + 64*il + 2*ir;

    const float dall = x[i].dm[0];
    const float dmin = x[i].dm[1];

    const uint8_t * ql = x[i].qs + 32*il + 2*ir;
    const uint8_t * qh = x[i].qh + 2*ir;

    uint8_t sc, m;
    get_scale_min_k4(is + 0, x[i].scales, sc, m);
    const float d1 = dall * sc; const float m1 = dmin * m;
    get_scale_min_k4(is + 1, x[i].scales, sc, m);
    const float d2 = dall * sc; const float m2 = dmin * m;

    uint8_t   hm  = 1 << (2*il);
    y[ 0] = d1 * ((ql[ 0] & 0xF) + (qh[ 0] & hm ? 16 : 0)) - m1;
    y[ 1] = d1 * ((ql[ 1] & 0xF) + (qh[ 1] & hm ? 16 : 0)) - m1;
    hm <<= 1;
    y[32] = d2 * ((ql[ 0] >>  4) + (qh[ 0] & hm ? 16 : 0)) - m2;
    y[33] = d2 * ((ql[ 1] >>  4) + (qh[ 1] & hm ? 16 : 0)) - m2;
#else
xuxzh1's avatar
update  
xuxzh1 committed
389
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
390
    const uint8_t q = x[i].qs[tid];
xuxzh1's avatar
update  
xuxzh1 committed
391
392
393
    const int64_t im = tid/8;  // 0...3
    const int64_t in = tid%8;  // 0...7
    const int64_t is = tid/16; // 0 or 1
xuxzh1's avatar
init  
xuxzh1 committed
394
395
396
397
398
399
400
401
402
403
404
405
406
    const uint8_t h = x[i].qh[in] >> im;
    const float d = x[i].d;
    dst_t * y = yy + i*QK_K + tid;
    y[ 0] = d * x[i].scales[is+0] * ((q & 0xF) - ((h >> 0) & 1 ? 0 : 16));
    y[32] = d * x[i].scales[is+2] * ((q >>  4) - ((h >> 4) & 1 ? 0 : 16));
#endif
}

template<typename dst_t>
static void dequantize_block_q6_K(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                  const sycl::nd_item<3> &item_ct1) {
    const block_q6_K * x = (const block_q6_K *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
407
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
408
409
410
#if QK_K == 256

    // assume 64 threads - this is very slightly better than the one below
xuxzh1's avatar
update  
xuxzh1 committed
411
412
413
414
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t ip  = tid/32;   // ip is 0 or 1
    const int64_t il  = tid - 32*ip; // 0...32
    const int64_t is  = 8*ip + il/16;
xuxzh1's avatar
init  
xuxzh1 committed
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430

    dst_t * y = yy + i*QK_K + 128*ip + il;

    const float d = x[i].d;

    const uint8_t * ql = x[i].ql + 64*ip + il;
    const uint8_t   qh = x[i].qh[32*ip + il];
    const int8_t  * sc = x[i].scales + is;

    y[ 0] = d * sc[0] * ((int8_t)((ql[ 0] & 0xF) | (((qh >> 0) & 3) << 4)) - 32);
    y[32] = d * sc[2] * ((int8_t)((ql[32] & 0xF) | (((qh >> 2) & 3) << 4)) - 32);
    y[64] = d * sc[4] * ((int8_t)((ql[ 0]  >> 4) | (((qh >> 4) & 3) << 4)) - 32);
    y[96] = d * sc[6] * ((int8_t)((ql[32]  >> 4) | (((qh >> 6) & 3) << 4)) - 32);
#else

    // assume 32 threads
xuxzh1's avatar
update  
xuxzh1 committed
431
432
433
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t ip  = tid/16;         // 0 or 1
    const int64_t il  = tid - 16*ip;    // 0...15
xuxzh1's avatar
init  
xuxzh1 committed
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454

    dst_t * y = yy + i*QK_K + 16*ip + il;

    const float d = x[i].d;

    const uint8_t   ql = x[i].ql[16*ip + il];
    const uint8_t   qh = x[i].qh[il] >> (2*ip);
    const int8_t  * sc = x[i].scales;

    y[ 0] = d * sc[ip+0] * ((int8_t)((ql & 0xF) | (((qh >> 0) & 3) << 4)) - 32);
    y[32] = d * sc[ip+2] * ((int8_t)((ql  >> 4) | (((qh >> 4) & 3) << 4)) - 32);
#endif
}

template<typename dst_t>
static void dequantize_block_iq2_xxs(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                     const sycl::nd_item<3> &item_ct1,
                                     const uint64_t *iq2xxs_grid_ptr,
                                     const uint8_t *ksigns_iq2xs_ptr,
                                     const uint8_t *kmask_iq2xs_ptr) {

xuxzh1's avatar
update  
xuxzh1 committed
455
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
456
457
    const block_iq2_xxs * x = (const block_iq2_xxs  *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
458
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
459
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
460
461
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
    dst_t * y = yy + i*QK_K + 32*ib + 8*il;
    const uint16_t * q2 = x[i].qs + 4*ib;
    const uint8_t  * aux8 = (const uint8_t *)q2;
    const uint8_t  * grid = (const uint8_t *)(iq2xxs_grid_ptr + aux8[il]);
    const uint32_t aux32 = q2[2] | (q2[3] << 16);
    const float d = (float)x[i].d * (0.5f + (aux32 >> 28)) * 0.25f;
    const uint8_t signs = ksigns_iq2xs_ptr[(aux32 >> 7*il) & 127];
    for (int j = 0; j < 8; ++j) y[j] = d * grid[j] * (signs & kmask_iq2xs_ptr[j] ? -1.f : 1.f);
#else
    assert(false);
#endif

}

template<typename dst_t>
static void dequantize_block_iq2_xs(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                    const sycl::nd_item<3> &item_ct1,
                                    const uint64_t *iq2xs_grid,
                                    const uint8_t *ksigns_iq2xs,
                                    const uint8_t *kmask_iq2xs) {

xuxzh1's avatar
update  
xuxzh1 committed
483
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
484
485
    const block_iq2_xs * x = (const block_iq2_xs *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
486
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
487
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
488
489
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
    dst_t * y = yy + i*QK_K + 32*ib + 8*il;
    const uint16_t * q2 = x[i].qs + 4*ib;
    const uint8_t  * grid = (const uint8_t *)(iq2xs_grid + (q2[il] & 511));
    const float d = (float)x[i].d * (0.5f + ((x[i].scales[ib] >> 4*(il/2)) & 0xf)) * 0.25f;
    const uint8_t signs = ksigns_iq2xs[q2[il] >> 9];
    for (int j = 0; j < 8; ++j) y[j] = d * grid[j] * (signs & kmask_iq2xs[j] ? -1.f : 1.f);
#else
    assert(false);
#endif

}

template <typename dst_t>
__dpct_inline__ static void
dequantize_block_iq2_s(const void *__restrict__ vx, dst_t *__restrict__ yy,
                       const sycl::nd_item<3> &item_ct1) {

xuxzh1's avatar
update  
xuxzh1 committed
507
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
508
509
    const block_iq2_s * x = (const block_iq2_s *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
510
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
511
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
512
513
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
    dst_t * y = yy + i*QK_K + 32*ib + 8*il;
    const uint8_t * grid = (const uint8_t *)(iq2s_grid + (x[i].qs[4*ib+il] | ((x[i].qh[ib] << (8-2*il)) & 0x300)));
    const float d = (float)x[i].d * (0.5f + ((x[i].scales[ib] >> 4*(il/2)) & 0xf)) * 0.25f;
    const uint8_t signs = x[i].qs[QK_K/8+4*ib+il];
#pragma unroll
    for (int j = 0; j < 8; ++j)
        y[j] = d * grid[j] * (signs & kmask_iq2xs[j] ? -1.f : 1.f);
#else
    assert(false);

#endif

}

template<typename dst_t>
static void dequantize_block_iq3_xxs(const void * __restrict__ vx, dst_t * __restrict__ yy,
                                     const sycl::nd_item<3> &item_ct1,
                                     const uint32_t *iq3xxs_grid,
                                     const uint8_t *ksigns_iq2xs,
                                     const uint8_t *kmask_iq2xs) {

xuxzh1's avatar
update  
xuxzh1 committed
535
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
536
537
    const block_iq3_xxs * x = (const block_iq3_xxs  *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
538
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
539
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
540
541
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
    dst_t * y = yy + i*QK_K + 32*ib + 8*il;
    const uint8_t  * q3 = x[i].qs + 8*ib;
    const uint16_t * gas = (const uint16_t *)(x[i].qs + QK_K/4) + 2*ib;
    const uint8_t  * grid1 = (const uint8_t *)(iq3xxs_grid + q3[2*il+0]);
    const uint8_t  * grid2 = (const uint8_t *)(iq3xxs_grid + q3[2*il+1]);
    const uint32_t aux32 = gas[0] | (gas[1] << 16);
    const float d = (float)x[i].d * (0.5f + (aux32 >> 28)) * 0.5f;
    const uint8_t signs = ksigns_iq2xs[(aux32 >> 7*il) & 127];
    for (int j = 0; j < 4; ++j) {
        y[j+0] = d * grid1[j] * (signs & kmask_iq2xs[j+0] ? -1.f : 1.f);
        y[j+4] = d * grid2[j] * (signs & kmask_iq2xs[j+4] ? -1.f : 1.f);
    }
#else
    assert(false);
#endif

}

template <typename dst_t>
__dpct_inline__ static void
dequantize_block_iq3_s(const void *__restrict__ vx, dst_t *__restrict__ yy,
                       const sycl::nd_item<3> &item_ct1,
                       const uint8_t *kmask_iq2xs, const uint32_t *iq3s_grid) {

xuxzh1's avatar
update  
xuxzh1 committed
566
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
567
568
    const block_iq3_s * x = (const block_iq3_s *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
569
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
570
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
571
572
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
    dst_t * y = yy + i*QK_K + 32*ib + 8*il;
    const uint8_t * qs = x[i].qs + 8*ib;
    const uint8_t * grid1 = (const uint8_t *)(iq3s_grid + (qs[2*il+0] | ((x[i].qh[ib] << (8-2*il)) & 256)));
    const uint8_t * grid2 = (const uint8_t *)(iq3s_grid + (qs[2*il+1] | ((x[i].qh[ib] << (7-2*il)) & 256)));
    const float d = (float)x[i].d * (1 + 2*((x[i].scales[ib/2] >> 4*(ib%2)) & 0xf));
    const uint8_t signs = x[i].signs[4*ib + il];
#pragma unroll
    for (int j = 0; j < 4; ++j) {
        y[j+0] = d * grid1[j] * (signs & kmask_iq2xs[j+0] ? -1.f : 1.f);
        y[j+4] = d * grid2[j] * (signs & kmask_iq2xs[j+4] ? -1.f : 1.f);
    }
#else
    assert(false);
#endif

}

template <typename dst_t>
__dpct_inline__ static void
dequantize_block_iq1_s(const void *__restrict__ vx, dst_t *__restrict__ yy,
                       const sycl::nd_item<3> &item_ct1,
                       const uint32_t *iq1s_grid_gpu) {

xuxzh1's avatar
update  
xuxzh1 committed
596
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
597
598
    const block_iq1_s * x = (const block_iq1_s  *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
599
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
600
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
601
602
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
    dst_t * y = yy + i*QK_K + 32*ib + 8*il;
    const float delta = x[i].qh[ib] & 0x8000 ? -1 - IQ1S_DELTA : -1 + IQ1S_DELTA;
    const float d = (float)x[i].d * (2*((x[i].qh[ib] >> 12) & 7) + 1);
    uint32_t grid32[2]; const int8_t * q = (const int8_t *)grid32;
    grid32[0] = iq1s_grid_gpu[x[i].qs[4*ib+il] | (((x[i].qh[ib] >> 3*il) & 7) << 8)];
    grid32[1] = (grid32[0] >> 4) & 0x0f0f0f0f;
    grid32[0] &= 0x0f0f0f0f;
#pragma unroll
    for (int j = 0; j < 8; ++j) {
        y[j] = d * (q[j] + delta);
    }
#else
    assert(false);
#endif

}

template <typename dst_t>
__dpct_inline__ static void
dequantize_block_iq1_m(const void *__restrict__ vx, dst_t *__restrict__ yy,
                       const sycl::nd_item<3> &item_ct1,
                       const uint32_t *iq1s_grid_gpu) {

xuxzh1's avatar
update  
xuxzh1 committed
626
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
627
628
    const block_iq1_m * x = (const block_iq1_m  *) vx;

xuxzh1's avatar
update  
xuxzh1 committed
629
    const int64_t tid = item_ct1.get_local_id(2);
xuxzh1's avatar
init  
xuxzh1 committed
630
#if QK_K == 256
xuxzh1's avatar
update  
xuxzh1 committed
631
632
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
    dst_t * y = yy + i*QK_K + 32*ib + 8*il;
    const uint16_t * sc = (const uint16_t *)x[i].scales;
    iq1m_scale_t scale;
    scale.u16 = (sc[0] >> 12) | ((sc[1] >> 8) & 0x00f0) | ((sc[2] >> 4) & 0x0f00) | (sc[3] & 0xf000);
    const int ib16 = 2*ib + il/2; // sc[ib16/4] >> 3*(ib16%4) -> sc[ib/2] >> 3*((2*ib+il/2)%4);
    const float d = (float)scale.f16 * (2*((sc[ib16/4] >> 3*(ib16%4)) & 0x7) + 1);
    const float delta = x[i].qh[2*ib+il/2] & (0x08 << 4*(il%2)) ? -1 - IQ1M_DELTA : -1 + IQ1M_DELTA;
    uint32_t grid32[2]; const int8_t * q = (const int8_t *)grid32;
    grid32[0] = iq1s_grid_gpu[x[i].qs[4*ib+il] | (((x[i].qh[2*ib+il/2] >> 4*(il%2)) & 7) << 8)];
    grid32[1] = (grid32[0] >> 4) & 0x0f0f0f0f;
    grid32[0] &= 0x0f0f0f0f;
#pragma unroll
    for (int j = 0; j < 8; ++j) {
        y[j] = d * (q[j] + delta);
    }
#else
    assert(false);
#endif

}

template <typename dst_t>
__dpct_inline__ static void
dequantize_block_iq4_nl(const void *__restrict__ vx, dst_t *__restrict__ yy,
                        const sycl::nd_item<3> &item_ct1) {

xuxzh1's avatar
update  
xuxzh1 committed
659
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
660
661
    const block_iq4_nl * x = (const block_iq4_nl *) vx + i*(QK_K/QK4_NL);

xuxzh1's avatar
update  
xuxzh1 committed
662
663
664
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
    dst_t * y = yy + i*QK_K + 32*ib + 4*il;
    const uint8_t  * q4 = x[ib].qs + 4*il;
    const float d = (float)x[ib].d;
#pragma unroll
    for (int j = 0; j < 4; ++j) {
        y[j+ 0] = d * kvalues_iq4nl[q4[j] & 0xf];
        y[j+16] = d * kvalues_iq4nl[q4[j] >>  4];
    }

}


template <typename dst_t>
__dpct_inline__ static void
dequantize_block_iq4_xs(const void *__restrict__ vx, dst_t *__restrict__ yy,
                        const sycl::nd_item<3> &item_ct1) {
xuxzh1's avatar
update  
xuxzh1 committed
681
    const int64_t i = item_ct1.get_group(2);
xuxzh1's avatar
init  
xuxzh1 committed
682
683
    const block_iq4_xs * x = (const block_iq4_xs *)vx;

xuxzh1's avatar
update  
xuxzh1 committed
684
685
686
    const int64_t tid = item_ct1.get_local_id(2);
    const int64_t il = tid/8; // 0...3
    const int64_t ib = tid%8; // 0...7
xuxzh1's avatar
init  
xuxzh1 committed
687
688
689
690
691
692
693
694
695
696
697
698
    dst_t * y = yy + i*QK_K + 32*ib + 4*il;
    const uint8_t  * q4 = x[i].qs + 16*ib + 4*il;
    const float d = (float)x[i].d * ((((x[i].scales_l[ib/2] >> 4*(ib%2)) & 0xf) | (((x[i].scales_h >> 2*ib) & 3) << 4)) - 32);
#pragma unroll
    for (int j = 0; j < 4; ++j) {
        y[j+ 0] = d * kvalues_iq4nl[q4[j] & 0xf];
        y[j+16] = d * kvalues_iq4nl[q4[j] >>  4];
    }
}


#endif // GGML_SYCL_DEQUANTIZE_HPP