| 2505 | } |
| 2506 | } |
| 2507 | |
| 2508 | void run_step_into( |
| 2509 | int32_t token, |
| 2510 | const std::vector<int32_t> & conditional_visible, |
| 2511 | const std::vector<int32_t> & unconditional_visible, |
| 2512 | std::vector<float> & conditional_logits, |
| 2513 | std::vector<float> & unconditional_logits) { |
| 2514 | run_step_into( |
| 2515 | token, |
| 2516 | token, |
| 2517 | conditional_visible, |
| 2518 | unconditional_visible, |
| 2519 | conditional_logits, |
| 2520 | unconditional_logits); |
| 2521 | } |
| 2522 | |
| 2523 | void run_step_into( |
nothing calls this directly
no test coverage detected