mmnga commited on
Commit
4484439
1 Parent(s): c91a63f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -1
README.md CHANGED
@@ -16,8 +16,9 @@ cd llama.cpp
16
  git checkout gguf
17
  ```
18
 
19
- MakeFileを下記に修正します
20
 
 
21
  ```
22
  gguf: examples/gguf/gguf.cpp build-info.h ggml.o llama.o $(OBJS)
23
  $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
@@ -32,6 +33,18 @@ gptneox: examples/gptneox-wip/gptneox-main.cpp build-info.h ggml.o $(OBJS)
32
  $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
33
  ```
34
  この様に追加します。
 
 
 
 
 
 
 
 
 
 
 
 
35
  後はmakeしてから実行します。
36
 
37
  ```
 
16
  git checkout gguf
17
  ```
18
 
19
+ Makefileを下記に修正します
20
 
21
+ 1箇所目
22
  ```
23
  gguf: examples/gguf/gguf.cpp build-info.h ggml.o llama.o $(OBJS)
24
  $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
 
33
  $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
34
  ```
35
  この様に追加します。
36
+
37
+
38
+ 2箇所目
39
+ ```
40
+ BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch convert-llama2c-to-ggml simple server embd-input-test gguf llama-bench
41
+ ```
42
+
43
+ ```
44
+ BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch convert-llama2c-to-ggml simple server embd-input-test gguf llama-bench gptneox
45
+ ```
46
+ この様にgptneoxを追加します。
47
+
48
  後はmakeしてから実行します。
49
 
50
  ```