kvcacheio.py 6.9 KB
Newer Older
1
2
from typing import List

3
4
5
import torch


6
7
8
9
10
11
12
def is_hip() -> bool:
    return torch.version.hip is not None


_is_hip = is_hip()


13
14
15
16
17
18
19
20
21
def transfer_kv_per_layer(
    src_k: torch.Tensor,
    dst_k: torch.Tensor,
    src_v: torch.Tensor,
    dst_v: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    item_size: int,
    block_quota: int = 2,
22
    num_warps_per_block: int = 16 if _is_hip else 32,
23
):
24
    torch.ops.sgl_kernel.transfer_kv_per_layer.default(
Zhiqiang Xie's avatar
Zhiqiang Xie committed
25
26
27
28
29
30
31
32
33
34
        src_k,
        dst_k,
        src_v,
        dst_v,
        src_indices,
        dst_indices,
        item_size,
        block_quota,
        num_warps_per_block,
    )
35
36


37
def transfer_kv_per_layer_pf_lf(
38
39
40
41
42
43
    src_k: torch.Tensor,
    dst_k: torch.Tensor,
    src_v: torch.Tensor,
    dst_v: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
44
    layer_id: int,
45
46
47
    item_size: int,
    src_layout_dim: int,
    block_quota: int = 2,
48
    num_warps_per_block: int = 16 if _is_hip else 32,
49
):
50
    torch.ops.sgl_kernel.transfer_kv_per_layer_pf_lf.default(
51
52
53
54
55
56
        src_k,
        dst_k,
        src_v,
        dst_v,
        src_indices,
        dst_indices,
57
        layer_id,
58
59
60
61
62
63
64
        item_size,
        src_layout_dim,
        block_quota,
        num_warps_per_block,
    )


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
def transfer_kv_per_layer_ph_lf(
    src_k: torch.Tensor,
    dst_k: torch.Tensor,
    src_v: torch.Tensor,
    dst_v: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    layer_id: int,
    item_size: int,
    src_layout_dim: int,
    page_size: int,
    head_num: int,
    block_quota: int = 2,
    num_warps_per_block: int = 16 if _is_hip else 32,
):
    torch.ops.sgl_kernel.transfer_kv_per_layer_ph_lf.default(
        src_k,
        dst_k,
        src_v,
        dst_v,
        src_indices,
        dst_indices,
        layer_id,
        item_size,
        src_layout_dim,
        page_size,
        head_num,
        block_quota,
        num_warps_per_block,
    )


97
98
99
100
101
102
103
def transfer_kv_all_layer(
    src_k_layers: torch.Tensor,
    dst_k_layers: torch.Tensor,
    src_v_layers: torch.Tensor,
    dst_v_layers: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
104
105
106
    item_size: int,
    num_layers: int,
    block_quota: int = 2,
107
    num_warps_per_block: int = 16 if _is_hip else 32,
108
):
109
    torch.ops.sgl_kernel.transfer_kv_all_layer.default(
Zhiqiang Xie's avatar
Zhiqiang Xie committed
110
111
112
113
114
115
116
117
118
119
120
        src_k_layers,
        dst_k_layers,
        src_v_layers,
        dst_v_layers,
        src_indices,
        dst_indices,
        item_size,
        num_layers,
        block_quota,
        num_warps_per_block,
    )
121
122


123
124
125
126
127
128
129
130
131
132
133
def transfer_kv_all_layer_lf_pf(
    src_k_layers: torch.Tensor,
    dst_k: torch.Tensor,
    src_v_layers: torch.Tensor,
    dst_v: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    item_size: int,
    dst_layout_dim: int,
    num_layers: int,
    block_quota: int = 2,
134
    num_warps_per_block: int = 16 if _is_hip else 32,
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
    torch.ops.sgl_kernel.transfer_kv_all_layer_lf_pf.default(
        src_k_layers,
        dst_k,
        src_v_layers,
        dst_v,
        src_indices,
        dst_indices,
        item_size,
        dst_layout_dim,
        num_layers,
        block_quota,
        num_warps_per_block,
    )


def transfer_kv_all_layer_lf_ph(
    src_k_layers: torch.Tensor,
    dst_k: torch.Tensor,
    src_v_layers: torch.Tensor,
    dst_v: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    item_size: int,
    dst_layout_dim: int,
    num_layers: int,
    page_size: int,
    head_num: int,
    block_quota: int = 2,
    num_warps_per_block: int = 16 if _is_hip else 32,
):
    torch.ops.sgl_kernel.transfer_kv_all_layer_lf_ph.default(
167
168
169
170
171
172
173
174
175
        src_k_layers,
        dst_k,
        src_v_layers,
        dst_v,
        src_indices,
        dst_indices,
        item_size,
        dst_layout_dim,
        num_layers,
176
177
        page_size,
        head_num,
178
179
180
181
182
183
184
185
186
187
188
189
        block_quota,
        num_warps_per_block,
    )


def transfer_kv_direct(
    src_layers: List[torch.Tensor],
    dst_layers: List[torch.Tensor],
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    page_size: int,
):
190
    torch.ops.sgl_kernel.transfer_kv_direct.default(
191
        src_layers, dst_layers, src_indices, dst_indices, page_size
192
193
194
195
196
197
198
199
200
201
202
    )


def transfer_kv_per_layer_direct_pf_lf(
    src_ptrs: List[torch.Tensor],
    dst_ptrs: List[torch.Tensor],
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    layer_id: int,
    page_size: int,
):
203
    torch.ops.sgl_kernel.transfer_kv_per_layer_direct_pf_lf.default(
204
205
206
207
208
209
210
211
212
213
214
        src_ptrs, dst_ptrs, src_indices, dst_indices, layer_id, page_size
    )


def transfer_kv_all_layer_direct_lf_pf(
    src_ptrs: List[torch.Tensor],
    dst_ptrs: List[torch.Tensor],
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    page_size: int,
):
215
    torch.ops.sgl_kernel.transfer_kv_all_layer_direct_lf_pf.default(
216
        src_ptrs, dst_ptrs, src_indices, dst_indices, page_size
217
218
219
    )


220
221
222
223
224
225
226
def transfer_kv_per_layer_mla(
    src: torch.Tensor,
    dst: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    item_size: int,
    block_quota: int = 2,
227
    num_warps_per_block: int = 16 if _is_hip else 32,
228
):
229
    torch.ops.sgl_kernel.transfer_kv_per_layer_mla.default(
Zhiqiang Xie's avatar
Zhiqiang Xie committed
230
231
232
233
234
235
236
237
        src,
        dst,
        src_indices,
        dst_indices,
        item_size,
        block_quota,
        num_warps_per_block,
    )
238
239


240
def transfer_kv_per_layer_mla_pf_lf(
241
242
243
244
    src: torch.Tensor,
    dst: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
245
    layer_id: int,
246
247
248
    item_size: int,
    src_layout_dim: int,
    block_quota: int = 2,
249
    num_warps_per_block: int = 16 if _is_hip else 32,
250
):
251
    torch.ops.sgl_kernel.transfer_kv_per_layer_mla_pf_lf.default(
252
253
254
255
        src,
        dst,
        src_indices,
        dst_indices,
256
        layer_id,
257
258
259
260
261
262
263
264
265
266
267
268
        item_size,
        src_layout_dim,
        block_quota,
        num_warps_per_block,
    )


def transfer_kv_all_layer_mla(
    src_layers: torch.Tensor,
    dst_layers: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
269
270
271
    item_size: int,
    num_layers: int,
    block_quota: int = 2,
272
    num_warps_per_block: int = 16 if _is_hip else 32,
273
):
274
    torch.ops.sgl_kernel.transfer_kv_all_layer_mla.default(
Zhiqiang Xie's avatar
Zhiqiang Xie committed
275
276
277
278
279
280
281
282
283
        src_layers,
        dst_layers,
        src_indices,
        dst_indices,
        item_size,
        num_layers,
        block_quota,
        num_warps_per_block,
    )
284
285
286
287
288
289
290
291
292
293
294


def transfer_kv_all_layer_mla_lf_pf(
    src_layers: torch.Tensor,
    dst: torch.Tensor,
    src_indices: torch.Tensor,
    dst_indices: torch.Tensor,
    item_size: int,
    dst_layout_dim: int,
    num_layers: int,
    block_quota: int = 2,
295
    num_warps_per_block: int = 16 if _is_hip else 32,
296
):
297
    torch.ops.sgl_kernel.transfer_kv_all_layer_mla_lf_pf.default(
298
299
300
301
302
303
304
305
306
307
        src_layers,
        dst,
        src_indices,
        dst_indices,
        item_size,
        dst_layout_dim,
        num_layers,
        block_quota,
        num_warps_per_block,
    )