mirror of
https://github.com/ollama/ollama.git
synced 2025-04-04 18:12:10 +02:00
log embedding eval timing
This commit is contained in:
parent
74f00474e1
commit
56fd4e4ef2
@ -471,6 +471,9 @@ func (llm *llama) Embedding(input string) ([]float64, error) {
|
||||
return nil, errors.New("llama: eval")
|
||||
}
|
||||
|
||||
timings := C.llama_get_timings(llm.ctx)
|
||||
log.Printf("embed: eval_ms=%v", parseDurationMs(float64(timings.t_p_eval_ms)))
|
||||
|
||||
n := C.llama_n_embd(llm.ctx)
|
||||
if n <= 0 {
|
||||
return nil, errors.New("llama: no embeddings generated")
|
||||
|
Loading…
x
Reference in New Issue
Block a user