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
|
///
/// @file LoadBalancerP2.hpp
/// @brief This load balancer assigns work to the threads in the
/// computation of the 2nd partial sieve function.
/// It is used by the P2(x, a) and B(x, y) functions.
///
/// Copyright (C) 2021 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
#ifndef LOADBALANCERP2_HPP
#define LOADBALANCERP2_HPP
#include <int128_t.hpp>
#include <OmpLock.hpp>
#include <stdint.h>
namespace primecount {
class LoadBalancerP2
{
public:
LoadBalancerP2(maxint_t x, int64_t sieve_limit, int threads, bool is_print);
bool get_work(int64_t& low, int64_t& high);
int get_threads() const;
private:
void print_status();
int64_t low_ = 0;
int64_t sieve_limit_ = 0;
int64_t min_thread_dist_ = 0;
int64_t thread_dist_ = 0;
double time_ = 0;
int threads_ = 0;
int precision_ = 0;
bool is_print_ = false;
OmpLock lock_;
};
} // namespace
#endif
|