繁体   English   中英

优化这种“巧合搜索”算法,以提高速度

[英]Optimizing this “coincidence search” algorithm, for speed

我编写了一个算法,旨在模拟实验产生的数据,然后对该数据执行“巧合搜索”(稍后会详细介绍......)。 有问题的数据是一个vector<vector<double> > ,其元素是从高斯分布(或多或少的随机数)中挑选出来的。 每个“列”代表一个“数据流”,每一行代表一个瞬间。 必须保留“数组”中每个元素的“位置”。


算法:

该算法旨在执行以下任务:

同时遍历所有n列(数据流),并计数至少c唯一列具有绝对值大于某个阈值的元素的次数,使得元素位于指定的时间间隔(即一定数量的行)。

当这种情况发生时,我们将一个计数器加一,然后在时间上(按行)向前跳转某个指定的数量。 我们重新开始,直到我们遍历了整个“数组”。 最后,我们返回计数器的值(“符合次数”)。


我的解决方案:

我先给出代码,然后一步一步地解释它的操作(并且,也希望澄清一些细节):

size_t numOfCoincidences(vector<vector<double>> array, double value_threshold, size_t num_columns){

    set<size_t> cache;
    size_t coincidence_counter = 0, time_counter = 0;

    auto exceeds_threshold = [&](double element){ return fabs(element) >= value_threshold; };

    for(auto row_itr = begin(array); row_itr != end(row_itr); ++row_itr){

        auto &row = *row_itr;

        auto coln_itr = std::find_if(execution::par_unseq, begin(row), end(row), exceeds_threshold);
        while(coln_itr != row.end()){
            cache.insert(distance(begin(row), coln_itr));
            coln_itr = std::find_if(next(coln_itr), end(row), exceeds_threshold);
        }

        if(size(cache) >= num_columns){

            ++coincidence_counter;
            cache.clear();

            if(distance(row_ctr, end(waveform)) > (4004000 - time_counter)){
                advance(row_ctr, ((4004000 - time_counter)));
            } else {
                return coincidence_counter;
            }

        }


        if(time_counter == time_threshold){
            row_itr -= (time_counter + 1);
            cache.clear();
        }


        ++time_counter;


    }

    if(cache.size() == 0) time_counter = 0;

    return(coincidence_counter);

}

这个怎么运作...

我逐行遍历数据( vector<vector<double> > array ):

for(auto row_itr = begin(array); row_itr;= end(row_itr); ++row_itr)

对于每一行,我使用std::find_if来获取超过值阈值( value_threshold )的每个元素:

        auto coln_itr = std::find_if(execution::par_unseq, begin(row), end(row), exceeds_threshold);
        while(coln_itr != row.end()){
            cache.insert(distance(begin(row), coln_itr));
            coln_itr = std::find_if(next(coln_itr), end(row), exceeds_threshold);
        }

我所追求的是柱状索引,所以我使用std::distance来获取它并将其存储在std::setcache中。 我在这里选择std::set是因为我有兴趣在某个时间(即行)间隔内计算值超过value_threshold唯一列的数量。 通过使用std::set ,我可以转储每个此类值的列索引,并且“自动删除”重复项。 然后,稍后,我可以简单地检查cache的大小,如果它大于或等于指定的数字( num_columns ),我发现了一个“巧合”。

在获得超过value_threshold的每个值的列索引后,我检查cache的大小以查看是否找到了足够的唯一列。 如果有,我将一个添加到coincidence_counter计数器,我清除cache ,然后在“时间”(即行)中向前跳转某个指定量(此处为4004000 - time_counter )。 请注意,我减去time_counter ,它从第一个找到的超过value_threshold的值中跟踪“时间”(行数)。 我想从那个起点及时向前跳跃。

        if(size(cache) >= num_columns){

            ++coincidence_counter;
            cache.clear();

            if(distance(row_ctr, end(waveform)) > (4004000 - time_counter)){
                advance(row_ctr, ((4004000 - time_counter)));
            } else {
                return coincidence_counter;
            }

        }

最后,我检查time_counter 请记住, num_columns唯一列必须在某个时间(即行)阈值之内。 我从第一个发现的超过value_threshold的值开始计算时间。 如果我已经超过了时间阈值,我想做的是清空cache() ,并使用超过值阈值(如果有的话)的第二个找到的值作为的第一个找到的值,并希望找到以此为起点的巧合。

我没有跟踪每个找到的值的时间(即行索引),而是简单地从第一个找到的值(即time_counter + 1 )之后的一个开始。

        if(time_counter == time_threshold){
            row_itr -= (time_counter + 1);
            cache.clear();
        }

我还在每个循环time_counter添加一个,如果cache大小0 0我想从超过value_threshold的第一个找到的值开始计算时间(即行)),则将其设置为 0。


尝试的优化:

我不确定这些是否有帮助、伤害或其他方面,但这是我尝试过的(收效甚微)

我已经用size_t替换了所有intunsigned int 我知道这可能会稍微快一点,而且这些值无论如何都不应该小于0

我还将execution::par_unseqstd::find_if一起使用。 我不确定这有多大帮助。 “数组”通常有大约16-20列,但行数非常多(大约50000000或更多)。 由于std::find_if正在“扫描”单个行,这些行最多只有几十个元素,因此并行化可能没有多大帮助。


目标:

不幸的是,该算法需要非常长的时间才能运行。 我的首要任务是速度 如果可能的话,我想将执行时间减半。

需要记住的一些事情:“数组”通常是~20列乘~50000000行(有时更长)。 0's很少,并且不能重新排列(“行”的顺序和每行中的元素很重要)。 它占用了(毫不奇怪)大量的 memory,因此我的机器资源非常有限。

我也在cling中将其作为解释的C++运行。 在我的工作中,我从来没有使用过编译的C++ 我试过编译,但没有太大帮助。 我也尝试过使用编译器优化标志。


可以做些什么来缩短执行时间(以牺牲几乎其他任何东西为代价?)

请让我知道我是否可以提供任何其他信息来帮助回答问题。

这段代码似乎可能是 memory 带宽限制,但我会尝试删除花哨的算法内容以支持窗口计数。 未经测试的 C++:

#include <algorithm>
#include <cmath>
#include <vector>

using std::fabs;
using std::size_t;
using std::vector;

size_t NumCoincidences(const vector<vector<double>> &array,
                       double value_threshold, size_t num_columns) {
  static constexpr size_t kWindowSize = 4004000;
  const auto exceeds_threshold = [&](double x) {
    return fabs(x) >= value_threshold;
  };
  size_t start = 0;
  std::vector<size_t> num_exceeds_in_window(array[0].size());
  size_t num_coincidences = 0;
  for (size_t i = 0; i < array.size(); i++) {
    const auto &row = array[i];
    for (size_t j = 0; j < row.size(); j++) {
      num_exceeds_in_window[j] += exceeds_threshold(row[j]) ? 1 : 0;
    }
    if (i >= start + kWindowSize) {
      const auto &row = array[i - kWindowSize];
      for (size_t j = 0; j < row.size(); j++) {
        num_exceeds_in_window[j] -= exceeds_threshold(row[j]) ? 1 : 0;
      }
    }
    size_t total_exceeds_in_window = 0;
    for (size_t n : num_exceeds_in_window) {
      total_exceeds_in_window += n > 0 ? 1 : 0;
    }
    if (total_exceeds_in_window >= num_columns) {
      start = i + 1;
      std::fill(num_exceeds_in_window.begin(), num_exceeds_in_window.end(), 0);
      num_coincidences++;
    }
  }
  return num_coincidences;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM