mirror of
https://github.com/ollama/ollama.git
synced 2025-09-07 00:41:00 +02:00
Currently, when the backend is created, the tensors are loaded at the same time, which is a slow operation. This separates them to be two steps: - Create backend, including enumerating tensors and memory allocation - Loading tensor data This allows more flexibility in managing model loading.