| 2343 | } |
| 2344 | |
| 2345 | float * llama_get_logits(llama_context * ctx) { |
| 2346 | ctx->synchronize(); |
| 2347 | |
| 2348 | return ctx->get_logits(); |
| 2349 | } |
| 2350 | |
| 2351 | float * llama_get_logits_ith(llama_context * ctx, int32_t i) { |
| 2352 | ctx->synchronize(); |
no test coverage detected