You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/020-enhancement.yml
+3-3
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ body:
6
6
- type: markdown
7
7
attributes:
8
8
value: |
9
-
[Please post your idea first in Discussion if there is not yet a consensus for this enhancement request. This will help to keep this issue tracker focused on enhancements that the community has agreed needs to be implemented.](https://github.com/ggerganov/llama.cpp/discussions/categories/ideas)
9
+
[Please post your idea first in Discussion if there is not yet a consensus for this enhancement request. This will help to keep this issue tracker focused on enhancements that the community has agreed needs to be implemented.](https://github.com/ggml-org/llama.cpp/discussions/categories/ideas)
10
10
11
11
- type: checkboxes
12
12
id: prerequisites
@@ -16,11 +16,11 @@ body:
16
16
options:
17
17
- label: I am running the latest code. Mention the version if possible as well.
18
18
required: true
19
-
- label: I carefully followed the [README.md](https://github.com/ggerganov/llama.cpp/blob/master/README.md).
19
+
- label: I carefully followed the [README.md](https://github.com/ggml-org/llama.cpp/blob/master/README.md).
20
20
required: true
21
21
- label: I searched using keywords relevant to my issue to make sure that I am creating a new issue that is not already open (or closed).
22
22
required: true
23
-
- label: I reviewed the [Discussions](https://github.com/ggerganov/llama.cpp/discussions), and have a new and useful enhancement to share.
23
+
- label: I reviewed the [Discussions](https://github.com/ggml-org/llama.cpp/discussions), and have a new and useful enhancement to share.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/030-research.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ body:
6
6
- type: markdown
7
7
attributes:
8
8
value: |
9
-
Don't forget to check for any [duplicate research issue tickets](https://github.com/ggerganov/llama.cpp/issues?q=is%3Aopen+is%3Aissue+label%3A%22research+%F0%9F%94%AC%22)
9
+
Don't forget to check for any [duplicate research issue tickets](https://github.com/ggml-org/llama.cpp/issues?q=is%3Aopen+is%3Aissue+label%3A%22research+%F0%9F%94%AC%22)
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/040-refactor.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ body:
6
6
- type: markdown
7
7
attributes:
8
8
value: |
9
-
Don't forget to [check for existing refactor issue tickets](https://github.com/ggerganov/llama.cpp/issues?q=is%3Aopen+is%3Aissue+label%3Arefactoring) in case it's already covered.
10
-
Also you may want to check [Pull request refactor label as well](https://github.com/ggerganov/llama.cpp/pulls?q=is%3Aopen+is%3Apr+label%3Arefactoring) for duplicates too.
9
+
Don't forget to [check for existing refactor issue tickets](https://github.com/ggml-org/llama.cpp/issues?q=is%3Aopen+is%3Aissue+label%3Arefactoring) in case it's already covered.
10
+
Also you may want to check [Pull request refactor label as well](https://github.com/ggml-org/llama.cpp/pulls?q=is%3Aopen+is%3Apr+label%3Arefactoring) for duplicates too.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
- Squash-merge PRs
14
14
- Use the following format for the squashed commit title: `<module> : <commit title> (#<issue_number>)`. For example: `utils : fix typo in utils.py (#1234)`
15
-
- Optionally pick a `<module>` from here: https://github.com/ggerganov/llama.cpp/wiki/Modules
15
+
- Optionally pick a `<module>` from here: https://github.com/ggml-org/llama.cpp/wiki/Modules
16
16
- Consider adding yourself to [CODEOWNERS](CODEOWNERS)
17
17
18
18
# Coding guidelines
@@ -40,14 +40,14 @@
40
40
- Try to follow the existing patterns in the code (indentation, spaces, etc.). In case of doubt use `clang-format` to format the added code
41
41
- For anything not covered in the current guidelines, refer to the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines)
42
42
- Tensors store data in row-major order. We refer to dimension 0 as columns, 1 as rows, 2 as matrices
43
-
- Matrix multiplication is unconventional: [`C = ggml_mul_mat(ctx, A, B)`](https://github.com/ggerganov/llama.cpp/blob/880e352277fc017df4d5794f0c21c44e1eae2b84/ggml.h#L1058-L1064) means $C^T = A B^T \Leftrightarrow C = B A^T.$
43
+
- Matrix multiplication is unconventional: [`C = ggml_mul_mat(ctx, A, B)`](https://github.com/ggml-org/llama.cpp/blob/880e352277fc017df4d5794f0c21c44e1eae2b84/ggml.h#L1058-L1064) means $C^T = A B^T \Leftrightarrow C = B A^T.$
44
44
45
45

46
46
47
47
# Naming guidelines
48
48
49
49
- Use `snake_case` for function, variable and type names
50
-
- Naming usually optimizes for longest common prefix (see https://github.com/ggerganov/ggml/pull/302#discussion_r1243240963)
50
+
- Naming usually optimizes for longest common prefix (see https://github.com/ggml-org/ggml/pull/302#discussion_r1243240963)
51
51
52
52
```cpp
53
53
// not OK
@@ -122,4 +122,4 @@
122
122
123
123
The Github issues, PRs and discussions contain a lot of information that can be useful to get familiar with the codebase. For convenience, some of the more important information is referenced from Github projects:
Copy file name to clipboardExpand all lines: Makefile
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
ifndefLLAMA_MAKEFILE
2
-
$(error The Makefile build is deprecated. Use the CMake build instead. For more details, see https://github.com/ggerganov/llama.cpp/blob/master/docs/build.md)
2
+
$(error The Makefile build is deprecated. Use the CMake build instead. For more details, see https://github.com/ggml-org/llama.cpp/blob/master/docs/build.md)
3
3
endif
4
4
5
5
# Define the default target now so that it is always the first target
0 commit comments