We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c19c70 commit cdedc17Copy full SHA for cdedc17
CMakeLists.txt
@@ -107,7 +107,7 @@ endif()
107
# endif()
108
109
add_executable(llama
110
- main.cpp
+ llama.cpp
111
utils.cpp
112
utils.h)
113
Makefile
@@ -191,8 +191,8 @@ utils.o: utils.cpp utils.h
191
clean:
192
rm -f *.o main quantize
193
194
-main: main.cpp ggml.o utils.o
195
- $(CXX) $(CXXFLAGS) main.cpp ggml.o utils.o -o main $(LDFLAGS)
+main: llama.cpp ggml.o utils.o
+ $(CXX) $(CXXFLAGS) llama.cpp ggml.o utils.o -o main $(LDFLAGS)
196
./main -h
197
198
quantize: quantize.cpp ggml.o utils.o
main.cpp renamed to llama.cpp
0 commit comments