File size: 11,460 Bytes
64cab52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
"""GGUF k-quant packed slice-dequantization — torch, GPU-friendly, output-row slice.

Reads packed GGUF k-quant raw bytes (uint8 [out, bytes_per_row]) and dequantizes
ONLY output rows [start:end] on-the-fly — for chunked matmul via QuantizedModule.
Weights stay packed in VRAM; only the requested row slice is unpacked to fp16/fp32.

This is the memory-efficient path: a Q3_K_S 12 GB model stays ~12 GB in VRAM,
with only a small per-chunk dequant overhead (chunk_size rows at a time).

Block layouts (from ggml-common.h, same as gguf_kquant_unpack.py):
  Q8_0 (34 B):  d(f16) + qs[32] (int8).           y = d * q8
  Q4_K (144 B): d(f16) + dmin(f16) + scales[12] + qs[128] (4-bit).
                y = d * sc * q4 - dmin * m         (8 sub-blocks × 32, asymmetric)
  Q5_K (176 B): d(f16) + dmin(f16) + scales[12] + qh[32] + qs[128] (4-bit).
                y = d * sc * (q4 + 16*bit5) - dmin * m
  Q6_K (210 B): ql[128] + qh[64] + scales[16] (int8) + d(f16).
                y = d * sc * (q6 - 32)             (16 sub-blocks × 16, symmetric)

All operations are on torch tensors (view uint8/int8, bit ops via int16/int32
intermediate) so they run on GPU when the buffer is on cuda.
"""

from __future__ import annotations

import torch

from agiws_neural_quant.kquant._gguf_bits import f16_view_to_f32, unpack_scales_k4
from agiws_neural_quant.kquant.gguf_packed_q2q3 import (
    dequant_q2_k_packed_rows, dequant_q3_k_packed_rows,
)
from agiws_neural_quant.kquant.iq import (
    dequant_iq2_xxs_packed_rows,
    dequant_iq2_xs_packed,
    dequant_iq2_s_packed,
    dequant_iq3_xxs_packed,
    dequant_iq3_s_packed,
    dequant_iq1_s_packed,
    dequant_iq1_m_packed,
    dequant_iq4_nl_packed,
    dequant_iq4_xs_packed,
)


# GGML dtype ids (kept here to avoid a top-level import of converters.gguf_reader
# which would create a circular import via converters/__init__ -> universal -> quantizer).
GGML_TYPE_Q8_0 = 8
GGML_TYPE_Q4_K = 12
GGML_TYPE_Q5_K = 13
GGML_TYPE_Q6_K = 14
GGML_TYPE_Q2_K = 10
GGML_TYPE_Q3_K = 11
GGML_TYPE_IQ2_XXS = 16
GGML_TYPE_IQ2_XS = 17
GGML_TYPE_IQ3_XXS = 18
GGML_TYPE_IQ1_S = 19
GGML_TYPE_IQ4_NL = 20
GGML_TYPE_IQ3_S = 21
GGML_TYPE_IQ2_S = 22
GGML_TYPE_IQ4_XS = 23
GGML_TYPE_IQ1_M = 29


# Aliases kept for any external callers / tests.
def _f16_view_to_f32(u8: torch.Tensor) -> torch.Tensor:
    return f16_view_to_f32(u8)


def _unpack_scales_k4(scales: torch.Tensor):
    return unpack_scales_k4(scales)


def dequant_q8_0_packed_rows(
    raw: torch.Tensor, start: int, end: int, cols: int
) -> torch.Tensor:
    """Dequant Q8_0 rows [start:end]. raw: [out, bytes_per_row] uint8."""
    block = 32
    elem = 34
    chunk = raw[start:end].to(torch.int32)  # [cr, bytes_per_row]
    cr = chunk.shape[0]
    n_blocks = (cols + block - 1) // block
    chunk = chunk.reshape(cr, n_blocks, elem)
    d = _f16_view_to_f32(chunk[..., 0:2])  # [cr, n_blocks]
    qs = chunk[..., 2:34].to(torch.int8).to(torch.float32)  # [cr, n_blocks, 32]
    y = qs * d.unsqueeze(2)
    y = y.reshape(cr, n_blocks * block)[:, :cols]
    return y


def dequant_q4_k_packed_rows(
    raw: torch.Tensor, start: int, end: int, cols: int
) -> torch.Tensor:
    """Dequant Q4_K rows [start:end]. raw: [out, bytes_per_row] uint8."""
    block = 256
    elem = 144
    chunk = raw[start:end].to(torch.int32)
    cr = chunk.shape[0]
    n_blocks = (cols + block - 1) // block
    chunk = chunk.reshape(cr, n_blocks, elem)
    d = _f16_view_to_f32(chunk[..., 0:2])          # [cr, n_blocks]
    dmin = _f16_view_to_f32(chunk[..., 2:4])       # [cr, n_blocks]
    scales = chunk[..., 4:16].to(torch.uint8)      # [cr, n_blocks, 12]
    qs = chunk[..., 16:144]                         # [cr, n_blocks, 128]
    sc, m = _unpack_scales_k4(scales)              # each [cr, n_blocks, 8]
    sc = sc.to(torch.float32)
    m = m.to(torch.float32)
    qs_pairs = qs.reshape(cr, n_blocks, 4, 32)
    low = (qs_pairs & 0x0F).to(torch.float32)
    high = (qs_pairs >> 4).to(torch.float32)
    values = torch.empty(cr, n_blocks, 8, 32, dtype=torch.float32, device=raw.device)
    values[..., 0::2, :] = low
    values[..., 1::2, :] = high
    y = d.unsqueeze(2).unsqueeze(3) * sc.unsqueeze(3) * values \
        - dmin.unsqueeze(2).unsqueeze(3) * m.unsqueeze(3)
    y = y.reshape(cr, n_blocks * block)[:, :cols]
    return y


def dequant_q5_k_packed_rows(
    raw: torch.Tensor, start: int, end: int, cols: int
) -> torch.Tensor:
    """Dequant Q5_K rows [start:end]. raw: [out, bytes_per_row] uint8."""
    block = 256
    elem = 176
    chunk = raw[start:end].to(torch.int32)
    cr = chunk.shape[0]
    n_blocks = (cols + block - 1) // block
    chunk = chunk.reshape(cr, n_blocks, elem)
    d = _f16_view_to_f32(chunk[..., 0:2])
    dmin = _f16_view_to_f32(chunk[..., 2:4])
    scales = chunk[..., 4:16].to(torch.uint8)
    qh = chunk[..., 16:48]                          # [cr, n_blocks, 32]
    qs = chunk[..., 48:176]
    sc, m = _unpack_scales_k4(scales)
    sc = sc.to(torch.float32)
    m = m.to(torch.float32)
    qs_pairs = qs.reshape(cr, n_blocks, 4, 32)
    low = (qs_pairs & 0x0F).to(torch.float32)
    high = (qs_pairs >> 4).to(torch.float32)
    values = torch.empty(cr, n_blocks, 8, 32, dtype=torch.float32, device=raw.device)
    values[..., 0::2, :] = low
    values[..., 1::2, :] = high
    bit5 = torch.zeros(cr, n_blocks, 8, 32, dtype=torch.float32, device=raw.device)
    for k in range(4):
        bit5[..., 2 * k, :] = ((qh >> (2 * k)) & 1).to(torch.float32) * 16.0
        bit5[..., 2 * k + 1, :] = ((qh >> (2 * k + 1)) & 1).to(torch.float32) * 16.0
    values5 = values + bit5
    y = d.unsqueeze(2).unsqueeze(3) * sc.unsqueeze(3) * values5 \
        - dmin.unsqueeze(2).unsqueeze(3) * m.unsqueeze(3)
    y = y.reshape(cr, n_blocks * block)[:, :cols]
    return y


