Skip to content

Commit d83f177

Browse files
committed
style: lint
1 parent 25f016d commit d83f177

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/gguf/insights/GgufInsights.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,7 @@ export class GgufInsights {
203203
const vocabularySize = llmData.vocab_size ?? this._ggufFileInfo.metadata.tokenizer?.ggml?.tokens?.length ?? 0;
204204
const embeddingSize = llmData.embedding_length ?? 0;
205205

206-
const sizeTBytes = 8; // sizeof(size_t)
207206
const floatBytes = 4; // sizeof(float)
208-
const uint32TBytes = 4; // sizeof(uint32_t)
209207
const int32TBytes = 4; // sizeof(int32_t)
210208

211209
const estimateOutput = (nOutputs: number) => {

src/gguf/types/GgufTensorInfoTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ export const enum GgmlType {
5959
TQ2_0 = 35,
6060
IQ4_NL_4_4 = 36,
6161
IQ4_NL_4_8 = 37,
62-
IQ4_NL_8_8 = 38,
62+
IQ4_NL_8_8 = 38
6363
}

0 commit comments

Comments
 (0)