Skip to content

Commit b6c79fd

Browse files
committed
1 parent 6f07403 commit b6c79fd

File tree

4 files changed

+290
-77
lines changed

4 files changed

+290
-77
lines changed

lib/src/ensemble_llama_base.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ class ContextParams {
1414
final bool useLessVram;
1515
final bool cudaUseMulMatQ;
1616
final bool useFloat16KVCache;
17-
final bool calculateAllLogits;
17+
final bool computeAllLogits;
1818
final bool loadOnlyVocabSkipTensors;
1919
final bool useMmap;
2020
final bool useMlock;
21-
final bool willUseEmbedding;
21+
final bool embeddingModeOnly;
2222

2323
const ContextParams({
2424
this.seed = int32Max,
@@ -32,11 +32,11 @@ class ContextParams {
3232
this.useLessVram = false,
3333
this.cudaUseMulMatQ = true,
3434
this.useFloat16KVCache = true,
35-
this.calculateAllLogits = false,
35+
this.computeAllLogits = false,
3636
this.loadOnlyVocabSkipTensors = false,
3737
this.useMmap = true,
3838
this.useMlock = false,
39-
this.willUseEmbedding = false,
39+
this.embeddingModeOnly = false,
4040
}) : assert(seed <= int32Max);
4141
}
4242

0 commit comments

Comments
 (0)