def dequant_q6_k_packed_rows(
    raw: torch.Tensor, start: int, end: int, cols: int
) -> torch.Tensor:
    """Dequant Q6_K rows [start:end]. raw: [out, bytes_per_row] uint8.

    Follows dequantize_row_q6_K (llama.cpp ggml-quants.c): per half-block n,
    q1/q3 come from ql low/high nibble of first 32 bytes, q2/q4 of bytes 32-64,
    with scale mapping sc[is+0/1/2/3] (is = l//16) -> sub-blocks 0/4/1/2
    interleaved as in the reference.
    """
    block = 256
    elem = 210
    chunk = raw[start:end].to(torch.int32)
    cr = chunk.shape[0]
    n_blocks = (cols + block - 1) // block
    chunk = chunk.reshape(cr, n_blocks, elem)
    ql = chunk[..., 0:128]
    qh = chunk[..., 128:192]
    sc = chunk[..., 192:208].to(torch.uint8).view(torch.int8).to(torch.float32)  # [cr, n_blocks, 16]
    d = _f16_view_to_f32(chunk[..., 208:210])                  # [cr, n_blocks]
    y = torch.zeros(cr, n_blocks, 256, dtype=torch.float32, device=raw.device)
    for n in range(2):
        ql_c = ql[:, :, n * 64:(n + 1) * 64]
        qh_c = qh[:, :, n * 32:(n + 1) * 32]
        q1 = ((ql_c[:, :, 0:32] & 0x0F) | (((qh_c >> 0) & 3) << 4)).to(torch.float32) - 32.0
        q2 = ((ql_c[:, :, 32:64] & 0x0F) | (((qh_c >> 2) & 3) << 4)).to(torch.float32) - 32.0
        q3 = ((ql_c[:, :, 0:32] >> 4) | (((qh_c >> 4) & 3) << 4)).to(torch.float32) - 32.0
        q4 = ((ql_c[:, :, 32:64] >> 4) | (((qh_c >> 6) & 3) << 4)).to(torch.float32) - 32.0
        # scale mapping per C dequantize_row_q6_K: y[l]=d*sc[is+0/2/4/6] (is=l//16),
        # i.e. q1->sc[0..1], q2->sc[2..3], q3->sc[4..5], q4->sc[6..7]; sc+=8 per n.
        base = n * 8
        d4 = d.unsqueeze(-1)
        off = n * 128
        y[:, :, off + 0:off + 16] = d4 * sc[:, :, base + 0].unsqueeze(-1) * q1[:, :, 0:16]
        y[:, :, off + 16:off + 32] = d4 * sc[:, :, base + 1].unsqueeze(-1) * q1[:, :, 16:32]
        y[:, :, off + 32:off + 48] = d4 * sc[:, :, base + 2].unsqueeze(-1) * q2[:, :, 0:16]
        y[:, :, off + 48:off + 64] = d4 * sc[:, :, base + 3].unsqueeze(-1) * q2[:, :, 16:32]
        y[:, :, off + 64:off + 80] = d4 * sc[:, :, base + 4].unsqueeze(-1) * q3[:, :, 0:16]
        y[:, :, off + 80:off + 96] = d4 * sc[:, :, base + 5].unsqueeze(-1) * q3[:, :, 16:32]
        y[:, :, off + 96:off + 112] = d4 * sc[:, :, base + 6].unsqueeze(-1) * q4[:, :, 0:16]
        y[:, :, off + 112:off + 128] = d4 * sc[:, :, base + 7].unsqueeze(-1) * q4[:, :, 16:32]
    return y.reshape(cr, n_blocks * block)[:, :cols]


