Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
446dcb43
Commit
446dcb43
authored
Jan 27, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more notes to spec
parent
da52cbb8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
parallel_for_extension_abstract.h
dlib/threads/parallel_for_extension_abstract.h
+8
-0
No files found.
dlib/threads/parallel_for_extension_abstract.h
View file @
446dcb43
...
@@ -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.
!*/
!*/
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment