| #include "reasoning-budget.h" |
| #include "unicode.h" |
|
|
| #include "llama.h" |
| #include "ggml.h" |
|
|
| #ifdef NDEBUG |
| #undef NDEBUG |
| #endif |
|
|
| #include <cmath> |
| #include <cstddef> |
| #include <cstdio> |
| #include <string> |
| #include <vector> |
|
|
| |
| |
| |
| static void test_reasoning_budget( |
| const char * test_name, |
| const std::vector<llama_token> & sequence, |
| const std::vector<llama_token> & start_tokens, |
| const std::vector<llama_token> & end_tokens, |
| const std::vector<llama_token> & forced_tokens, |
| int32_t budget, |
| common_reasoning_budget_state initial_state, |
| size_t expected_force_start, |
| size_t expected_force_end |
| ) { |
| |
| llama_token max_token = 0; |
| for (auto t : sequence) max_token = std::max(max_token, t); |
| for (auto t : start_tokens) max_token = std::max(max_token, t); |
| for (auto t : end_tokens) max_token = std::max(max_token, t); |
| for (auto t : forced_tokens) max_token = std::max(max_token, t); |
|
|
| |
| |
| |
| auto * sampler = common_reasoning_budget_init( |
| nullptr, |
| start_tokens, |
| end_tokens, |
| forced_tokens, |
| budget, |
| initial_state |
| ); |
|
|
| |
| |
| std::vector<llama_token_data> cur; |
| const size_t n_vocab = (size_t)max_token + 1; |
| for (size_t i = 0; i < n_vocab; i++) { |
| cur.emplace_back(llama_token_data{(llama_token)i, logf((float)(i+1)), 0.0f}); |
| } |
| llama_token_data_array cur_p = { cur.data(), cur.size(), -1, false }; |
|
|
| size_t actual_force_start = SIZE_MAX; |
| size_t actual_force_end = SIZE_MAX; |
|
|
| |
| for (size_t i = 0; i < sequence.size(); i++) { |
| llama_sampler_accept(sampler, sequence[i]); |
|
|
| |
| cur_p.selected = -1; |
| for (size_t j = 0; j < cur.size(); j++) { |
| cur[j].logit = logf((float)(j+1)); |
| } |
|
|
| llama_sampler_apply(sampler, &cur_p); |
|
|
| |
| size_t finite_count = 0; |
| llama_token finite_token = -1; |
| for (size_t j = 0; j < cur.size(); j++) { |
| if (std::isfinite(cur[j].logit)) { |
| finite_count++; |
| finite_token = cur[j].id; |
| } |
| } |
|
|
| fprintf(stderr, " i=%zu: token=%d, finite_count=%zu, finite_token=%d\n", i, (int)sequence[i], finite_count, (int)finite_token); |
|
|
| if (finite_count == 1) { |
| if (actual_force_start == SIZE_MAX) { |
| actual_force_start = i; |
| } |
| actual_force_end = i; |
| } else if (actual_force_start != SIZE_MAX && actual_force_end != SIZE_MAX) { |
| |
| break; |
| } |
| } |
|
|
| llama_sampler_free(sampler); |
|
|
| |
| if (expected_force_start == SIZE_MAX) { |
| if (actual_force_start != SIZE_MAX) { |
| fprintf(stderr, "Test '%s' FAILED: Expected no forcing, but forcing occurred at %zu\n", test_name, actual_force_start); |
| GGML_ASSERT(false && "Expected no forcing, but forcing occurred"); |
| } |
| } else { |
| if (actual_force_start == SIZE_MAX) { |
| fprintf(stderr, "Test '%s' FAILED: Expected forcing but none occurred\n", test_name); |
| GGML_ASSERT(false && "Expected forcing but none occurred"); |
| } |
| if (actual_force_start != expected_force_start) { |
| fprintf(stderr, "Test '%s' FAILED: Forcing started at %zu, expected %zu\n", test_name, actual_force_start, expected_force_start); |
| GGML_ASSERT(false && "Forcing started at wrong position"); |
| } |
| } |
|
|
| if (expected_force_end != SIZE_MAX) { |
| if (actual_force_end < expected_force_end) { |
| fprintf(stderr, "Test '%s' FAILED: Forcing ended at %zu, expected >= %zu\n", test_name, actual_force_end, expected_force_end); |
| GGML_ASSERT(false && "Forcing ended too early"); |
| } |
| } |
|
|
| fprintf(stderr, " Test '%s' passed (force_start=%zu, force_end=%zu)\n", test_name, actual_force_start, actual_force_end); |
| (void)sequence; |
| } |
|
|
| |
| |
| static void test_utf8_boundary_detection() { |
| |
| GGML_ASSERT(common_utf8_is_complete("hello")); |
| GGML_ASSERT(common_utf8_is_complete("")); |
| GGML_ASSERT(common_utf8_is_complete("\xC2\xA0")); |
| GGML_ASSERT(common_utf8_is_complete("\xE2\x80\x9C")); |
| GGML_ASSERT(common_utf8_is_complete("\xF0\x9F\x98\x80")); |
| GGML_ASSERT(common_utf8_is_complete("abc\xC3\xA9")); |
|
|
| |
| GGML_ASSERT(!common_utf8_is_complete(std::string("\xC2", 1))); |
| GGML_ASSERT(!common_utf8_is_complete(std::string("\xE2\x80", 2))); |
| GGML_ASSERT(!common_utf8_is_complete(std::string("\xE2", 1))); |
| GGML_ASSERT(!common_utf8_is_complete(std::string("\xF0\x9F\x98", 3))); |
| GGML_ASSERT(!common_utf8_is_complete(std::string("\xF0\x9F", 2))); |
| GGML_ASSERT(!common_utf8_is_complete(std::string("\xF0", 1))); |
| GGML_ASSERT(!common_utf8_is_complete(std::string("\x80", 1))); |
|
|
| |
| GGML_ASSERT(!common_utf8_is_complete(std::string("hello\xC3", 6))); |
| GGML_ASSERT(common_utf8_is_complete(std::string("hello\xC3\xA9", 7))); |
| } |
|
|
| int main(void) { |
| |
| printf("Testing reasoning budget sampler... "); |
|
|
| |
| { |
| const std::vector<llama_token> start = {100}; |
| const std::vector<llama_token> end = {101}; |
| const std::vector<llama_token> forced = {102}; |
| const std::vector<llama_token> sequence = {100, 50, 51, 101, 52}; |
|
|
| test_reasoning_budget("natural end before budget exhausted", sequence, start, end, forced, |
| 5, |
| REASONING_BUDGET_IDLE, |
| SIZE_MAX, SIZE_MAX); |
| } |
|
|
| |
| |
| |
| |
| { |
| const std::vector<llama_token> start = {100}; |
| const std::vector<llama_token> end = {101}; |
| const std::vector<llama_token> forced = {102, 101}; |
| const std::vector<llama_token> sequence = {100, 50, 51, 52, 53}; |
|
|
| test_reasoning_budget("budget exhausted forcing", sequence, start, end, forced, |
| 2, |
| REASONING_BUDGET_IDLE, |
| 2, |
| 3); |
| } |
|
|
| |
| |
| |
| { |
| const std::vector<llama_token> start = {100}; |
| const std::vector<llama_token> end = {101}; |
| const std::vector<llama_token> forced = {102, 101}; |
| const std::vector<llama_token> sequence = {100, 50, 51, 52}; |
|
|
| test_reasoning_budget("activate immediately budget=0", sequence, start, end, forced, |
| 0, |
| REASONING_BUDGET_COUNTING, |
| 0, |
| 1); |
| } |
|
|
| |
| { |
| const std::vector<llama_token> start = {}; |
| const std::vector<llama_token> end = {}; |
| const std::vector<llama_token> forced = {102}; |
| const std::vector<llama_token> sequence = {50, 51, 52, 53}; |
|
|
| test_reasoning_budget("no start/end configured", sequence, start, end, forced, |
| 2, |
| REASONING_BUDGET_IDLE, |
| SIZE_MAX, SIZE_MAX); |
| } |
|
|
| |
| |
| |
| { |
| const std::vector<llama_token> start = {100}; |
| const std::vector<llama_token> end = {101}; |
| const std::vector<llama_token> forced = {102, 101}; |
| const std::vector<llama_token> sequence = {50, 51, 52, 53}; |
|
|
| test_reasoning_budget("activate immediately with budget", sequence, start, end, forced, |
| 2, |
| REASONING_BUDGET_COUNTING, |
| 1, |
| 2); |
| } |
|
|
| printf("OK (5 tests passed)\n"); |
|
|
| printf("Testing UTF-8 boundary detection... "); |
| test_utf8_boundary_detection(); |
| printf("OK\n"); |
|
|
| return 0; |
| } |
|
|