Merge pull request #453 from martindevans/fix_bad_merge_nseqmax

Fix Master Build Fail
This commit is contained in:
Martin Evans 2024-01-23 15:19:17 +00:00 committed by GitHub
commit 8dfd07f67b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace LLama
_weights = weights;
_params = @params;
_logger = logger;
_batch = new LLamaBatch(1);
_batch = new LLamaBatch();
Context = _weights.CreateContext(_params, logger);
Context.Dispose();