From 4b3e66021a4ec050548f1d4daab5210f521d655b Mon Sep 17 00:00:00 2001 From: Andrej Karpathy Date: Wed, 23 Aug 2023 00:26:47 +0000 Subject: [PATCH] lol text --- test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.c b/test.c index 887e2bf..23fca8c 100644 --- a/test.c +++ b/test.c @@ -37,7 +37,7 @@ void test_prompt_encoding(Tokenizer* tokenizer, char* prompt, int* expected_toke free(prompt_tokens); } -void text_prompt_encodings() { +void test_prompt_encodings() { // let's verify that the Tokenizer works as expected char *tokenizer_path = "tokenizer.bin"; @@ -76,6 +76,6 @@ void text_prompt_encodings() { } int main(int argc, char *argv[]) { - text_prompt_encodings(); + test_prompt_encodings(); printf("ALL OK\n"); }