-
Notifications
You must be signed in to change notification settings - Fork 988
/
Copy pathutil.test.ts
425 lines (387 loc) · 13.9 KB
/
util.test.ts
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
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
310
311
312
313
314
315
316
317
318
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
import { ChatOptions } from "../src/config";
import {
ModelNotLoadedError,
SpecifiedModelNotFoundError,
UnclearModelToUseError,
} from "../src/error";
import {
cleanModelUrl,
CustomLock,
getModelIdToUse,
getChunkedPrefillInputData,
getTopProbs,
} from "../src/support";
import { areChatOptionsListEqual } from "../src/utils";
import { MLCEngine } from "../src/engine";
import { ChatCompletionContentPartImage } from "../src/openai_api_protocols";
describe("Check getTopLogprobs correctness", () => {
test("Correctness test 1", () => {
const logitsOnCPUArray = new Float32Array([
0.05, 0.15, 0.3, 0.16, 0.04, 0.2, 0.1,
]);
const actual = getTopProbs(3, logitsOnCPUArray);
const expected: Array<[number, number]> = [
[2, 0.3],
[5, 0.2],
[3, 0.16],
];
expect(actual.length).toBe(expected.length);
for (let i = 0; i < actual.length; i++) {
expect(actual[i][0]).toBe(expected[i][0]);
expect(actual[i][1]).toBeCloseTo(expected[i][1], 4);
}
});
test("Zero top_logprobs", () => {
const logitsOnCPUArray = new Float32Array([
0.05, 0.15, 0.3, 0.16, 0.04, 0.2, 0.1,
]);
const topLogProbs = getTopProbs(0, logitsOnCPUArray);
expect(topLogProbs).toEqual([]);
});
});
describe("Test clean model URL", () => {
test("Input does not have branch or trailing /", () => {
const input = "https://huggingface.co/mlc-ai/model";
const output = cleanModelUrl(input);
const expected = "https://huggingface.co/mlc-ai/model/resolve/main/";
expect(output).toEqual(expected);
});
test("Input does not have branch but has trailing /", () => {
const input = "https://huggingface.co/mlc-ai/model/";
const output = cleanModelUrl(input);
const expected = "https://huggingface.co/mlc-ai/model/resolve/main/";
expect(output).toEqual(expected);
});
test("Input has branch but does not have trailing /", () => {
const input = "https://huggingface.co/mlc-ai/model/resolve/main";
const output = cleanModelUrl(input);
const expected = "https://huggingface.co/mlc-ai/model/resolve/main/";
expect(output).toEqual(expected);
});
test("Input has branch and trailing /", () => {
const input = "https://huggingface.co/mlc-ai/model/resolve/main/";
const output = cleanModelUrl(input);
const expected = "https://huggingface.co/mlc-ai/model/resolve/main/";
expect(output).toEqual(expected);
});
});
describe("Test getModelIdToUse", () => {
test("Specified model not found", () => {
const loadedModelIds = ["a", "b", "c"];
const requestModel = "d";
const requestName = "ChatCompletionRequest";
expect(() => {
getModelIdToUse(loadedModelIds, requestModel, requestName);
}).toThrow(
new SpecifiedModelNotFoundError(
loadedModelIds,
requestModel,
requestName,
),
);
});
test("No model loaded", () => {
const loadedModelIds: string[] = [];
const requestModel = "d";
const requestName = "ChatCompletionRequest";
expect(() => {
getModelIdToUse(loadedModelIds, requestModel, requestName);
}).toThrow(new ModelNotLoadedError(requestName));
});
test("Unclear what model to use, undefined", () => {
const loadedModelIds = ["a", "b", "c"];
const requestModel = undefined;
const requestName = "ChatCompletionRequest";
expect(() => {
getModelIdToUse(loadedModelIds, requestModel, requestName);
}).toThrow(new UnclearModelToUseError(loadedModelIds, requestName));
});
test("Unclear what model to use, null", () => {
const loadedModelIds = ["a", "b", "c"];
const requestModel = null;
const requestName = "ChatCompletionRequest";
expect(() => {
getModelIdToUse(loadedModelIds, requestModel, requestName);
}).toThrow(new UnclearModelToUseError(loadedModelIds, requestName));
});
test("Valid config, unspecified request model", () => {
const loadedModelIds = ["a"];
const requestModel = null;
const requestName = "ChatCompletionRequest";
const selectedModelId = getModelIdToUse(
loadedModelIds,
requestModel,
requestName,
);
expect(selectedModelId).toEqual("a");
});
test("Valid config, specified request model", () => {
const loadedModelIds = ["a"];
const requestModel = "a";
const requestName = "ChatCompletionRequest";
const selectedModelId = getModelIdToUse(
loadedModelIds,
requestModel,
requestName,
);
expect(selectedModelId).toEqual("a");
});
test("Valid config, specified request model, multi models loaded", () => {
const loadedModelIds = ["a", "b", "c"];
const requestModel = "c";
const requestName = "ChatCompletionRequest";
const selectedModelId = getModelIdToUse(
loadedModelIds,
requestModel,
requestName,
);
expect(selectedModelId).toEqual("c");
});
// Cannot test MLCEngine.getLLMStates E2E because `instanceof LLMChatPipeline` would not pass
// with dummy pipeline variables
test("E2E test with MLCEngine not loading a model for APIs", () => {
const engine = new MLCEngine();
expect(async () => {
await engine.chatCompletion({
messages: [{ role: "user", content: "hi" }],
});
}).rejects.toThrow(new ModelNotLoadedError("ChatCompletionRequest"));
expect(async () => {
await engine.getMessage();
}).rejects.toThrow(new ModelNotLoadedError("getMessage"));
// resetChat should not throw error because it is allowed to resetChat before pipeline
// established, as a no-op
expect(async () => {
await engine.resetChat();
}).not.toThrow(new ModelNotLoadedError("resetChat"));
});
test("E2E test with MLCEngine with two models without specifying a model", () => {
const engine = new MLCEngine() as any;
engine.loadedModelIdToPipeline = new Map<string, any>();
engine.loadedModelIdToPipeline.set("model1", "dummyLLMChatPipeline");
engine.loadedModelIdToPipeline.set("model2", "dummyLLMChatPipeline");
const loadedModelIds = ["model1", "model2"];
expect(async () => {
await engine.chatCompletion({
messages: [{ role: "user", content: "hi" }],
});
}).rejects.toThrow(
new UnclearModelToUseError(loadedModelIds, "ChatCompletionRequest"),
);
expect(async () => {
await engine.getMessage();
}).rejects.toThrow(
new UnclearModelToUseError(loadedModelIds, "getMessage"),
);
expect(async () => {
await engine.resetChat();
}).rejects.toThrow(new UnclearModelToUseError(loadedModelIds, "resetChat"));
});
test("E2E test with MLCEngine with two models specifying wrong model", () => {
const engine = new MLCEngine() as any;
engine.loadedModelIdToPipeline = new Map<string, any>();
engine.loadedModelIdToPipeline.set("model1", "dummyLLMChatPipeline");
engine.loadedModelIdToPipeline.set("model2", "dummyLLMChatPipeline");
const loadedModelIds = ["model1", "model2"];
const requestedModelId = "model3";
expect(async () => {
await engine.chatCompletion({
messages: [{ role: "user", content: "hi" }],
model: requestedModelId,
});
}).rejects.toThrow(
new SpecifiedModelNotFoundError(
loadedModelIds,
requestedModelId,
"ChatCompletionRequest",
),
);
expect(async () => {
await engine.getMessage(requestedModelId);
}).rejects.toThrow(
new SpecifiedModelNotFoundError(
loadedModelIds,
requestedModelId,
"getMessage",
),
);
expect(async () => {
await engine.runtimeStatsText(requestedModelId);
}).rejects.toThrow(
new SpecifiedModelNotFoundError(
loadedModelIds,
requestedModelId,
"runtimeStatsText",
),
);
// resetChat should not throw error because it is allowed to resetChat before pipeline
// established, as a no-op
expect(async () => {
await engine.resetChat(false, requestedModelId);
}).not.toThrow(
new SpecifiedModelNotFoundError(
loadedModelIds,
requestedModelId,
"resetChat",
),
);
});
});
describe("Test areChatOptionsListEqual", () => {
const dummyChatOpts1: ChatOptions = { tokenizer_files: ["a", "b"] };
const dummyChatOpts2: ChatOptions = {};
const dummyChatOpts3: ChatOptions = { tokenizer_files: ["a", "b"] };
const dummyChatOpts4: ChatOptions = {
tokenizer_files: ["a", "b"],
top_p: 0.5,
};
test("Two undefined", () => {
const options1: ChatOptions[] | undefined = undefined;
const options2: ChatOptions[] | undefined = undefined;
expect(areChatOptionsListEqual(options1, options2)).toEqual(true);
});
test("One undefined", () => {
const options1: ChatOptions[] | undefined = [dummyChatOpts1];
const options2: ChatOptions[] | undefined = undefined;
expect(areChatOptionsListEqual(options1, options2)).toEqual(false);
});
test("Both defined, not equal", () => {
const options1: ChatOptions[] | undefined = [dummyChatOpts1];
const options2: ChatOptions[] | undefined = [dummyChatOpts2];
expect(areChatOptionsListEqual(options1, options2)).toEqual(false);
});
test("Different size", () => {
const options1: ChatOptions[] | undefined = [
dummyChatOpts1,
dummyChatOpts3,
];
const options2: ChatOptions[] | undefined = [dummyChatOpts2];
expect(areChatOptionsListEqual(options1, options2)).toEqual(false);
});
test("Same size, not equal 1", () => {
const options1: ChatOptions[] | undefined = [
dummyChatOpts1,
dummyChatOpts3,
];
const options2: ChatOptions[] | undefined = [
dummyChatOpts1,
dummyChatOpts2,
];
expect(areChatOptionsListEqual(options1, options2)).toEqual(false);
});
test("Same size, not equal 2", () => {
const options1: ChatOptions[] | undefined = [
dummyChatOpts1,
dummyChatOpts3,
];
const options2: ChatOptions[] | undefined = [
dummyChatOpts1,
dummyChatOpts4,
];
expect(areChatOptionsListEqual(options1, options2)).toEqual(false);
});
test("Same size, equal", () => {
const options1: ChatOptions[] | undefined = [
dummyChatOpts1,
dummyChatOpts3,
];
const options2: ChatOptions[] | undefined = [
dummyChatOpts3,
dummyChatOpts1,
];
expect(areChatOptionsListEqual(options1, options2)).toEqual(true);
});
});
describe("Test getChunkedPrefillInputData", () => {
const rangeArr = (start: number, end: number) =>
Array.from({ length: end - start }, (v, k) => k + start);
type ImageURL = ChatCompletionContentPartImage.ImageURL;
const prefillChunkSize = 2048;
const image1 = { url: "url1" } as ImageURL;
const image2 = { url: "url2" } as ImageURL;
test("With image data", async () => {
const inputData = [
rangeArr(0, 200),
image1, // 1921 size
rangeArr(0, 10),
];
const chunks = getChunkedPrefillInputData(inputData, prefillChunkSize);
const expectedChunks = [[rangeArr(0, 200)], [image1, rangeArr(0, 10)]];
const expectedChunkLens = [200, 1931];
expect(chunks).toEqual([expectedChunks, expectedChunkLens]);
});
test("Single image data", async () => {
const inputData = [image1];
const chunks = getChunkedPrefillInputData(inputData, prefillChunkSize);
const expectedChunks = [[image1]];
const expectedChunkLens = [1921];
expect(chunks).toEqual([expectedChunks, expectedChunkLens]);
});
test("Two images", async () => {
const inputData = [image1, image2];
const chunks = getChunkedPrefillInputData(inputData, prefillChunkSize);
const expectedChunks = [[image1], [image2]];
const expectedChunkLens = [1921, 1921];
expect(chunks).toEqual([expectedChunks, expectedChunkLens]);
});
test("Single token array that needs to be chunked", async () => {
const inputData = [rangeArr(0, 4097)];
const chunks = getChunkedPrefillInputData(inputData, prefillChunkSize);
const expectedChunks = [
[rangeArr(0, 2048)],
[rangeArr(2048, 4096)],
[rangeArr(4096, 4097)],
];
const expectedChunkLens = [2048, 2048, 1];
expect(chunks).toEqual([expectedChunks, expectedChunkLens]);
});
test("Single token array that does not need to be chunked", async () => {
const inputData = [rangeArr(0, 2048)];
const chunks = getChunkedPrefillInputData(inputData, prefillChunkSize);
const expectedChunks = [[rangeArr(0, 2048)]];
const expectedChunkLens = [2048];
expect(chunks).toEqual([expectedChunks, expectedChunkLens]);
});
test("Token array that needs to be chunked, grouped with others", async () => {
const inputData = [
image1, // 1921
rangeArr(0, 2300),
image2,
];
const chunks = getChunkedPrefillInputData(inputData, prefillChunkSize);
const expectedChunks = [
[image1, rangeArr(0, 127)], // 127 = 2048 - 1921
[rangeArr(127, 2175)], // 2175 = 127 + 2048
[rangeArr(2175, 2300), image2],
];
const expectedChunkLens = [2048, 2048, 2046];
expect(chunks).toEqual([expectedChunks, expectedChunkLens]);
});
test("Image followed by token that fits just well.", async () => {
const inputData = [
image1, // 1921
rangeArr(0, 127),
image2,
];
const chunks = getChunkedPrefillInputData(inputData, prefillChunkSize);
const expectedChunks = [[image1, rangeArr(0, 127)], [image2]];
const expectedChunkLens = [2048, 1921];
expect(chunks).toEqual([expectedChunks, expectedChunkLens]);
});
});
// Refers to https://jackpordi.com/posts/locks-in-js-because-why-not
describe("Test CustomLock", () => {
test("Ensure five +1's give 5 with sleep between read/write", async () => {
let value = 0;
const lock = new CustomLock();
async function addOne() {
await lock.acquire();
const readValue = value;
await new Promise((r) => setTimeout(r, 100));
value = readValue + 1;
await lock.release();
}
await Promise.all([addOne(), addOne(), addOne(), addOne(), addOne()]);
expect(value).toEqual(5); // without a lock, most likely less than 5
});
});