File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 34
34
struct llama_context * ctx;
35
35
const enum llama_rope_type rope_type;
36
36
```
37
-
37
+
38
38
_(NOTE: this guideline is yet to be applied to the `llama.cpp` codebase. New code should follow this guideline.)_
39
-
39
+
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
105
105
106
106
# Preprocessor directives
107
107
108
- - (TODO: add guidelines with examples and apply them to the codebase)
108
+ - _ (TODO: add guidelines with examples and apply them to the codebase)_
109
109
110
110
```cpp
111
111
#ifdef FOO
You can’t perform that action at this time.
0 commit comments