summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoromahs <73983677+omahs@users.noreply.github.com>2024-05-07 17:20:33 +0200
committerGitHub <noreply@github.com>2024-05-07 18:20:33 +0300
commit04976db7a819fcf8bfefbfc09a3344210b79dd27 (patch)
tree5e954c895fc18c1e1d48a27383462efd7e4a2d9d /docs
parent947d3ad27d94f1addef76b5d64c314618f063933 (diff)
docs: fix typos (#7124)
* fix typo * fix typos * fix typo * fix typos * fix typo * fix typos
Diffstat (limited to 'docs')
-rw-r--r--docs/BLIS.md2
-rw-r--r--docs/HOWTO-add-model.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/BLIS.md b/docs/BLIS.md
index 0bcd6eee..c933766b 100644
--- a/docs/BLIS.md
+++ b/docs/BLIS.md
@@ -23,7 +23,7 @@ Install BLIS:
sudo make install
```
-We recommend using openmp since it's easier to modify the cores been used.
+We recommend using openmp since it's easier to modify the cores being used.
### llama.cpp compilation
diff --git a/docs/HOWTO-add-model.md b/docs/HOWTO-add-model.md
index a56b7834..48769cdf 100644
--- a/docs/HOWTO-add-model.md
+++ b/docs/HOWTO-add-model.md
@@ -96,9 +96,9 @@ NOTE: The dimensions in `ggml` are typically in the reverse order of the `pytorc
This is the funniest part, you have to provide the inference graph implementation of the new model architecture in `llama_build_graph`.
-Have a look to existing implementation like `build_llama`, `build_dbrx` or `build_bert`.
+Have a look at existing implementation like `build_llama`, `build_dbrx` or `build_bert`.
-When implementing a new graph, please note that the underlying `ggml` backends might not support them all, support of missing backend operations can be added in another PR.
+When implementing a new graph, please note that the underlying `ggml` backends might not support them all, support for missing backend operations can be added in another PR.
Note: to debug the inference graph: you can use [eval-callback](../examples/eval-callback).