# Registry: GGML dtype id -> (slice dequant fn, block_size, bytes_per_block).
_GGUF_SLICE_DEQUANT = {
    GGML_TYPE_Q8_0: (dequant_q8_0_packed_rows, 32, 34),
    GGML_TYPE_Q4_K: (dequant_q4_k_packed_rows, 256, 144),
    GGML_TYPE_Q5_K: (dequant_q5_k_packed_rows, 256, 176),
    GGML_TYPE_Q6_K: (dequant_q6_k_packed_rows, 256, 210),
    GGML_TYPE_Q2_K: (dequant_q2_k_packed_rows, 256, 84),
    GGML_TYPE_Q3_K: (dequant_q3_k_packed_rows, 256, 110),
    # i-quants (QK_K = 256; IQ4_NL uses QK4_NL = 32).
    GGML_TYPE_IQ2_XXS: (dequant_iq2_xxs_packed_rows, 256, 66),
    GGML_TYPE_IQ2_XS: (dequant_iq2_xs_packed, 256, 74),
    GGML_TYPE_IQ2_S: (dequant_iq2_s_packed, 256, 82),
    GGML_TYPE_IQ3_XXS: (dequant_iq3_xxs_packed, 256, 98),
    GGML_TYPE_IQ3_S: (dequant_iq3_s_packed, 256, 110),
    GGML_TYPE_IQ1_S: (dequant_iq1_s_packed, 256, 66),
    GGML_TYPE_IQ1_M: (dequant_iq1_m_packed, 256, 56),
    GGML_TYPE_IQ4_NL: (dequant_iq4_nl_packed, 32, 18),
    GGML_TYPE_IQ4_XS: (dequant_iq4_xs_packed, 256, 136),
}


def supported_gguf_dtypes() -> set[int]:
    """GGML dtype ids that support packed slice-dequant."""
    return set(_GGUF_SLICE_DEQUANT.keys())


def dequant_gguf_slice(
    weight_raw: torch.Tensor,
    gguf_dtype: int,
    start: int,
    end: int,
    cols: int,
) -> torch.Tensor:
    """Dequantize output rows [start:end] from packed GGUF k-quant bytes.

    Args:
        weight_raw: uint8 tensor [out_total, bytes_per_row] of packed GGUF data.
        gguf_dtype: GGML_TYPE_* id (Q8_0, Q4_K, Q5_K, Q6_K, Q2_K, Q3_K).
        start, end: output row range to dequant (0-based, end exclusive).
        cols: in_features — trim the dequantized output to this many columns
              (the last block may be padded beyond cols).

    Returns:
        fp32 tensor [end-start, cols].
    """
    entry = _GGUF_SLICE_DEQUANT.get(gguf_dtype)
    if entry is None:
        from agiws_neural_quant.converters.gguf_reader import GGML_TYPE_NAMES
        raise ValueError(
            f"dequant_gguf_slice: dtype id={gguf_dtype} "
            f"({GGML_TYPE_NAMES.get(gguf_dtype, '?')}) not supported. "
            f"Supported: {sorted(GGML_TYPE_NAMES[d] for d in _GGUF_SLICE_DEQUANT)}"
        )
    fn, _block, _bpb = entry
    return fn(weight_raw, start, end, cols)


def bytes_per_row(gguf_dtype: int, cols: int) -> int:
    """Bytes per output row for a given GGUF dtype and column count."""
    entry = _GGUF_SLICE_DEQUANT.get(gguf_dtype)
    if entry is None:
        raise ValueError(f"bytes_per_row: unsupported dtype {gguf_dtype}")
    _fn, block, bpb = entry
    n_blocks = (cols + block - 1) // block
    return n_blocks * bpb


__all__ = [
    "dequant_gguf_slice",
    "dequant_q8_0_packed_rows",
    "dequant_q4_k_packed_rows",
    "dequant_q5_k_packed_rows",
    "dequant_q6_k_packed_rows",
    "dequant_q2_k_packed_rows",
    "dequant_q3_k_packed_rows",
    "dequant_iq2_xxs_packed_rows",
    "dequant_iq2_xs_packed",
    "dequant_iq2_s_packed",
    "dequant_iq3_xxs_packed",
    "dequant_iq3_s_packed",
    "dequant_iq1_s_packed",
    "dequant_iq1_m_packed",
    "dequant_iq4_nl_packed",
    "dequant_iq4_xs_packed",
    "supported_gguf_dtypes",
    "bytes_per_row",
]