| 967 | } |
| 968 | |
| 969 | static void llama_sampler_temp_apply(struct llama_sampler * smpl, llama_token_data_array * cur_p) { |
| 970 | const auto * ctx = (llama_sampler_temp *) smpl->ctx; |
| 971 | |
| 972 | llama_sampler_temp_impl(cur_p, ctx->temp); |
| 973 | } |
| 974 | |
| 975 | static struct llama_sampler * llama_sampler_temp_clone(const struct llama_sampler * smpl) { |
| 976 | const auto * ctx = (const llama_sampler_temp *) smpl->ctx; |
nothing calls this directly
no test coverage detected