Minor fixes

This commit is contained in:
Angel-HF
2024-04-14 13:44:16 +02:00
committed by GitHub
parent dc2e2bb343
commit 6f27bf19d7

View File

@@ -83,10 +83,11 @@ int main(int argc, char **argv)
printf("RKLLM init success!\n"); printf("RKLLM init success!\n");
vector<string> pre_input; vector<string> pre_input;
pre_input.push_back("Welcome to ezrkllm! This is an adaptation of Rockchip's rknn-llm repo (see github.com/airockchip/rknn-llm) for running LLMs on its SoCs' NPUs."); pre_input.push_back("Welcome to ezrkllm! This is an adaptation of Rockchip's rknn-llm repo (see github.com/airockchip/rknn-llm) for running LLMs on its SoCs' NPUs. \n");
pre_input.push_back("You are currently running the runtime for " + param.target_platform); pre_input.push_back("You are currently running the runtime for ");
pre_input.push_back("More information here: https://github.com/Pelochus/ezrknpu"); pre_input.push_back(param.target_platform);
pre_input.push_back("Detailed information for devs here: https://github.com/Pelochus/ezrknn-llm"); pre_input.push_back("\nMore information here: https://github.com/Pelochus/ezrknpu");
pre_input.push_back("\nDetailed information for devs here: https://github.com/Pelochus/ezrknn-llm");
cout << "\n************************ Pelochus' ezrkllm runtime **********************\n" << endl; cout << "\n************************ Pelochus' ezrkllm runtime **********************\n" << endl;