Skip to content

Commit b8cb44e

Browse files
author
Olivier Chafik
committed
more llama-cli(.exe)
1 parent 051633e commit b8cb44e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README-sycl.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ Otherwise, run the `win-build-sycl.bat` wrapper which encapsulates the former in
427427

428428
*Notes:*
429429

430-
- By default, calling `make` will build all target binary files. In case of a minimal experimental setup, the user can build the inference executable only through `make llama`.
430+
- By default, calling `make` will build all target binary files. In case of a minimal experimental setup, the user can build the inference executable only through `make llama-cli`.
431431

432432
### III. Run the inference
433433

@@ -488,13 +488,13 @@ Examples:
488488
- Use device 0:
489489

490490
```
491-
build\bin\llama.exe -m models\llama-2-7b.Q4_0.gguf -p "Building a website can be done in 10 simple steps:\nStep 1:" -n 400 -e -ngl 33 -s 0 -sm none -mg 0
491+
build\bin\llama-cli.exe -m models\llama-2-7b.Q4_0.gguf -p "Building a website can be done in 10 simple steps:\nStep 1:" -n 400 -e -ngl 33 -s 0 -sm none -mg 0
492492
```
493493

494494
- Use multiple devices:
495495

496496
```
497-
build\bin\llama.exe -m models\llama-2-7b.Q4_0.gguf -p "Building a website can be done in 10 simple steps:\nStep 1:" -n 400 -e -ngl 33 -s 0 -sm layer
497+
build\bin\llama-cli.exe -m models\llama-2-7b.Q4_0.gguf -p "Building a website can be done in 10 simple steps:\nStep 1:" -n 400 -e -ngl 33 -s 0 -sm layer
498498
```
499499
Otherwise, run the following wrapper script:
500500

examples/main/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To get started right away, run the following command, making sure to use the cor
2626
#### Windows:
2727

2828
```powershell
29-
llama.exe -m models\7B\ggml-model.bin --prompt "Once upon a time"
29+
llama-cli.exe -m models\7B\ggml-model.bin --prompt "Once upon a time"
3030
```
3131

3232
For an interactive experience, try this command:
@@ -45,7 +45,7 @@ User:'
4545
#### Windows:
4646

4747
```powershell
48-
llama.exe -m models\7B\ggml-model.bin -n -1 --color -r "User:" --in-prefix " " -i -e -p "User: Hi\nAI: Hello. I am an AI chatbot. Would you like to talk?\nUser: Sure!\nAI: What would you like to talk about?\nUser:"
48+
llama-cli.exe -m models\7B\ggml-model.bin -n -1 --color -r "User:" --in-prefix " " -i -e -p "User: Hi\nAI: Hello. I am an AI chatbot. Would you like to talk?\nUser: Sure!\nAI: What would you like to talk about?\nUser:"
4949
```
5050

5151
The following command generates "infinite" text from a starting prompt (you can use `Ctrl-C` to stop it):
@@ -59,7 +59,7 @@ The following command generates "infinite" text from a starting prompt (you can
5959
#### Windows:
6060

6161
```powershell
62-
llama.exe -m models\7B\ggml-model.bin --ignore-eos -n -1
62+
llama-cli.exe -m models\7B\ggml-model.bin --ignore-eos -n -1
6363
```
6464

6565
## Common Options

0 commit comments

Comments
 (0)