Skip to content

Commit

Permalink
Merge pull request #13466 from drwells/tbb-quick-test
Browse files Browse the repository at this point in the history
Fix the TBB quick test.
  • Loading branch information
marcfehling committed Mar 1, 2022
2 parents 434af4a + f7591d4 commit 7fef175
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/quick_tests/tbb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
#include <deal.II/base/thread_management.h>
#include <deal.II/base/work_stream.h>

#include <tbb/task_scheduler_init.h>

#include <iostream>

using namespace dealii;
Expand Down Expand Up @@ -87,8 +85,7 @@ test2()
int
main()
{
std::cout << "TBB will use "
<< tbb::task_scheduler_init::default_num_threads() << " threads."
std::cout << "TBB will use " << MultithreadInfo::n_threads() << " threads."
<< std::endl;

test1();
Expand Down

0 comments on commit 7fef175

Please sign in to comment.