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: docs/source/developer_guide.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,7 +187,7 @@ RAFT relies on `clang-format` to enforce code style across all C++ and CUDA sour
187
187
1. Do not split empty functions/records/namespaces.
188
188
2. Two-space indentation everywhere, including the line continuations.
189
189
3. Disable reflowing of comments.
190
-
The reasons behind these deviations from the Google style guide are given in comments [here](https://github.com/rapidsai/raft/blob/main/cpp/.clang-format).
190
+
The reasons behind these deviations from the Google style guide are given in comments [here](https://github.com/rapidsai/raft/blob/release/26.04/cpp/.clang-format).
191
191
192
192
[`doxygen`](https://doxygen.nl/) is used as documentation generator and also as a documentation linter.
193
193
In order to run doxygen as a linter on C++/CUDA code, run
@@ -205,7 +205,7 @@ you can run `codespell -i 3 -w .` from the repository root directory.
205
205
This will bring up an interactive prompt to select which spelling fixes to apply.
206
206
207
207
### #include style
208
-
[include_checker.py](https://github.com/rapidsai/raft/blob/main/cpp/scripts/include_checker.py) is used to enforce the include style as follows:
208
+
[include_checker.py](https://github.com/rapidsai/raft/blob/release/26.04/cpp/scripts/include_checker.py) is used to enforce the include style as follows:
209
209
1.`#include "..."` should be used for referencing local files only. It is acceptable to be used for referencing files in a sub-folder/parent-folder of the same algorithm, but should never be used to include files in other algorithms or between algorithms and the primitives or other dependencies.
210
210
2.`#include <...>` should be used for referencing everything else
211
211
@@ -230,7 +230,7 @@ Call CUDA APIs via the provided helper macros `RAFT_CUDA_TRY`, `RAFT_CUBLAS_TRY`
230
230
## Logging
231
231
232
232
### Introduction
233
-
Anything and everything about logging is defined inside [logger.hpp](https://github.com/rapidsai/raft/blob/main/cpp/include/raft/core/logger.hpp). It uses [spdlog](https://github.com/gabime/spdlog) underneath, but this information is transparent to all.
233
+
Anything and everything about logging is defined inside [logger.hpp](https://github.com/rapidsai/raft/blob/release/26.04/cpp/include/raft/core/logger.hpp). It uses [spdlog](https://github.com/gabime/spdlog) underneath, but this information is transparent to all.
0 commit comments