Browse Source

Merge pull request #453 from martindevans/fix_bad_merge_nseqmax

Fix Master Build Fail
tags/v0.10.0
Martin Evans GitHub 2 years ago
parent
commit
8dfd07f67b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      LLama/LLamaStatelessExecutor.cs

+ 1
- 1
LLama/LLamaStatelessExecutor.cs 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();


Loading…
Cancel
Save