| 646 | }; |
| 647 | |
| 648 | struct llama_sampler * llama_sampler_init_softmax() { |
| 649 | return llama_sampler_init( |
| 650 | /* .iface = */ &llama_sampler_softmax_i, |
| 651 | /* .ctx = */ nullptr |
| 652 | ); |
| 653 | } |
| 654 | |
| 655 | // top-k |
| 656 |
nothing calls this directly
no test coverage detected