Skip to content

Commit 8c9691a

Browse files
authored
[SYCL][DOC] Update code location line number (#8515)
This patch fixes an outdated line number that is referenced in the documentation.
1 parent 3fdbfeb commit 8c9691a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/doc/design/KernelProgramCache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ kernel of this program will be cached also.
215215
All requests to build a program or to create a kernel - whether they originate
216216
from explicit user API calls or from internal SYCL runtime execution logic - end
217217
up with calling the function
218-
[`getOrBuild()`](https://github.com/intel/llvm/blob/sycl/sycl/source/detail/program_manager/program_manager.cpp#L149)
218+
[`getOrBuild()`](https://github.com/intel/llvm/blob/sycl/sycl/source/detail/program_manager/program_manager.cpp)
219219
with number of lambda functions passed as arguments:
220220

221221
- Acquire function;
@@ -225,7 +225,7 @@ with number of lambda functions passed as arguments:
225225
*Acquire* function returns a locked version of cache. Locking is employed for
226226
thread safety. The threads are blocked only for insert-or-acquire attempt, i.e.
227227
when calling to `map::insert` in
228-
[`getOrBuild`](https://github.com/intel/llvm/blob/sycl/sycl/source/detail/program_manager/program_manager.cpp#L149)
228+
[`getOrBuild()`](https://github.com/intel/llvm/blob/sycl/sycl/source/detail/program_manager/program_manager.cpp)
229229
function. The rest of operation is done with the help of atomics and condition
230230
variables (plus a mutex for proper work of condition variable).
231231

0 commit comments

Comments
 (0)