1. 11 Dec, 2024 1 commit
  2. 10 Dec, 2024 2 commits
    • Daniel Hiltgen's avatar
      Remove unused runner CpuFeatures (#8032) · b9ccb374
      Daniel Hiltgen authored
      The final implementation of #7499 removed dynamic vector requirements
      in favor of a simpler filename based model, and this was left over logic that
      is no longer needed.
      b9ccb374
    • Daniel Hiltgen's avatar
      build: Make target improvements (#7499) · 4879a234
      Daniel Hiltgen authored
      * llama: wire up builtin runner
      
      This adds a new entrypoint into the ollama CLI to run the cgo built runner.
      On Mac arm64, this will have GPU support, but on all other platforms it will
      be the lowest common denominator CPU build.  After we fully transition
      to the new Go runners more tech-debt can be removed and we can stop building
      the "default" runner via make and rely on the builtin always.
      
      * build: Make target improvements
      
      Add a few new targets and help for building locally.
      This also adjusts the runner lookup to favor local builds, then
      runners relative to the executable, and finally payloads.
      
      * Support customized CPU flags for runners
      
      This implements a simplified custom CPU flags pattern for the runners.
      When built without overrides, the runner name contains the vector flag
      we check for (AVX) to ensure we don't try to run on unsupported systems
      and crash.  If the user builds a customized set, we omit the naming
      scheme and don't check for compatibility.  This avoids checking
      requirements at runtime, so that logic has been removed as well.  This
      can be used to build GPU runners with no vector flags, or CPU/GPU
      runners with additional flags (e.g. AVX512) enabled.
      
      * Use relative paths
      
      If the user checks out the repo in a path that contains spaces, make gets
      really confused so use relative paths for everything in-repo to avoid breakage.
      
      * Remove payloads from main binary
      
      * install: clean up prior libraries
      
      This removes support for v0.3.6 and older versions (before the tar bundle)
      and ensures we clean up prior libraries before extracting the bundle(s).
      Without this change, runners and dependent libraries could leak when we
      update and lead to subtle runtime errors.
      4879a234
  3. 05 Dec, 2024 1 commit
  4. 03 Dec, 2024 1 commit
  5. 29 Nov, 2024 1 commit
  6. 27 Nov, 2024 1 commit
  7. 26 Nov, 2024 2 commits
    • Jesse Gross's avatar
      runner.go: Don't try to extract image tags for text models · 71e6a0d0
      Jesse Gross authored
      When processing a prompt, we look for image tags of the form
      [img-0], which are inserted by the Ollama server process.
      However, this can cause errors if the original prompt has these
      tags - typically an image not found error is returned.
      
      This changes tag searching behavior to be similar to the 0.3.x
      series, which will largely avoid these problems. However,they can
      still happen when input text with these tags is used with image
      models. The correct solution is to escape the tags but this is a
      larger issue with special sequences in general so this is an
      incremental fix that should avoid the problem for the majority
      of cases.
      71e6a0d0
    • Jesse Gross's avatar
      runner.go: Add unit tests for context shifting · 2cd11ae3
      Jesse Gross authored
      This also makes it easier to truncate long inputs the same as
      shifting but does not actually implement it. This type of
      truncation has a trade off between quality and time to first
      token.
      2cd11ae3
  8. 23 Nov, 2024 1 commit
    • Jesse Gross's avatar
      runner.go: Fix deadlock with many concurrent requests · 3478b2cf
      Jesse Gross authored
      If there are no avilable slots for new sequences then a request
      will not be added to the processing queue but will continue on
      to wait for a response that never comes. Besides never giving a
      response to the request, this prevents the model from being
      unloaded due to the outstanding request.
      
      To prevent this, there are semaphores that prevent more requests
      from being processed than there are slots - one in the Ollama
      server and one in the runner.
       - The Ollama server one works but it is not designed to protect
      the runner's data internal structures and the runner can return a
      final response before clearing its data structures.
       - The internal runner semaphore has similar behavior where it
       can release the semaphore when it issues a response. This is
       wrong - it should only release the semaphore after it has
       cleared the data structure.
      
      In addition, we should return an error if a slot is not found
      rather than deadlocking in the event we ever get to this spot.
      
      Fixes #7779
      3478b2cf
  9. 22 Nov, 2024 1 commit
    • Daniel Hiltgen's avatar
      logs: explain client aborts better (#7783) · b85520bf
      Daniel Hiltgen authored
      Users get confused by "Failed to acquire semaphore" error="context canceled"
      messages in the logs, which are actually clients giving up.  While there could be
      a legitimate hang bug in the system, sometimes this is just short client timeouts
      with an overloaded system, so this should help users understand what's going on
      better.
      b85520bf
  10. 21 Nov, 2024 1 commit
  11. 20 Nov, 2024 5 commits
    • Jesse Gross's avatar
      runner.go: Truncate inputs that exceed context rather than shifting · c4b34f2a
      Jesse Gross authored
      Previous versions of the runner would truncate inputs to the context
      window before beginning processing. The main processing loop relied
      on this behavior if the context needed to be shifted later (due to
      token generation). If truncation did not occur then invariants
      would be broken, causing crashes or infinite loops.
      
      Later versions attempted to fix these bugs and make the logic less
      subtle so that all inputs could be handled. Truncation was removed
      to make things consistent.
      
      However, truncation is much faster than processing and shifting, so
      removing it caused performance problems when the input vastly exceeded
      the context size. This restores the input truncation as a performance
      optimization while keeping the more robust processing logic.
      
      Fixes #7762
      c4b34f2a
    • Jesse Gross's avatar
      runner.go: Don't add inputs to cache view until actually processed · c3ff9164
      Jesse Gross authored
      We need to track which tokens are in the cache ourselves. We currently
      add tokens to the cache tracker when we add them to batch but they are
      not actually in the cache until we call Decode. This can cause
      confusion when we are shifting the cache.
      
      Avoids "could not find a KV slot for the batch" issues.
      
      Bug #7545
      c3ff9164
    • Jesse Gross's avatar
      runner.go: Hard fail on errors rather than potentially infinite looping · 3fc1dc0e
      Jesse Gross authored
      We try to recover from errors by dropping the tokens that caused the
      problem and re-trying. However, dropping the tokens is not correct
      and continuing often leads to infinite loops. To avoid, this we
      end the sequence if such a condition is detected, which is also
      surprising.
      
      At this point, it is better to just report the error. This will make
      it easier to find problems and the alternatives are perhaps even more
      surprising to users.
      
      This is not a very satisfactory solution either - we should isolate
      the error and return it to the user without killing the whole process.
      However, this is an incremental step and consistent with most other
      failures (which either manifest as abort() or panic).
      3fc1dc0e
    • Jesse Gross's avatar
      runner.go: Retry decoding after defragmentation if needed · 7121dfa3
      Jesse Gross authored
      Fragmentation of the KV cache can occur due to cache shifting or
      different sequences getting processed. Decode uses a heuristic to
      decide if it should defrag. However, this heuristic isn't 100%
      accurate, so decoding can sometimes fail by surprise.
      
      For these cases, if decode indicates that there is no KV cache space,
      we should defrag and then try again.
      7121dfa3
    • Jesse Gross's avatar
      runner.go: Use correct index when retrieving embedding results · 5f68fcab
      Jesse Gross authored
      This doesn't have any impact currently because NUM_PARALLEL is forced
      to 1 for embeddings, so both indicies will always be 0.
      5f68fcab
  12. 19 Nov, 2024 1 commit
  13. 15 Nov, 2024 2 commits
    • Jesse Gross's avatar
      runner.go: Propagate panics back to the user. · d875e99e
      Jesse Gross authored
      This is a partial revert of 8a35bb92
      "runner.go: Increase survivability of main processing loop", removing
      the panic handler.
      
      Although we want to avoid errors taking down the runner, we also
      should make the user aware of problems when they happen. In the
      future, we can restructure things so both parts are true.
      d875e99e
    • Jesse Gross's avatar
      runner.go: Increase survivability of main processing loop · 8a35bb92
      Jesse Gross authored
      Currently, if an error occurs during the prep stages (such as
      tokenizing) of a single request, it will only affect that request.
      However, if an error happens during decoding, it can take down the
      entire runner.
      
      Instead, it's better to drop the tokens that triggered the error and try to
      keep going. However, we also need to stop when we run out of tokens,
      otherwise, this just causes an infinite loop. This is likely the cause
      of at least some of the hanging issues that have been reported.
      
      Bug #7573
      8a35bb92
  14. 14 Nov, 2024 3 commits
    • Jesse Gross's avatar
      runner.go: Don't trim whitespace from inputs · c25ffde9
      Jesse Gross authored
      It's possible to get prompts that consist entirely of whitespace -
      this is most likely to happen when generating embeddings. Currently,
      we will trim this away, leaving an empty prompt, which will then
      generate an error.
      
      Generating embeddings from whitespace should not trigger an error,
      as this may break pipelines. It's better to just leave the whitespace
      in place and process what we are given. This is consistent with
      past versions of Ollama.
      
      Bug #7578
      c25ffde9
    • Jesse Gross's avatar
      runner.go: Enforce NUM_PARALLEL directly in the runner · 17b386a8
      Jesse Gross authored
      NUM_PARALEL is currently enforced by the Ollama server process - it
      will only issue requests to the runner if the maximum number of
      concurrent requests has not been exceeded. Although this should
      be sufficient, it is good for the runner to protect its own data
      structures. Currently, if too many requests get through to the
      runner, they will just get stuck and never return.
      
      This may help with reports of Ollama hanging, though it is unclear
      how it would actually occur.
      
      Bug #7573
      17b386a8
    • Michael Yang's avatar
      fix(mllama): sync backend between batches · 5b3393b6
      Michael Yang authored
      5b3393b6
  15. 12 Nov, 2024 3 commits
    • Jesse Gross's avatar
      runner.go: Fix off-by-one for num predicted · d7eb05b9
      Jesse Gross authored
      d7eb05b9
    • Daniel Hiltgen's avatar
      Jetpack support for Go server (#7217) · df011054
      Daniel Hiltgen authored
      This adds support for the Jetson JetPack variants into the Go runner
      df011054
    • Jesse Gross's avatar
      runner.go: Make KV entry accounting more robust · 65973ceb
      Jesse Gross authored
      The structure of the accounting for KV cache shifting was carried
      over from the old runner but it now doesn't feel natural with the new
      runner. There are a number of invariants that should hold true but
      are difficult to reason about. There is at least one bug report
      that would imply that the invariants are not holding.
      
      This reduces the number of implicit assumptions and is more forgiving
      of unexpected situations. It also improves behavior around which input
      tokens are kept when truncation occurs.
      
      Bug #7545
      65973ceb
  16. 08 Nov, 2024 1 commit
  17. 07 Nov, 2024 3 commits
  18. 06 Nov, 2024 1 commit
  19. 02 Nov, 2024 2 commits
    • Jesse Gross's avatar
      llama: Improve error handling · 312d9de1
      Jesse Gross authored
      Check for NULL return values from llama.cpp in more places and
      convert them into Go errors, which should make debugging easier
      in the future rather than having hidden surprises in our data
      structures.
      312d9de1
    • Jesse Gross's avatar
      runner.go: Only allocate 1 element embedding batches for mllama · a103dae0
      Jesse Gross authored
      Mllama has large embeddings (100 MB per image) and each embedding is
      represented as 1 token when passed to llama.cpp. Batches are pre-
      allocated for the size of the tokens times the batch size, so this
      results in allocations of over 50 GB at the default batch size.
      On some systems, these mallocs will fail.
      
      Since an image is represented as a single token and mllama doesn't
      support more than 1 image per request, we only need to allocate a
      batch size of 1, which is much more reasonable. In addition, for
      non-multimodal models, we don't need to allocate the embedding
      batches at all.
      
      Fixes #7464
      a103dae0
  20. 31 Oct, 2024 1 commit
    • Jesse Gross's avatar
      runner.go: Don't set cross attention before sending embeddings · 26acdcf4
      Jesse Gross authored
      Currently if an input has embeddings at any point then we will set
      cross attention to true from the beginning. This means that any
      tokens before the embeddings are sent will incorrectly have cross
      attention layers applied.
      
      This only sets cross attention when we have an embedding, either
      previously in this sequence or in the cache. It also makes cross
      attention capable of supporting parallelism at the runner level,
      though the mllama implementation doesn't support that yet.
      26acdcf4
  21. 30 Oct, 2024 3 commits
  22. 29 Oct, 2024 2 commits
    • Daniel Hiltgen's avatar
      Switch windows to clang (#7407) · c9ca3861
      Daniel Hiltgen authored
      * Switch over to clang for deepseek on windows
      
      The patch for deepseek requires clang on windows. gcc on windows
      has a buggy c++ library and can't handle the unicode characters
      
      * Fail fast with wrong compiler on windows
      
      Avoid users mistakenly building with GCC when we need clang
      c9ca3861
    • Jesse Gross's avatar
      runner.go: Better handle return NULL values from llama.cpp · de1557a0
      Jesse Gross authored
      Llama.cpp sometimes returns NULL as a return value to report an
      error. We should explicitly check for this and convert it to a Go
      error rather than putting NULL in our data structures and waiting
      for it to blow up later.
      de1557a0
  23. 27 Oct, 2024 1 commit