| 3133 | } |
| 3134 | |
| 3135 | float * llama_get_logits(llama_context * ctx) { |
| 3136 | ctx->synchronize(); |
| 3137 | |
| 3138 | return ctx->get_logits(); |
| 3139 | } |
| 3140 | |
| 3141 | float * llama_get_logits_ith(llama_context * ctx, int32_t i) { |
| 3142 | ctx->synchronize(); |
no test coverage detected