Skip to content

Commit cf26418

Browse files
committed
Make nsieve fair. Solves hanabi1224#419
1 parent f2172e6 commit cf26418

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

bench/algorithm/nsieve/3.cpp

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
2+
// The Computer Language Shootout
3+
// http://shootout.alioth.debian.org/
4+
// Precedent C entry modified by bearophile for speed and size, 31 Jan 2006
5+
// Converted to C++ by Paul Kitchin
6+
7+
#include <iomanip>
8+
#include <iostream>
9+
#include <sstream>
10+
#include <vector>
11+
12+
void nsieve(std::size_t max) {
13+
std::vector<bool> flags(max,false);
14+
std::size_t count = 0;
15+
for (std::size_t value = 2; value < max; ++value) {
16+
if (!flags[value]) {
17+
++count;
18+
for (std::size_t multiple = value * 2; multiple < max;
19+
multiple += value) {
20+
flags[multiple] = true;
21+
}
22+
}
23+
}
24+
std::cout << "Primes up to " << std::setw(8) << max << ' ' << std::setw(8)
25+
<< count << '\n';
26+
}
27+
28+
int main(int argc, char **argv) {
29+
if (argc != 2) {
30+
std::cerr << "usage: " << argv[0] << " <n>\n";
31+
return 1;
32+
}
33+
unsigned int count;
34+
{
35+
std::istringstream convertor(argv[1]);
36+
if (!(convertor >> count) || !convertor.eof()) {
37+
std::cerr << "usage: " << argv[0] << " <n>\n";
38+
std::cerr << "\tn must be an integer\n";
39+
return 1;
40+
}
41+
}
42+
for (std::size_t i = 0; i < 3; ++i) {
43+
nsieve(10000 << (count - i));
44+
}
45+
}
46+

bench/bench_cpp.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ problems:
1818
- name: nsieve
1919
source:
2020
- 1.cpp
21+
- 3.cpp
2122
compiler_version_command:
2223
compiler_version_regex:
2324
runtime_version_parameter:

0 commit comments

Comments
 (0)