Files
rdkit/Code/RDGeneral/RDThreads.h
Greg Landrum 0147cd8201 Fixes #5210 (#5408)
* revert duplicate chunk in release notes

* replace deprecated ifdefs
This one gets rid of USE_BUILTIN_POPCNT and RDK_THREADSAFE_SS
use RDK_OPTIMIZE_POPCNT or RDK_BUILD_THREADSAFE_SSS instead

* get rid of BUILD_COORDGEN_SUPPORT from ROMol.i

* fix a stupid typo

* update release notes
2022-07-11 11:20:03 +02:00

45 lines
917 B
C++

//
// Copyright (C) 2015-2018 Greg Landrum
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include <RDGeneral/export.h>
#ifndef RDTHREADS_H_2015
#define RDTHREADS_H_2015
#include <RDGeneral/Invariant.h>
#ifdef RDK_BUILD_THREADSAFE_SSS
#include <thread>
namespace RDKit {
inline unsigned int getNumThreadsToUse(int target) {
if (target >= 1) {
return static_cast<unsigned int>(target);
}
unsigned int res = std::thread::hardware_concurrency();
if (res > rdcast<unsigned int>(-target)) {
return res + target;
} else {
return 1;
}
}
} // namespace RDKit
#else
namespace RDKit {
inline unsigned int getNumThreadsToUse(int target) {
RDUNUSED_PARAM(target);
return 1;
}
} // namespace RDKit
#endif
#endif