mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	Prefix all example bins w/ llama-
This commit is contained in:
		@@ -1,4 +1,4 @@
 | 
			
		||||
set(TARGET embedding)
 | 
			
		||||
set(TARGET llama-embedding)
 | 
			
		||||
add_executable(${TARGET} embedding.cpp)
 | 
			
		||||
install(TARGETS ${TARGET} RUNTIME)
 | 
			
		||||
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
 | 
			
		||||
 
 | 
			
		||||
@@ -9,13 +9,13 @@ To get started right away, run the following command, making sure to use the cor
 | 
			
		||||
### Unix-based systems (Linux, macOS, etc.):
 | 
			
		||||
 | 
			
		||||
```bash
 | 
			
		||||
./embedding -m ./path/to/model --log-disable -p "Hello World!" 2>/dev/null
 | 
			
		||||
./llama-embedding -m ./path/to/model --log-disable -p "Hello World!" 2>/dev/null
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
### Windows:
 | 
			
		||||
 | 
			
		||||
```powershell
 | 
			
		||||
embedding.exe -m ./path/to/model --log-disable -p "Hello World!" 2>$null
 | 
			
		||||
llama-embedding.exe -m ./path/to/model --log-disable -p "Hello World!" 2>$null
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
The above command will output space-separated float values.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user