| 2349 | } |
| 2350 | |
| 2351 | float * llama_get_logits_ith(llama_context * ctx, int32_t i) { |
| 2352 | ctx->synchronize(); |
| 2353 | |
| 2354 | return ctx->get_logits_ith(i); |
| 2355 | } |
| 2356 | |
| 2357 | float * llama_get_embeddings(llama_context * ctx) { |
| 2358 | ctx->synchronize(); |
no test coverage detected