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
cf8e3d6f
Commit
cf8e3d6f
authored
Jun 07, 2011
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some tests for the new add_task_by_value() methods of the thread_pool.
parent
ad8a2d19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
1 deletion
+42
-1
thread_pool.cpp
dlib/test/thread_pool.cpp
+42
-1
No files found.
dlib/test/thread_pool.cpp
View file @
cf8e3d6f
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#include <ctime>
#include <ctime>
#include <dlib/misc_api.h>
#include <dlib/misc_api.h>
#include <dlib/threads.h>
#include <dlib/threads.h>
#include <dlib/any.h>
#include "tester.h"
#include "tester.h"
...
@@ -29,6 +30,9 @@ namespace
...
@@ -29,6 +30,9 @@ namespace
struct
add_functor
struct
add_functor
{
{
add_functor
()
{
var
=
1
;}
add_functor
(
int
v
)
:
var
(
v
)
{}
template
<
typename
T
,
typename
U
,
typename
V
>
template
<
typename
T
,
typename
U
,
typename
V
>
void
operator
()(
T
a
,
U
b
,
V
&
res
)
void
operator
()(
T
a
,
U
b
,
V
&
res
)
{
{
...
@@ -43,6 +47,14 @@ namespace
...
@@ -43,6 +47,14 @@ namespace
{
{
global_var
=
9
;
global_var
=
9
;
}
}
// use an any just so that if this object goes out of scope
// then var will get all messed up.
any
var
;
void
operator
()(
int
&
a
)
{
dlib
::
sleep
(
100
);
a
=
var
.
get
<
int
>
();
}
void
operator
()(
int
&
a
,
int
&
b
)
{
dlib
::
sleep
(
100
);
a
=
var
.
get
<
int
>
();
b
=
2
;
}
void
operator
()(
int
&
a
,
int
&
b
,
int
&
c
)
{
dlib
::
sleep
(
100
);
a
=
var
.
get
<
int
>
();
b
=
2
;
c
=
3
;
}
void
operator
()(
int
&
a
,
int
&
b
,
int
&
c
,
int
&
d
)
{
dlib
::
sleep
(
100
);
a
=
var
.
get
<
int
>
();
b
=
2
;
c
=
3
;
d
=
4
;
}
};
};
...
@@ -70,7 +82,7 @@ namespace
...
@@ -70,7 +82,7 @@ namespace
add_functor
f
;
add_functor
f
;
for
(
int
num_threads
=
0
;
num_threads
<
4
;
++
num_threads
)
for
(
int
num_threads
=
0
;
num_threads
<
4
;
++
num_threads
)
{
{
future
<
int
>
a
,
b
,
c
,
res
;
future
<
int
>
a
,
b
,
c
,
res
,
d
;
thread_pool
tp
(
num_threads
);
thread_pool
tp
(
num_threads
);
print_spinner
();
print_spinner
();
...
@@ -243,6 +255,35 @@ namespace
...
@@ -243,6 +255,35 @@ namespace
// add this task just to to perterb the thread pool before it goes out of scope
// add this task just to to perterb the thread pool before it goes out of scope
tp
.
add_task
(
f
,
a
,
b
,
res
);
tp
.
add_task
(
f
,
a
,
b
,
res
);
for
(
int
k
=
0
;
k
<
3
;
++
k
)
{
print_spinner
();
global_var
=
0
;
tp
.
add_task_by_value
(
add_functor
());
tp
.
wait_for_all_tasks
();
DLIB_TEST
(
global_var
==
9
);
a
=
0
;
b
=
0
;
c
=
0
;
d
=
0
;
tp
.
add_task_by_value
(
add_functor
(),
a
);
DLIB_TEST
(
a
==
1
);
a
=
0
;
b
=
0
;
c
=
0
;
d
=
0
;
tp
.
add_task_by_value
(
add_functor
(
8
),
a
,
b
);
DLIB_TEST
(
a
==
8
);
DLIB_TEST
(
b
==
2
);
a
=
0
;
b
=
0
;
c
=
0
;
d
=
0
;
tp
.
add_task_by_value
(
add_functor
(),
a
,
b
,
c
);
DLIB_TEST
(
a
==
1
);
DLIB_TEST
(
b
==
2
);
DLIB_TEST
(
c
==
3
);
a
=
0
;
b
=
0
;
c
=
0
;
d
=
0
;
tp
.
add_task_by_value
(
add_functor
(
5
),
a
,
b
,
c
,
d
);
DLIB_TEST
(
a
==
5
);
DLIB_TEST
(
b
==
2
);
DLIB_TEST
(
c
==
3
);
DLIB_TEST
(
d
==
4
);
}
}
}
}
}
...
...
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