minor: confusing hexadecimal codepoint
This commit is contained in:
parent
16a7503dcc
commit
03dbcc89f6
2 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ int main(int argc, char **argv) {
|
||||||
std::vector<llama_token> tokens = llama_tokenize(ctx, str, false);
|
std::vector<llama_token> tokens = llama_tokenize(ctx, str, false);
|
||||||
std::string check = llama_detokenize(ctx, tokens);
|
std::string check = llama_detokenize(ctx, tokens);
|
||||||
if (cp != 9601 && str != check) {
|
if (cp != 9601 && str != check) {
|
||||||
fprintf(stderr, "error: codepoint %x detokenizes to '%s'(%zu) instead of '%s'(%zu)\n",
|
fprintf(stderr, "error: codepoint 0x%x detokenizes to '%s'(%zu) instead of '%s'(%zu)\n",
|
||||||
cp, check.c_str(), check.length(), str.c_str(), str.length());
|
cp, check.c_str(), check.length(), str.c_str(), str.length());
|
||||||
std::exit(3);
|
std::exit(3);
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,7 +89,7 @@ int main(int argc, char ** argv) {
|
||||||
std::vector<llama_token> tokens = llama_tokenize(ctx, str, false, true);
|
std::vector<llama_token> tokens = llama_tokenize(ctx, str, false, true);
|
||||||
std::string check = llama_detokenize(ctx, tokens);
|
std::string check = llama_detokenize(ctx, tokens);
|
||||||
if (cp != 9601 && str != check) {
|
if (cp != 9601 && str != check) {
|
||||||
fprintf(stderr, "error: codepoint %x detokenizes to '%s'(%zu) instead of '%s'(%zu)\n",
|
fprintf(stderr, "error: codepoint 0x%x detokenizes to '%s'(%zu) instead of '%s'(%zu)\n",
|
||||||
cp, check.c_str(), check.length(), str.c_str(), str.length());
|
cp, check.c_str(), check.length(), str.c_str(), str.length());
|
||||||
std::exit(3);
|
std::exit(3);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue