OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
thread_count.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include <algorithm>
20 #include <thread>
21 
22 extern unsigned g_cpu_threads_override;
23 extern size_t g_max_import_threads;
24 
25 inline int cpu_threads() {
26  auto ov = g_cpu_threads_override;
27  return (ov <= 0) ? std::max(2 * std::thread::hardware_concurrency(), 1U) : ov;
28 }
29 
30 namespace import_export {
31 inline size_t num_import_threads(const int32_t copy_params_threads) {
32  if (copy_params_threads > 0) {
33  return static_cast<size_t>(copy_params_threads);
34  }
35  return std::min(static_cast<size_t>(std::thread::hardware_concurrency()),
37 }
38 } // namespace import_export
unsigned g_cpu_threads_override
size_t num_import_threads(const int32_t copy_params_threads)
Definition: thread_count.h:31
int cpu_threads()
Definition: thread_count.h:25
size_t g_max_import_threads
Definition: Importer.cpp:105