mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 03:39:01 +08:00
Account for missing change on commit "Remove SimpleThreadPool and..."
"... always use {NonBlocking}ThreadPool". It seems the non-blocking implementation was me the default/only one, but a reference to the old name was left unmodified. Fix that.
This commit is contained in:
parent
fd4fe7cbc5
commit
705f66a9ca
@ -18,7 +18,7 @@ static void test_create_destroy_empty_pool()
|
|||||||
// Just create and destroy the pool. This will wind up and tear down worker
|
// Just create and destroy the pool. This will wind up and tear down worker
|
||||||
// threads. Ensure there are no issues in that logic.
|
// threads. Ensure there are no issues in that logic.
|
||||||
for (int i = 0; i < 16; ++i) {
|
for (int i = 0; i < 16; ++i) {
|
||||||
NonBlockingThreadPool tp(i);
|
ThreadPool tp(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ static void test_parallelism(bool allow_spinning)
|
|||||||
{
|
{
|
||||||
// Test we never-ever fail to match available tasks with idle threads.
|
// Test we never-ever fail to match available tasks with idle threads.
|
||||||
const int kThreads = 16; // code below expects that this is a multiple of 4
|
const int kThreads = 16; // code below expects that this is a multiple of 4
|
||||||
NonBlockingThreadPool tp(kThreads, allow_spinning);
|
ThreadPool tp(kThreads, allow_spinning);
|
||||||
VERIFY_IS_EQUAL(tp.NumThreads(), kThreads);
|
VERIFY_IS_EQUAL(tp.NumThreads(), kThreads);
|
||||||
VERIFY_IS_EQUAL(tp.CurrentThreadId(), -1);
|
VERIFY_IS_EQUAL(tp.CurrentThreadId(), -1);
|
||||||
for (int iter = 0; iter < 100; ++iter) {
|
for (int iter = 0; iter < 100; ++iter) {
|
||||||
@ -104,7 +104,7 @@ static void test_parallelism(bool allow_spinning)
|
|||||||
|
|
||||||
static void test_cancel()
|
static void test_cancel()
|
||||||
{
|
{
|
||||||
NonBlockingThreadPool tp(2);
|
ThreadPool tp(2);
|
||||||
|
|
||||||
// Schedule a large number of closure that each sleeps for one second. This
|
// Schedule a large number of closure that each sleeps for one second. This
|
||||||
// will keep the thread pool busy for much longer than the default test timeout.
|
// will keep the thread pool busy for much longer than the default test timeout.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user