Skip to content

Commit

Permalink
Merge pull request #453 from martindevans/fix_bad_merge_nseqmax
Browse files Browse the repository at this point in the history
Fix Master Build Fail
  • Loading branch information
martindevans authored Jan 23, 2024
2 parents 96c26c2 + a690db5 commit 8dfd07f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LLama/LLamaStatelessExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public StatelessExecutor(LLamaWeights weights, IContextParams @params, ILogger?
_weights = weights;
_params = @params;
_logger = logger;
_batch = new LLamaBatch(1);
_batch = new LLamaBatch();

Context = _weights.CreateContext(_params, logger);
Context.Dispose();
Expand Down

0 comments on commit 8dfd07f

Please sign in to comment.