Commit 446dcb43 authored by Davis King's avatar Davis King

Added more notes to spec

parent da52cbb8
...@@ -39,6 +39,8 @@ namespace dlib ...@@ -39,6 +39,8 @@ namespace dlib
Then parallel_for_blocked() submits each of these subranges to tp for Then parallel_for_blocked() submits each of these subranges to tp for
processing such that (obj.*funct)(begin[i], end[i]) is invoked for all valid processing such that (obj.*funct)(begin[i], end[i]) is invoked for all valid
values of i. values of i.
- This function will not perform any memory allocations or create any system
resources such as mutex objects.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -92,6 +94,8 @@ namespace dlib ...@@ -92,6 +94,8 @@ namespace dlib
Then parallel_for_blocked() submits each of these subranges to tp for Then parallel_for_blocked() submits each of these subranges to tp for
processing such that funct(begin[i], end[i]) is invoked for all valid values processing such that funct(begin[i], end[i]) is invoked for all valid values
of i. of i.
- This function will not perform any memory allocations or create any system
resources such as mutex objects.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -140,6 +144,8 @@ namespace dlib ...@@ -140,6 +144,8 @@ namespace dlib
- Therefore, this routine invokes (obj.*funct)(i) for all i in the range - Therefore, this routine invokes (obj.*funct)(i) for all i in the range
[begin, end). However, it does so using tp.num_threads_in_pool() parallel [begin, end). However, it does so using tp.num_threads_in_pool() parallel
threads. threads.
- This function will not perform any memory allocations or create any system
resources such as mutex objects.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -186,6 +192,8 @@ namespace dlib ...@@ -186,6 +192,8 @@ namespace dlib
}, chunks_per_thread); }, chunks_per_thread);
- Therefore, this routine invokes funct(i) for all i in the range [begin, end). - Therefore, this routine invokes funct(i) for all i in the range [begin, end).
However, it does so using tp.num_threads_in_pool() parallel threads. However, it does so using tp.num_threads_in_pool() parallel threads.
- This function will not perform any memory allocations or create any system
resources such as mutex objects.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment