![]() |
|
|
#254 |
|
"Nuri, the dragon :P"
Jul 2016
Good old Germany
32D16 Posts |
|
|
|
|
|
|
#255 | |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
949710 Posts |
Quote:
He meant "Are you trying to sieve with (old or whatnot) srsieve, not knowing that you should only sieve low n values with srsieve and then switch to sr1sieve which is many times faster?" In fact one should sieve like follows (pay attention to the middle step which removes 25% of candidates and makes next step faster): Code:
srsieve -g -n200000 -N1000000 -P1e6 "8*867^n-1"
# optional:
# awk 'NF==2 {print $2%3}' t17_b867_k8.npg | sort | uniq -c
# and observe
awk 'NF!=2 || $2%3!=0' t17_b867_k8.npg > t17_b867_k8.A.npg
sr1sieve -t 4 -P 1e11 -i t17_b867_k8.A.npg -o t17_b867_k8.1e11.npg
sr1sieve -t 4 -P 1e13 -i t17_b867_k8.1e11.npg -o t17_b867_k8.1e13.npg
# even more optimal is to sieve ranges on 1 CPU each, then combine...
# ... but you have to know how/what you are doing
|
|
|
|
|
|
|
#256 | |
|
"Nuri, the dragon :P"
Jul 2016
Good old Germany
81310 Posts |
Quote:
[Its not my first sieve I´m doing. I probably misunderstood Curtis.] |
|
|
|
|
|
|
#257 | |
|
"Curtis"
Feb 2005
Riverside, CA
2·2,437 Posts |
Quote:
If the power is a multiple of 3, then the number is composite (because 8 is also a 3rd power). This is precisely the point Batalov has been trying to make all week- the tools as CRUS uses them miss these algebraic factors, so you should remove them yourself (with Batalov's script, or via fancy awk as he wrote it). Serge- Thanks for the awk tip, and for translating my too-short post about sr1. |
|
|
|
|
|
|
#258 | |
|
"Mark"
Apr 2003
Between here and the
22×7×227 Posts |
Quote:
|
|
|
|
|
|
|
#259 | |
|
"Nuri, the dragon :P"
Jul 2016
Good old Germany
3·271 Posts |
Quote:
Oh, your talking about algebraic factors...............I´ll check with the script. Your reply was so confusing, just say what you want. Sry that I falsely understand it, I should stop sieving until all problem solved.
|
|
|
|
|
|
|
#260 |
|
Dec 2011
After milion nines:)
145110 Posts |
When you use -t 4 what is slowdown comparing to t 1 * 4 instances?
Last fiddled with by pepi37 on 2017-01-22 at 21:12 |
|
|
|
|
|
#261 |
|
"Curtis"
Feb 2005
Riverside, CA
2·2,437 Posts |
For me on R3, -t 4 is just a bit faster than 3 instances of single-threaded. So, about 20% wasted for convenience. But that's on a hyperthreaded machine; ubuntu doesn't schedule awesomely, so even with 6 tasks running it sometimes doubles up tasks on a single core whilst leaving another core idle.
|
|
|
|
|
|
#262 |
|
Dec 2011
After milion nines:)
1,451 Posts |
That info is same for me- one instance gives me 53Mp/s but t 4 gives me 169 Mp/s
|
|
|
|
|
|
#263 |
|
"Nuri, the dragon :P"
Jul 2016
Good old Germany
3·271 Posts |
R867 finished to p=50T. File attached.
As I stated there are a lot of under sieved files for single-k Bases. Reserving S406 (1k) from n=200K to N=1M. planned pmax=50T |
|
|
|
|
|
#264 |
|
Dec 2011
After milion nines:)
26538 Posts |
1157 algebraic factors removed
corrected sieve file attached Last fiddled with by pepi37 on 2017-01-30 at 19:12 |
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sieving Drive all base 2/4 k's worked by CRUS | gd_barnes | Conjectures 'R Us | 143 | 2014-10-21 23:55 |
| Some CRUS stats | vmod | Conjectures 'R Us | 213 | 2014-02-28 21:23 |
| What are your CRUS plans? | rogue | Conjectures 'R Us | 35 | 2013-11-09 09:03 |
| CRUS-like sieving challenge | CRGreathouse | Puzzles | 24 | 2011-10-28 18:30 |
| how high will CRUS go | Mini-Geek | Conjectures 'R Us | 1 | 2010-11-08 20:50 |