Newer
Older
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*
* adiosMath.cpp
*
* Created on: May 17, 2017
* Author: William F Godoy godoywf@ornl.gov
*/
#include "adiosMath.h"
#include <cmath>
#include <functional> //std::minus<T>
#include <numeric> //std::accumulate
#include <utility> //std::pair
#include "adios2/helper/adiosString.h" //DimsToString
{
size_t GetTotalSize(const Dims &dimensions) noexcept
{
return std::accumulate(dimensions.begin(), dimensions.end(), 1,
std::multiplies<size_t>());
}
bool CheckIndexRange(const int index, const int upperLimit,
const int lowerLimit) noexcept
{
bool inRange = false;
if (index <= upperLimit && index >= lowerLimit)
{
inRange = true;
}
return inRange;
}
size_t NextExponentialSize(const size_t requiredSize, const size_t currentSize,
const float growthFactor) noexcept
{
if (currentSize >= requiredSize)
{
return currentSize;
}
const double growthFactorDouble = static_cast<double>(growthFactor);
const double numerator = std::log(static_cast<double>(requiredSize) /
static_cast<double>(currentSize));
const double denominator = std::log(growthFactorDouble);
const double n = std::ceil(numerator / denominator);
const size_t nextExponentialSize = static_cast<size_t>(
std::ceil(std::pow(growthFactorDouble, n) * currentSize));
return nextExponentialSize;
}
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
Box<Dims> IntersectionBox(const Box<Dims> &box1, const Box<Dims> &box2) noexcept
{
Box<Dims> intersectionBox;
const size_t dimensionsSize = box1.first.size();
for (size_t d = 0; d < dimensionsSize; ++d)
{
// start, count to (start, end)
const Box<size_t> line1{box1.first[d], box1.first[d] + box1.second[d]};
const Box<size_t> line2{box2.first[d], box2.first[d] + box2.second[d]};
// Don't intercept
if (line2.first >= line1.second || line2.second <= line1.first)
{
return intersectionBox;
}
}
// get the intersection box
intersectionBox.first.reserve(dimensionsSize);
intersectionBox.second.reserve(dimensionsSize);
for (size_t d = 0; d < dimensionsSize; ++d)
{
const Box<size_t> line1{box1.first[d], box1.first[d] + box1.second[d]};
const Box<size_t> line2{box2.first[d], box2.first[d] + box2.second[d]};
// start
if (line1.first < line2.first)
{
intersectionBox.first.push_back(line2.first);
}
else
{
intersectionBox.first.push_back(line1.first);
}
// end
if (line1.second > line2.second)
{
intersectionBox.second.push_back(line2.second);
}
else
{
intersectionBox.second.push_back(line1.second);
}
}
return intersectionBox;
}
size_t LinearIndex(const Box<Dims> &localBox, const Dims &point,
const bool isRowMajor, const bool isZeroIndex)
{
auto lf_RowZero = [](const Dims &count,
const Dims &normalizedPoint) -> size_t {
const size_t countSize = count.size();
size_t linearIndex = 0;
size_t product = std::accumulate(count.begin() + 1, count.end(), 1,
std::multiplies<size_t>());
for (size_t p = 0; p < countSize - 1; ++p)
{
linearIndex += normalizedPoint[p] * product;
product /= count[p + 1];
}
linearIndex += normalizedPoint[countSize - 1]; // fastest
return linearIndex;
};
auto lf_ColumnOne = [](const Dims &count,
const Dims &normalizedPoint) -> size_t {
const size_t countSize = count.size();
size_t linearIndex = 0;
size_t product = std::accumulate(count.begin(), count.end() - 1, 1,
std::multiplies<size_t>());
for (size_t p = 1; p < countSize; ++p)
{
linearIndex += (normalizedPoint[countSize - p] - 1) * product;
product /= count[countSize - p];
}
linearIndex += (normalizedPoint[0] - 1); // fastest
return linearIndex;
};
const Dims &start = localBox.first;
const Dims &count = localBox.second;
if (count.size() == 1)
{
return (point[0] - start[0]);
}
// normalize the point
Dims normalizedPoint;
std::transform(point.begin(), point.end(), start.begin(),
std::back_inserter(normalizedPoint), std::minus<size_t>());
size_t linearIndex = MaxSizeT - 1;
if (isRowMajor && isZeroIndex)
{
linearIndex = lf_RowZero(count, normalizedPoint);
}
else if (!isRowMajor && !isZeroIndex)
{
linearIndex = lf_ColumnOne(count, normalizedPoint);
return linearIndex;
}
} // end namespace adios2