We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5203864 commit f551091Copy full SHA for f551091
packages/gguf/src/gguf.spec.ts
@@ -294,8 +294,8 @@ describe("gguf", () => {
294
295
// Quantization handler
296
297
- it("should have GGUF_QUANT_ORDER in sync with GGMLQuantizationType enum", () => {
298
- const enumValues = Object.values(GGMLQuantizationType).filter((value) => typeof value === "number") as number[];
+ it("should have GGUF_QUANT_ORDER in sync with GGMLFileQuantizationType enum", () => {
+ const enumValues = Object.values(GGMLFileQuantizationType).filter((value) => typeof value === "number") as number[];
299
const checkValues = new Set(GGUF_QUANT_ORDER);
300
for (const value of enumValues) {
301
expect(checkValues).toContain(value);
0 commit comments