1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
|
// 2009 © Václav Šmilauer <eudoxos@arcig.cz>
// 2019 © Bruno Chareyre <bruno.chareyre@grenoble-inp.fr>
#include <core/BodyContainer.hpp>
#include <core/ForceContainer.hpp>
#include <core/Scene.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
namespace yade { // Cannot have #include directive inside.
CREATE_LOGGER(ForceContainer);
void ForceContainer::ensureSynced()
{
if (!synced) throw runtime_error("ForceContainer not thread-synchronized; call sync() first!");
}
void ForceContainer::addForceUnsynced(Body::id_t id, const Vector3r& f)
{
assert((size_t)id < size);
_force[id] += f;
}
void ForceContainer::addTorqueUnsynced(Body::id_t id, const Vector3r& m)
{
assert((size_t)id < size);
_torque[id] += m;
}
void ForceContainer::resizePerm(size_t newSize)
{
if (newSize < _permForce.size()) LOG_WARN("permForce may have been assigned to an id larger than maxId, and will be ignored in that case");
if (newSize > _permForce.size()) {
_permForce.reserve(size_t(1.5 * newSize));
_permTorque.reserve(size_t(1.5 * newSize));
_permForce.resize(newSize, Vector3r::Zero());
_permTorque.resize(newSize, Vector3r::Zero());
syncedSizes = false;
}
}
#ifdef YADE_OPENMP
#include <omp.h>
void ForceContainer::ensureSize(Body::id_t id, int threadN)
{
if (threadN < 0) {
if (id >= Body::id_t(_permForce.size())) resizePerm(id + 1);
} else {
_maxId[threadN] = std::max(_maxId[threadN], id);
if (not(sizeOfThreads[threadN] > unsigned(_maxId[threadN]))) resize(_maxId[threadN] + 1, threadN);
}
}
ForceContainer::ForceContainer()
{
nThreads = omp_get_max_threads();
size = 0;
for (int i = 0; i < nThreads; i++) {
_forceData.push_back(vvector());
_torqueData.push_back(vvector());
sizeOfThreads.push_back(0);
_maxId.push_back(0);
}
}
const Vector3r& ForceContainer::getForce(Body::id_t id)
{
ensureSynced();
return ((size_t)id < size) ? _force[id] : _zero;
}
void ForceContainer::addForce(Body::id_t id, const Vector3r& f)
{
ensureSize(id, omp_get_thread_num());
synced = false;
_forceData[omp_get_thread_num()][id] += f;
}
const Vector3r& ForceContainer::getTorque(Body::id_t id)
{
ensureSynced();
return ((size_t)id < size) ? _torque[id] : _zero;
}
void ForceContainer::addTorque(Body::id_t id, const Vector3r& t)
{
ensureSize(id, omp_get_thread_num());
synced = false;
_torqueData[omp_get_thread_num()][id] += t;
}
void ForceContainer::addMaxId(Body::id_t id)
{
if (_maxId[omp_get_thread_num()] < id) synced = false;
_maxId[omp_get_thread_num()] = std::max(id, _maxId[omp_get_thread_num()]);
}
void ForceContainer::setPermForce(Body::id_t id, const Vector3r& f)
{
ensureSize(id, -1);
if (permForceSynced) { // current permF has been accumulated already, substract it form total then add new value; else just set the value below
addForceUnsynced(id, f - _permForce[id]);
}
_permForce[id] = f;
if (not permForceUsed) {
synced = false;
permForceUsed = true;
}
}
void ForceContainer::setPermTorque(Body::id_t id, const Vector3r& t)
{
ensureSize(id, -1);
if (permForceSynced) { // current permF has been accumulated already, substract it form total then add new value; else just set the value below
addTorqueUnsynced(id, t - _permTorque[id]);
}
_permTorque[id] = t;
if (not permForceUsed) {
synced = false;
permForceUsed = true;
}
}
const Vector3r& ForceContainer::getPermForce(Body::id_t id) { return ((size_t)id < size) ? _permForce[id] : _zero; }
const Vector3r& ForceContainer::getPermTorque(Body::id_t id) { return ((size_t)id < size) ? _permTorque[id] : _zero; }
const Vector3r& ForceContainer::getForceUnsynced(Body::id_t id)
{
assert((size_t)id < size);
return _force[id];
}
const Vector3r& ForceContainer::getTorqueUnsynced(Body::id_t id)
{
assert((size_t)id < size);
return _torque[id];
}
const Vector3r ForceContainer::getForceSingle(Body::id_t id)
{
Vector3r ret(Vector3r::Zero());
for (int t = 0; t < nThreads; t++) {
ret += ((size_t)id < sizeOfThreads[t]) ? _forceData[t][id] : _zero;
}
if (permForceUsed) ret += _permForce[id];
return ret;
}
const Vector3r ForceContainer::getTorqueSingle(Body::id_t id)
{
Vector3r ret(Vector3r::Zero());
for (int t = 0; t < nThreads; t++) {
ret += ((size_t)id < sizeOfThreads[t]) ? _torqueData[t][id] : _zero;
}
if (permForceUsed) ret += _permTorque[id];
return ret;
}
void ForceContainer::sync()
{
if (synced) return;
const std::lock_guard<std::mutex> lock(globalMutex);
if (synced) return; // if synced meanwhile
syncSizesOfContainers();
const bool redirect = Omega::instance().getScene()->bodies->useRedirection;
const auto& realBodies = Omega::instance().getScene()->bodies->realBodies;
if (redirect) Omega::instance().getScene()->bodies->updateRealBodies();
const unsigned long len = redirect ? (unsigned long)realBodies.size() : (unsigned long)size;
#pragma omp parallel for schedule(static)
for (unsigned long k = 0; k < len; k++) {
const Body::id_t& id = redirect ? realBodies[k] : k;
Vector3r sumF(Vector3r::Zero()), sumT(Vector3r::Zero());
for (int thread = 0; thread < nThreads; thread++) {
sumF += _forceData[thread][id];
sumT += _torqueData[thread][id];
_forceData[thread][id] = Vector3r::Zero();
_torqueData[thread][id] = Vector3r::Zero();
} //reset here so we don't have to do it later
_force[id] += sumF;
_torque[id] += sumT;
if (permForceUsed and not permForceSynced) {
_force[id] += _permForce[id];
_torque[id] += _permTorque[id];
}
}
permForceSynced = true;
synced = true;
syncCount++;
}
#if (YADE_REAL_BIT <= 64)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpragmas"
// this is to remove warning about manipulating raw memory
#pragma GCC diagnostic ignored "-Wclass-memaccess"
#endif
void ForceContainer::reset(long iter, bool resetAll)
{
syncSizesOfContainers();
const shared_ptr<Scene>& scene = Omega::instance().getScene();
size_t currSize;
if (scene->bodies->useRedirection) { //if using short lists we only reset forces for bodies not-vanished
scene->bodies->updateRealBodies();
const auto& sdIds = scene->bodies->realBodies;
currSize = sdIds.size();
// no need to reset force-torque per thread since they are set to zero in sync() already
#pragma omp parallel for schedule(static)
for (unsigned long k = 0; k < currSize; k++) /*_force[sdIds[k]]=Vector3r::Zero(); */
#if (YADE_REAL_BIT <= 64)
memset(&_force[sdIds[k]], 0, sizeof(Vector3r));
#else
_force[sdIds[k]] = Vector3r::Zero();
#endif
#pragma omp parallel for schedule(static)
for (unsigned long k = 0; k < currSize; k++) /*_torque[sdIds[k]]=Vector3r::Zero();*/
#if (YADE_REAL_BIT <= 64)
memset(&_torque[sdIds[k]], 0, sizeof(Vector3r));
#else
_torque[sdIds[k]] = Vector3r::Zero();
#endif
// those need a reset per-thread OTOH
if (resetAll) {
for (unsigned long k = 0; k < currSize; k++)
_permForce[sdIds[k]] = Vector3r::Zero();
for (unsigned long k = 0; k < currSize; k++)
_permTorque[sdIds[k]] = Vector3r::Zero();
permForceUsed = false;
}
} else { // else reset everything
#if (YADE_REAL_BIT <= 64)
memset(&_force[0], 0, sizeof(Vector3r) * size);
memset(&_torque[0], 0, sizeof(Vector3r) * size);
#else
// the standard way, perfectly optimized by compiler.
std::fill(_force.begin(), _force.end(), Vector3r::Zero());
std::fill(_torque.begin(), _torque.end(), Vector3r::Zero());
#endif
}
if (resetAll and permForceUsed) {
#if (YADE_REAL_BIT <= 64)
memset(&_permForce[0], 0, sizeof(Vector3r) * size);
memset(&_permTorque[0], 0, sizeof(Vector3r) * size);
#else
// the standard way, perfectly optimized by compiler.
std::fill(_permForce.begin(), _permForce.end(), Vector3r::Zero());
std::fill(_permTorque.begin(), _permTorque.end(), Vector3r::Zero());
#endif
permForceUsed = false;
}
if (!permForceUsed) synced = true;
else
synced = false;
permForceSynced = false;
lastReset = iter;
}
#if (YADE_REAL_BIT <= 64)
#pragma GCC diagnostic pop
#endif
void ForceContainer::resize(size_t newSize, int threadN)
{
if (sizeOfThreads[threadN] >= newSize) return;
LOG_DEBUG("Resize ForceContainer from the size " << size << " to the size " << newSize);
_forceData[threadN].reserve(size_t(newSize * 1.5));
_torqueData[threadN].reserve(size_t(newSize * 1.5));
_forceData[threadN].resize(newSize, Vector3r::Zero());
_torqueData[threadN].resize(newSize, Vector3r::Zero());
sizeOfThreads[threadN] = newSize;
_maxId[threadN] = newSize - 1;
syncedSizes = false;
}
int ForceContainer::getNumAllocatedThreads() const { return nThreads; }
bool ForceContainer::getPermForceUsed() const { return permForceUsed; }
void ForceContainer::syncSizesOfContainers()
{
//check whether all containers have equal length, and if not resize it
size_t maxThreadSize = 0;
for (int i = 0; i < nThreads; i++)
maxThreadSize = std::max(maxThreadSize, size_t(_maxId[i] + 1));
if (permForceUsed) maxThreadSize = std::max(maxThreadSize, size_t(_permForce.size()));
if (maxThreadSize > size) syncedSizes = false;
if (syncedSizes) return;
size_t newSize = std::max(size, maxThreadSize);
for (int i = 0; i < nThreads; i++)
resize(newSize, i);
if (newSize > size) {
_force.reserve(size_t(newSize * 1.3));
_torque.reserve(size_t(newSize * 1.3));
_force.resize(newSize, Vector3r::Zero());
_torque.resize(newSize, Vector3r::Zero());
}
if (permForceUsed) resizePerm(newSize);
syncedSizes = true;
size = newSize;
}
#endif
} // namespace yade
|