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
6df9cb18
Commit
6df9cb18
authored
Mar 02, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarified spec
parent
1eeab0b9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
parallel_for_extension_abstract.h
dlib/threads/parallel_for_extension_abstract.h
+16
-0
No files found.
dlib/threads/parallel_for_extension_abstract.h
View file @
6df9cb18
...
@@ -23,6 +23,7 @@ namespace dlib
...
@@ -23,6 +23,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This is a convenience function for submitting a block of jobs to a thread_pool.
- This is a convenience function for submitting a block of jobs to a thread_pool.
In particular, given the half open range [begin, end), this function will
In particular, given the half open range [begin, end), this function will
...
@@ -59,6 +60,7 @@ namespace dlib
...
@@ -59,6 +60,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is equivalent to the following block of code:
- This function is equivalent to the following block of code:
thread_pool tp(num_threads);
thread_pool tp(num_threads);
...
@@ -79,6 +81,7 @@ namespace dlib
...
@@ -79,6 +81,7 @@ namespace dlib
requires
requires
- chunks_per_thread > 0
- chunks_per_thread > 0
- begin <= end
- begin <= end
- funct does not throw any exceptions
ensures
ensures
- This is a convenience function for submitting a block of jobs to a
- This is a convenience function for submitting a block of jobs to a
thread_pool. In particular, given the range [begin, end), this function will
thread_pool. In particular, given the range [begin, end), this function will
...
@@ -113,6 +116,7 @@ namespace dlib
...
@@ -113,6 +116,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is equivalent to the following block of code:
- This function is equivalent to the following block of code:
thread_pool tp(num_threads);
thread_pool tp(num_threads);
...
@@ -135,6 +139,7 @@ namespace dlib
...
@@ -135,6 +139,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is equivalent to the following function call:
- This function is equivalent to the following function call:
parallel_for_blocked(tp, begin, end, [&](long begin_sub, long end_sub)
parallel_for_blocked(tp, begin, end, [&](long begin_sub, long end_sub)
...
@@ -164,6 +169,7 @@ namespace dlib
...
@@ -164,6 +169,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is equivalent to the following block of code:
- This function is equivalent to the following block of code:
thread_pool tp(num_threads);
thread_pool tp(num_threads);
...
@@ -184,6 +190,7 @@ namespace dlib
...
@@ -184,6 +190,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is equivalent to the following function call:
- This function is equivalent to the following function call:
parallel_for_blocked(tp, begin, end, [&](long begin_sub, long end_sub)
parallel_for_blocked(tp, begin, end, [&](long begin_sub, long end_sub)
...
@@ -211,6 +218,7 @@ namespace dlib
...
@@ -211,6 +218,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is equivalent to the following block of code:
- This function is equivalent to the following block of code:
thread_pool tp(num_threads);
thread_pool tp(num_threads);
...
@@ -233,6 +241,7 @@ namespace dlib
...
@@ -233,6 +241,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for() routine defined above except
- This function is identical to the parallel_for() routine defined above except
that it will print messages to cout showing the progress in executing the
that it will print messages to cout showing the progress in executing the
...
@@ -254,6 +263,7 @@ namespace dlib
...
@@ -254,6 +263,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for() routine defined above except
- This function is identical to the parallel_for() routine defined above except
that it will print messages to cout showing the progress in executing the
that it will print messages to cout showing the progress in executing the
...
@@ -274,6 +284,7 @@ namespace dlib
...
@@ -274,6 +284,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for() routine defined above except
- This function is identical to the parallel_for() routine defined above except
that it will print messages to cout showing the progress in executing the
that it will print messages to cout showing the progress in executing the
...
@@ -294,6 +305,7 @@ namespace dlib
...
@@ -294,6 +305,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for() routine defined above except
- This function is identical to the parallel_for() routine defined above except
that it will print messages to cout showing the progress in executing the
that it will print messages to cout showing the progress in executing the
...
@@ -316,6 +328,7 @@ namespace dlib
...
@@ -316,6 +328,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for_blocked() routine defined
- This function is identical to the parallel_for_blocked() routine defined
above except that it will print messages to cout showing the progress in
above except that it will print messages to cout showing the progress in
...
@@ -337,6 +350,7 @@ namespace dlib
...
@@ -337,6 +350,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for_blocked() routine defined
- This function is identical to the parallel_for_blocked() routine defined
above except that it will print messages to cout showing the progress in
above except that it will print messages to cout showing the progress in
...
@@ -357,6 +371,7 @@ namespace dlib
...
@@ -357,6 +371,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for_blocked() routine defined
- This function is identical to the parallel_for_blocked() routine defined
above except that it will print messages to cout showing the progress in
above except that it will print messages to cout showing the progress in
...
@@ -377,6 +392,7 @@ namespace dlib
...
@@ -377,6 +392,7 @@ namespace dlib
requires
requires
- begin <= end
- begin <= end
- chunks_per_thread > 0
- chunks_per_thread > 0
- funct does not throw any exceptions
ensures
ensures
- This function is identical to the parallel_for_blocked() routine defined
- This function is identical to the parallel_for_blocked() routine defined
above except that it will print messages to cout showing the progress in
above except that it will print messages to cout showing the progress in
...
...
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