webinfer 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/dist/attention/block-sparse/format.d.ts +52 -0
- package/dist/attention/block-sparse/patterns/causal.d.ts +16 -0
- package/dist/attention/block-sparse/patterns/sliding.d.ts +22 -0
- package/dist/attention/flash-attention.d.ts +30 -0
- package/dist/attention/index.d.ts +9 -0
- package/dist/attention/paged-kv/block-manager.d.ts +102 -0
- package/dist/attention/paged-kv/index.d.ts +5 -0
- package/dist/attention/paged-kv/page-table.d.ts +99 -0
- package/dist/attention/scheduler.d.ts +40 -0
- package/dist/core/buffer-pool.d.ts +18 -0
- package/dist/core/device.d.ts +23 -0
- package/dist/core/tensor.d.ts +25 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +4228 -0
- package/dist/inference/engine.d.ts +69 -0
- package/dist/inference/generate.d.ts +30 -0
- package/dist/inference/index.d.ts +7 -0
- package/dist/inference/types.d.ts +161 -0
- package/dist/jit/compiler.d.ts +23 -0
- package/dist/jit/kernel-cache.d.ts +21 -0
- package/dist/model/gguf.d.ts +90 -0
- package/dist/model/index.d.ts +16 -0
- package/dist/model/safetensors.d.ts +38 -0
- package/dist/model/types.d.ts +182 -0
- package/dist/ops/activations.d.ts +43 -0
- package/dist/ops/elementwise.d.ts +38 -0
- package/dist/ops/embedding.d.ts +30 -0
- package/dist/ops/matmul.d.ts +21 -0
- package/dist/ops/normalization.d.ts +24 -0
- package/dist/ops/reshape.d.ts +39 -0
- package/dist/ops/rope.d.ts +32 -0
- package/dist/ops/softmax.d.ts +18 -0
- package/dist/quantization/index.d.ts +6 -0
- package/dist/quantization/qmatmul.d.ts +38 -0
- package/dist/quantization/quantize.d.ts +52 -0
- package/dist/sampling/index.d.ts +6 -0
- package/dist/sampling/sampler.d.ts +39 -0
- package/dist/sampling/top-k.d.ts +24 -0
- package/dist/sampling/top-p.d.ts +14 -0
- package/package.json +54 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Block-Sparse CSR Format
|
|
3
|
+
* Enables a single kernel to support all attention variants
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Block-Sparse CSR representation of attention mask
|
|
7
|
+
*/
|
|
8
|
+
export interface BlockSparseCSR {
|
|
9
|
+
blockSize: number;
|
|
10
|
+
rowPtr: Uint32Array;
|
|
11
|
+
colIdx: Uint32Array;
|
|
12
|
+
blockMask?: Uint8Array;
|
|
13
|
+
numRows: number;
|
|
14
|
+
numCols: number;
|
|
15
|
+
numBlockRows: number;
|
|
16
|
+
numBlockCols: number;
|
|
17
|
+
nnzBlocks: number;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Attention pattern types
|
|
21
|
+
*/
|
|
22
|
+
export type AttentionPattern = {
|
|
23
|
+
type: "dense";
|
|
24
|
+
} | {
|
|
25
|
+
type: "causal";
|
|
26
|
+
} | {
|
|
27
|
+
type: "sliding";
|
|
28
|
+
windowSize: number;
|
|
29
|
+
} | {
|
|
30
|
+
type: "global-local";
|
|
31
|
+
globalTokens: number[];
|
|
32
|
+
localWindow: number;
|
|
33
|
+
} | {
|
|
34
|
+
type: "custom";
|
|
35
|
+
mask: boolean[][];
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Build BS-CSR from attention pattern
|
|
39
|
+
*/
|
|
40
|
+
export declare function buildBlockSparseCSR(seqLen: number, pattern: AttentionPattern, blockSize?: number): BlockSparseCSR;
|
|
41
|
+
/**
|
|
42
|
+
* Calculate sparsity ratio of the mask
|
|
43
|
+
*/
|
|
44
|
+
export declare function getSparsityRatio(csr: BlockSparseCSR): number;
|
|
45
|
+
/**
|
|
46
|
+
* Estimate memory savings from sparsity
|
|
47
|
+
*/
|
|
48
|
+
export declare function estimateMemorySavings(csr: BlockSparseCSR): {
|
|
49
|
+
denseBytes: number;
|
|
50
|
+
sparseBytes: number;
|
|
51
|
+
savingsRatio: number;
|
|
52
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Causal (autoregressive) attention pattern
|
|
3
|
+
* Used in GPT, Llama, and most decoder-only models
|
|
4
|
+
*/
|
|
5
|
+
import { type BlockSparseCSR } from "../format.ts";
|
|
6
|
+
/**
|
|
7
|
+
* Build causal attention mask in BS-CSR format
|
|
8
|
+
* Each query position can only attend to positions <= its own position
|
|
9
|
+
*/
|
|
10
|
+
export declare function buildCausalMask(seqLen: number, blockSize?: number): BlockSparseCSR;
|
|
11
|
+
/**
|
|
12
|
+
* Get the theoretical sparsity of causal attention
|
|
13
|
+
* For a sequence of length N, causal attention has N*(N+1)/2 non-zero elements
|
|
14
|
+
* out of N*N total, giving ~50% sparsity for large N
|
|
15
|
+
*/
|
|
16
|
+
export declare function getCausalSparsity(seqLen: number): number;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sliding window attention pattern
|
|
3
|
+
* Used in Mistral and other efficient attention models
|
|
4
|
+
*/
|
|
5
|
+
import { type BlockSparseCSR } from "../format.ts";
|
|
6
|
+
/**
|
|
7
|
+
* Build sliding window attention mask in BS-CSR format
|
|
8
|
+
* Each query can only attend to the previous `windowSize` positions
|
|
9
|
+
*/
|
|
10
|
+
export declare function buildSlidingWindowMask(seqLen: number, windowSize: number, blockSize?: number): BlockSparseCSR;
|
|
11
|
+
/**
|
|
12
|
+
* Get the theoretical sparsity of sliding window attention
|
|
13
|
+
* For window size W and sequence length N:
|
|
14
|
+
* - First W positions have triangular attention (like causal)
|
|
15
|
+
* - Remaining N-W positions have W+1 attention each
|
|
16
|
+
*/
|
|
17
|
+
export declare function getSlidingWindowSparsity(seqLen: number, windowSize: number): number;
|
|
18
|
+
/**
|
|
19
|
+
* Sliding window with causal constraint
|
|
20
|
+
* This is what Mistral uses - combines sliding window with causal masking
|
|
21
|
+
*/
|
|
22
|
+
export declare function buildCausalSlidingWindowMask(seqLen: number, windowSize: number, blockSize?: number): BlockSparseCSR;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FlashAttention Implementation for WebGPU
|
|
3
|
+
* Memory-efficient attention using online softmax and tiling
|
|
4
|
+
*/
|
|
5
|
+
import type { WebInferDevice } from "../core/device.ts";
|
|
6
|
+
import { Tensor } from "../core/tensor.ts";
|
|
7
|
+
import type { AttentionPattern } from "./block-sparse/format.ts";
|
|
8
|
+
export interface AttentionConfig {
|
|
9
|
+
numHeads: number;
|
|
10
|
+
headDim: number;
|
|
11
|
+
seqLen: number;
|
|
12
|
+
scale?: number;
|
|
13
|
+
pattern?: AttentionPattern;
|
|
14
|
+
blockSize?: number;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* FlashAttention forward pass
|
|
18
|
+
* Computes: softmax(Q @ K^T / sqrt(d)) @ V
|
|
19
|
+
*
|
|
20
|
+
* @param device WebInfer device
|
|
21
|
+
* @param q Query tensor [batch, seqLen, numHeads, headDim]
|
|
22
|
+
* @param k Key tensor [batch, seqLen, numHeads, headDim]
|
|
23
|
+
* @param v Value tensor [batch, seqLen, numHeads, headDim]
|
|
24
|
+
* @param config Attention configuration
|
|
25
|
+
*/
|
|
26
|
+
export declare function flashAttention(device: WebInferDevice, q: Tensor, k: Tensor, v: Tensor, config: AttentionConfig): Promise<Tensor>;
|
|
27
|
+
/**
|
|
28
|
+
* CPU reference implementation for verification
|
|
29
|
+
*/
|
|
30
|
+
export declare function attentionCPU(q: Float32Array, k: Float32Array, v: Float32Array, seqLen: number, numHeads: number, headDim: number, causal?: boolean): Float32Array;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Attention Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export { flashAttention, attentionCPU, type AttentionConfig, } from "./flash-attention.ts";
|
|
5
|
+
export { buildBlockSparseCSR, getSparsityRatio, estimateMemorySavings, type BlockSparseCSR, type AttentionPattern, } from "./block-sparse/format.ts";
|
|
6
|
+
export { buildCausalMask, getCausalSparsity } from "./block-sparse/patterns/causal.ts";
|
|
7
|
+
export { buildSlidingWindowMask, buildCausalSlidingWindowMask, getSlidingWindowSparsity, } from "./block-sparse/patterns/sliding.ts";
|
|
8
|
+
export { AttentionScheduler, type ChunkPlan } from "./scheduler.ts";
|
|
9
|
+
export { PagedKVCache, type PagedKVCacheConfig, type SequenceEntry, BlockManager, ContinuousBatchScheduler, type BlockManagerConfig, type AllocationPolicy, type AllocationRequest, } from "./paged-kv/index.ts";
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Block Manager - High-level memory management for PagedKVCache
|
|
3
|
+
*/
|
|
4
|
+
import type { WebInferDevice } from "../../core/device.ts";
|
|
5
|
+
import { PagedKVCache, type PagedKVCacheConfig } from "./page-table.ts";
|
|
6
|
+
/**
|
|
7
|
+
* Block allocation policy
|
|
8
|
+
*/
|
|
9
|
+
export type AllocationPolicy = "greedy" | "best-fit" | "first-fit";
|
|
10
|
+
/**
|
|
11
|
+
* Block Manager configuration
|
|
12
|
+
*/
|
|
13
|
+
export interface BlockManagerConfig extends PagedKVCacheConfig {
|
|
14
|
+
policy?: AllocationPolicy;
|
|
15
|
+
reservedPages?: number;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Request for KV cache allocation
|
|
19
|
+
*/
|
|
20
|
+
export interface AllocationRequest {
|
|
21
|
+
seqId?: number;
|
|
22
|
+
numTokens: number;
|
|
23
|
+
priority?: number;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Block Manager - Manages KV cache allocation across multiple sequences
|
|
27
|
+
*/
|
|
28
|
+
export declare class BlockManager {
|
|
29
|
+
private cache;
|
|
30
|
+
private config;
|
|
31
|
+
private priorities;
|
|
32
|
+
constructor(device: WebInferDevice, config: BlockManagerConfig);
|
|
33
|
+
/**
|
|
34
|
+
* Check if allocation is possible
|
|
35
|
+
*/
|
|
36
|
+
canAllocate(request: AllocationRequest): boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Allocate or extend a sequence
|
|
39
|
+
*/
|
|
40
|
+
allocate(request: AllocationRequest): number;
|
|
41
|
+
/**
|
|
42
|
+
* Free a sequence
|
|
43
|
+
*/
|
|
44
|
+
free(seqId: number): void;
|
|
45
|
+
/**
|
|
46
|
+
* Evict lowest priority sequences until we have enough free pages
|
|
47
|
+
*/
|
|
48
|
+
evict(neededPages: number): number[];
|
|
49
|
+
/**
|
|
50
|
+
* Get memory utilization
|
|
51
|
+
*/
|
|
52
|
+
getUtilization(): number;
|
|
53
|
+
/**
|
|
54
|
+
* Get the underlying cache
|
|
55
|
+
*/
|
|
56
|
+
getCache(): PagedKVCache;
|
|
57
|
+
/**
|
|
58
|
+
* Get statistics
|
|
59
|
+
*/
|
|
60
|
+
getStats(): {
|
|
61
|
+
totalPages: number;
|
|
62
|
+
usedPages: number;
|
|
63
|
+
freePages: number;
|
|
64
|
+
numSequences: number;
|
|
65
|
+
memoryUsedBytes: number;
|
|
66
|
+
memoryTotalBytes: number;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Dispose resources
|
|
70
|
+
*/
|
|
71
|
+
dispose(): void;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Scheduler for continuous batching with PagedAttention
|
|
75
|
+
*/
|
|
76
|
+
export declare class ContinuousBatchScheduler {
|
|
77
|
+
private blockManager;
|
|
78
|
+
private runningSequences;
|
|
79
|
+
private waitingQueue;
|
|
80
|
+
constructor(blockManager: BlockManager);
|
|
81
|
+
/**
|
|
82
|
+
* Add a new request to the scheduler
|
|
83
|
+
*/
|
|
84
|
+
addRequest(request: AllocationRequest): void;
|
|
85
|
+
/**
|
|
86
|
+
* Complete a sequence
|
|
87
|
+
*/
|
|
88
|
+
completeSequence(seqId: number): void;
|
|
89
|
+
/**
|
|
90
|
+
* Extend a running sequence
|
|
91
|
+
*/
|
|
92
|
+
extendSequence(seqId: number, numNewTokens: number): boolean;
|
|
93
|
+
private scheduleWaiting;
|
|
94
|
+
/**
|
|
95
|
+
* Get running sequence count
|
|
96
|
+
*/
|
|
97
|
+
getRunningCount(): number;
|
|
98
|
+
/**
|
|
99
|
+
* Get waiting request count
|
|
100
|
+
*/
|
|
101
|
+
getWaitingCount(): number;
|
|
102
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PagedKV Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export { PagedKVCache, type PagedKVCacheConfig, type SequenceEntry, } from "./page-table.ts";
|
|
5
|
+
export { BlockManager, ContinuousBatchScheduler, type BlockManagerConfig, type AllocationPolicy, type AllocationRequest, } from "./block-manager.ts";
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Paged KV Cache - Software page table for efficient memory management
|
|
3
|
+
* Inspired by vLLM's PagedAttention
|
|
4
|
+
*/
|
|
5
|
+
import type { WebInferDevice } from "../../core/device.ts";
|
|
6
|
+
/**
|
|
7
|
+
* Configuration for PagedKVCache
|
|
8
|
+
*/
|
|
9
|
+
export interface PagedKVCacheConfig {
|
|
10
|
+
numLayers: number;
|
|
11
|
+
numHeads: number;
|
|
12
|
+
headDim: number;
|
|
13
|
+
pageSize: number;
|
|
14
|
+
maxPages: number;
|
|
15
|
+
dtype?: "f32" | "f16";
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Entry in the page table for a sequence
|
|
19
|
+
*/
|
|
20
|
+
export interface SequenceEntry {
|
|
21
|
+
seqId: number;
|
|
22
|
+
pages: number[];
|
|
23
|
+
length: number;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* PagedKVCache - Manages KV cache with paging for efficient memory use
|
|
27
|
+
*
|
|
28
|
+
* Benefits:
|
|
29
|
+
* 1. No memory fragmentation - pages are fixed size
|
|
30
|
+
* 2. Efficient memory sharing - multiple sequences can share cache
|
|
31
|
+
* 3. Dynamic allocation - only allocate pages as needed
|
|
32
|
+
* 4. Easy defragmentation - just remap logical to physical pages
|
|
33
|
+
*/
|
|
34
|
+
export declare class PagedKVCache {
|
|
35
|
+
private device;
|
|
36
|
+
private config;
|
|
37
|
+
private keyCache;
|
|
38
|
+
private valueCache;
|
|
39
|
+
private pageTable;
|
|
40
|
+
private freePages;
|
|
41
|
+
private nextSeqId;
|
|
42
|
+
constructor(device: WebInferDevice, config: PagedKVCacheConfig);
|
|
43
|
+
/**
|
|
44
|
+
* Allocate pages for a new sequence
|
|
45
|
+
*/
|
|
46
|
+
allocateSequence(initialLength?: number): number;
|
|
47
|
+
/**
|
|
48
|
+
* Extend a sequence with new tokens
|
|
49
|
+
*/
|
|
50
|
+
extendSequence(seqId: number, numNewTokens: number): void;
|
|
51
|
+
/**
|
|
52
|
+
* Free a sequence and its pages
|
|
53
|
+
*/
|
|
54
|
+
freeSequence(seqId: number): void;
|
|
55
|
+
/**
|
|
56
|
+
* Get page indices for a sequence
|
|
57
|
+
*/
|
|
58
|
+
getSequencePages(seqId: number): number[] | null;
|
|
59
|
+
/**
|
|
60
|
+
* Get sequence length
|
|
61
|
+
*/
|
|
62
|
+
getSequenceLength(seqId: number): number;
|
|
63
|
+
/**
|
|
64
|
+
* Get the physical page index for a given sequence position
|
|
65
|
+
*/
|
|
66
|
+
getPageForPosition(seqId: number, position: number): number | null;
|
|
67
|
+
/**
|
|
68
|
+
* Get offset within a page for a given position
|
|
69
|
+
*/
|
|
70
|
+
getOffsetInPage(position: number): number;
|
|
71
|
+
private allocatePage;
|
|
72
|
+
private freePage;
|
|
73
|
+
/**
|
|
74
|
+
* Get cache statistics
|
|
75
|
+
*/
|
|
76
|
+
getStats(): {
|
|
77
|
+
totalPages: number;
|
|
78
|
+
usedPages: number;
|
|
79
|
+
freePages: number;
|
|
80
|
+
numSequences: number;
|
|
81
|
+
memoryUsedBytes: number;
|
|
82
|
+
memoryTotalBytes: number;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Get GPU buffers for kernel binding
|
|
86
|
+
*/
|
|
87
|
+
getBuffers(): {
|
|
88
|
+
keyCache: GPUBuffer;
|
|
89
|
+
valueCache: GPUBuffer;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Get configuration
|
|
93
|
+
*/
|
|
94
|
+
getConfig(): PagedKVCacheConfig;
|
|
95
|
+
/**
|
|
96
|
+
* Dispose GPU resources
|
|
97
|
+
*/
|
|
98
|
+
dispose(): void;
|
|
99
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Attention Scheduler - Prevents TDR (GPU timeout) by splitting long sequences
|
|
3
|
+
*/
|
|
4
|
+
import type { WebInferDevice } from "../core/device.ts";
|
|
5
|
+
export interface ChunkPlan {
|
|
6
|
+
numChunks: number;
|
|
7
|
+
chunkSize: number;
|
|
8
|
+
estimatedTimeMs: number;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Attention Scheduler for TDR prevention
|
|
12
|
+
* Splits long sequences into chunks to avoid GPU timeout
|
|
13
|
+
*/
|
|
14
|
+
export declare class AttentionScheduler {
|
|
15
|
+
private device;
|
|
16
|
+
private tdrLimit;
|
|
17
|
+
constructor(device: WebInferDevice);
|
|
18
|
+
private detectTDRLimit;
|
|
19
|
+
/**
|
|
20
|
+
* Estimate execution time for attention operation
|
|
21
|
+
* Based on empirical formula: time ∝ seqLen² × numHeads × headDim
|
|
22
|
+
*/
|
|
23
|
+
estimateExecutionTime(seqLen: number, numHeads: number, headDim: number): number;
|
|
24
|
+
/**
|
|
25
|
+
* Compute chunk plan for given sequence length
|
|
26
|
+
*/
|
|
27
|
+
computeChunkPlan(seqLen: number, numHeads: number, headDim: number): ChunkPlan;
|
|
28
|
+
/**
|
|
29
|
+
* Yield to main thread to prevent TDR
|
|
30
|
+
*/
|
|
31
|
+
yieldToMain(): Promise<void>;
|
|
32
|
+
/**
|
|
33
|
+
* Check if sequence might cause TDR
|
|
34
|
+
*/
|
|
35
|
+
mightCauseTDR(seqLen: number, numHeads: number, headDim: number): boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Get recommended maximum sequence length for single-pass execution
|
|
38
|
+
*/
|
|
39
|
+
getMaxSinglePassSeqLen(numHeads: number, headDim: number): number;
|
|
40
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GPU Buffer Pool - Reduces allocation overhead and memory fragmentation
|
|
3
|
+
*/
|
|
4
|
+
export declare class BufferPool {
|
|
5
|
+
private device;
|
|
6
|
+
private pools;
|
|
7
|
+
private sizeClasses;
|
|
8
|
+
constructor(device: GPUDevice);
|
|
9
|
+
private getSizeClass;
|
|
10
|
+
acquire(size: number, usage: GPUBufferUsageFlags): GPUBuffer;
|
|
11
|
+
release(buffer: GPUBuffer): void;
|
|
12
|
+
getStats(): {
|
|
13
|
+
totalBuffers: number;
|
|
14
|
+
inUse: number;
|
|
15
|
+
totalBytes: number;
|
|
16
|
+
};
|
|
17
|
+
dispose(): void;
|
|
18
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WebGPU Device Management
|
|
3
|
+
*/
|
|
4
|
+
export interface DeviceInfo {
|
|
5
|
+
vendor: "apple" | "nvidia" | "intel" | "amd" | "unknown";
|
|
6
|
+
architecture: string;
|
|
7
|
+
maxWorkgroupSize: number;
|
|
8
|
+
maxComputeInvocationsPerWorkgroup: number;
|
|
9
|
+
maxStorageBufferBindingSize: number;
|
|
10
|
+
}
|
|
11
|
+
export declare class WebInferDevice {
|
|
12
|
+
private _device;
|
|
13
|
+
private _info;
|
|
14
|
+
private constructor();
|
|
15
|
+
static create(): Promise<WebInferDevice>;
|
|
16
|
+
private static detectDeviceInfo;
|
|
17
|
+
get device(): GPUDevice;
|
|
18
|
+
get info(): DeviceInfo;
|
|
19
|
+
get limits(): GPUSupportedLimits;
|
|
20
|
+
createCommandEncoder(): GPUCommandEncoder;
|
|
21
|
+
submit(commandBuffers: GPUCommandBuffer[]): void;
|
|
22
|
+
dispose(): void;
|
|
23
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tensor - GPU-backed multidimensional array
|
|
3
|
+
*/
|
|
4
|
+
import type { WebInferDevice } from "./device.ts";
|
|
5
|
+
export type DType = "f32" | "f16" | "i32" | "u32";
|
|
6
|
+
export declare class Tensor {
|
|
7
|
+
private _device;
|
|
8
|
+
private _shape;
|
|
9
|
+
private _dtype;
|
|
10
|
+
private _buffer;
|
|
11
|
+
private _disposed;
|
|
12
|
+
constructor(device: WebInferDevice, shape: number[], dtype?: DType, data?: Float32Array | Uint32Array | Int32Array);
|
|
13
|
+
static fromArray(device: WebInferDevice, shape: number[], data: Float32Array, dtype?: DType): Promise<Tensor>;
|
|
14
|
+
static zeros(device: WebInferDevice, shape: number[], dtype?: DType): Tensor;
|
|
15
|
+
static rand(device: WebInferDevice, shape: number[], dtype?: DType): Tensor;
|
|
16
|
+
get shape(): readonly number[];
|
|
17
|
+
get dtype(): DType;
|
|
18
|
+
get numel(): number;
|
|
19
|
+
get byteSize(): number;
|
|
20
|
+
get buffer(): GPUBuffer;
|
|
21
|
+
get device(): WebInferDevice;
|
|
22
|
+
toArray(): Promise<Float32Array>;
|
|
23
|
+
reshape(newShape: number[]): Tensor;
|
|
24
|
+
dispose(): void;
|
|
25
|
+
}
|