Migrate to modern TBB version

This commit is contained in:
Siarhei Fedartsou 2022-08-23 18:02:46 +02:00
parent 2c6527a562
commit a64e58633d
2 changed files with 0 additions and 7 deletions

View File

@ -7,9 +7,6 @@
#include <boost/test/unit_test.hpp>
// make sure not to leak in recursive bisection
#include <tbb/global_control.h>
tbb::global_control scheduler(tbb::global_control::max_allowed_parallelism, 2);
using namespace osrm::partitioner;
using namespace osrm::util;

View File

@ -24,10 +24,6 @@
#include <utility>
#include <vector>
// explicit TBB scheduler init to register resources cleanup at exit
#include <tbb/global_control.h>
tbb::global_control scheduler(tbb::global_control::max_allowed_parallelism, 2);
BOOST_AUTO_TEST_SUITE(static_rtree)
using namespace osrm;