Skip to content
Snippets Groups Projects

external: Add poolSTL as alternative for parallel sorting.

Merged Felix Weiglhofer requested to merge fweig/cbmroot:external-pool-stl into master
1 unresolved thread
Files
8
+ 12
0
/* Copyright (C) 2024 FIAS Frankfurt Institute for Advanced Studies, Frankfurt / Main
SPDX-License-Identifier: GPL-3.0-only
Authors: Felix Weiglhofer [committer] */
#include "Algorithm.h"
task_thread_pool::task_thread_pool& cbm::algo::GetGlobalSTLThreadPool()
{
static task_thread_pool::task_thread_pool pool;
return pool;
}
Loading