mersenneforum.org  

Go Back   mersenneforum.org > Other Stuff > Forum Feedback

Reply
 
Thread Tools
Old 2011-06-05, 13:24   #23
davieddy
 
davieddy's Avatar
 
"Lucan"
Dec 2006
England

11001010010102 Posts
Default

Quote:
Originally Posted by xilman View Post
I find it annoying that I'm forever being asked to slap down posters who appear either to be imbecilic or not potty-trained or both.
Je me regrette FA

David
davieddy is offline   Reply With Quote
Old 2011-06-05, 14:48   #24
davieddy
 
davieddy's Avatar
 
"Lucan"
Dec 2006
England

2·3·13·83 Posts
Default

Quote:
Originally Posted by davieddy View Post
First heard that ~50 years ago.
It still rocks.
Just noticed the punchline "Ca commence avec Toi"

David
davieddy is offline   Reply With Quote
Old 2011-06-07, 11:24   #25
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

33·5·7·11 Posts
Default

I find it annoying when people respond to themselves.
gd_barnes is offline   Reply With Quote
Old 2011-06-07, 13:44   #26
Brian-E
 
Brian-E's Avatar
 
"Brian"
Jul 2007
The Netherlands

7×467 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
I find it annoying when people respond to themselves.
It could be worse. At least he's openly responding to himself. Another online community in which I play some role is plagued by a person who uses multiple profiles (sock puppets if you like) and responds to his own posts using different ones. Sometimes people do this to give their own viewpoints apparent backing and the link has some famous examples, but in this case his aim appears to be solely to annoy everyone else, lead them off what's supposed to be being discussed, and provoke angry reactions from the "real" people who haven't realised that we are dealing with just one individual.

If that ever happens here, I've never noticed it. So either the sock puppets here have me well and truly hoodwinked, or the gerbils do a good job at keeping them away.
Brian-E is offline   Reply With Quote
Old 2011-06-08, 05:48   #27
davieddy
 
davieddy's Avatar
 
"Lucan"
Dec 2006
England

2×3×13×83 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
I find it annoying when people respond to themselves.
The 1 hour editing deadline is partly to blame.
davieddy is offline   Reply With Quote
Old 2011-06-08, 08:41   #28
xilman
Bamboozled!
 
xilman's Avatar
 
"π’‰Ίπ’ŒŒπ’‡·π’†·π’€­"
May 2003
Down not across

10,753 Posts
Default

Quote:
Originally Posted by davieddy View Post
The 1 hour editing deadline is partly to blame.
I've recently been accused of answering myself. The editing deadline for supermods appears to be infinite so that's not the reason in this case.

The real reason is that a significant time after the first post I found answers to my (implied) questions and so posted them so that others would be spared the labour of performing the search to find the answers.
xilman is offline   Reply With Quote
Old 2011-06-08, 12:24   #29
Christenson
 
Christenson's Avatar
 
Dec 2010
Monticello

5·359 Posts
Default

Quote:
Originally Posted by xilman View Post
I've recently been accused of answering myself. The editing deadline for supermods appears to be infinite so that's not the reason in this case.

The real reason is that a significant time after the first post I found answers to my (implied) questions and so posted them so that others would be spared the labour of performing the search to find the answers.
A re-post when you find your own answer isn't exactly the same as arguing with yourself...which is best done within one post, for example, if I had a heuristic argument that euler-mascheroni gamma wasn't transcendental...but didn't completely believe myseflf....
Christenson is offline   Reply With Quote
Old 2011-06-09, 05:53   #30
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

242338 Posts
Default

Quote:
Originally Posted by Christenson View Post
...but didn't completely believe myseflf....
Now that is annoying. I find it very annoying when I don't completely believe myself.
gd_barnes is offline   Reply With Quote
Old 2011-06-10, 19:22   #31
Flatlander
I quite division it
 
Flatlander's Avatar
 
"Chris"
Feb 2005
England

81D16 Posts
Default

Quote:
Originally Posted by davieddy View Post
Looks like I'm too late. I was hoping to stop you.
I find it annoying when people try to turn every thread into a music thread to win a bet or something.

Also find it annoying when people insist on talking about things I don't understand. Like everything.

And when I ask a stupid question.

And when I ask two stupid questions and someone only answers one of them and I'm left wondering if I should repost.

When people start sentences with 'And'.

and er posts with little or no punctuation
Flatlander is offline   Reply With Quote
Old 2011-07-13, 22:28   #32
LiquidNitrogen
 
LiquidNitrogen's Avatar
 
Jun 2011
Henlopen Acres, Delaware

13310 Posts
Default

Maybe not the place for this, since it applies to some of the software programs here and not posts in particular:

But if some of these apps are open source, and you have to run one app to sieve, then feed the output file as an input file to a prime prover app, it seems like the authors of each program should be able to "link up" their programs and make this a little more automatic.

OK, maybe I have been spoiled by coding too many cron tasks in my day to automate everything, but it seems to me it would be awesome if we could:

  • Start generating primes by varying k's, b's, and n's in the k*b^n +/-1 field instead of varying just the k's
  • Code a trigger point where after sieving slows down by some prescribed amount, the prime prover kicks in
  • Continue the sieving on the sieving core, but "pull entries out" of the prime prover list if they have not been reached yet
  • After some global condition is met, stop sieving, and generate more k's, b's, and n's and repeat the process
The idea is to constantly give the prime prover cores as much work as possible, yet improve efficiency by removing work when possible (deep sieving while prime proving).

Deep sieving prior to prime proving is a waste at some point, yet entering prime proving too soon is equally as counterproductive (an additional one hour of sieving could save days worth of unnecessary prime proving).

Why not have the best of both worlds? Start proving primes while sieving continues, and pull entries from the prover list as the siever finds more bad eggs.

Last fiddled with by LiquidNitrogen on 2011-07-13 at 22:30
LiquidNitrogen is offline   Reply With Quote
Old 2011-07-13, 23:27   #33
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

11·577 Posts
Default

Quote:
Originally Posted by LiquidNitrogen View Post
Maybe not the place for this, since it applies to some of the software programs here and not posts in particular:

But if some of these apps are open source, and you have to run one app to sieve, then feed the output file as an input file to a prime prover app, it seems like the authors of each program should be able to "link up" their programs and make this a little more automatic.
If it were only so easy on these long term projects. Some CPUs/GPUs are better at sieving. Others are better at PRPing. Most users are running multiple cores for their work and many projects have a vast combination of CPUs/GPUs to do the work. They target specific CPUs/GPUs with the work that they are best at doing.

While one might agree that linking srsieve to llr/pfgw would be nice, it is harder than you think. The developers of these software programs do not want to integrate their code to do multiple things, i.e. both sieving and PRPing. The other problem is that it makes one person responsible for optimizing both sides of the problem. Those who write sieves are very good at doing so, but don't know anything about PRPing.

For example, as maintainer of PFGW and phrot, if I were to integrate srsieve or sr2sieve into both, what do I do if someone comes along and writes a much better sieve? Now I would need to grab that code (if is was released as open source), strip out srsieve/sr2sieve, then put their code in its place. It isn't worth the effort.

That begs even more questions. There are multiple sieving programs, each target different problems. You have srsieve/sr2sieve, tpsieve, gcwsieve, fpsieve, and a number of other sieving programs. Although there are some similarities, the core algorithm within each is completely different. This gets even more complex when you consider if you are searching for a prime to attack a Riesel/Sierpinski conjecture or if you want to find a more generic Proth/Riesel prime. Even though the sieving software is the same, different approaches are used to choose the upper limit of n for the sieve. Sieving is not a "one size fits all" problem.

I'm not saying that it can't be done, just that it probably isn't worth the effort due to the number of variables involved. I suspect that most people are content with the current methods used because it gives them more granular control over how they want to search for primes.
rogue is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Strange behaviour ET_ Cloud Computing 15 2017-07-30 11:00
Annoying Members: 1ΒΎ Just Resting: 2 Pining for the fjords: 1, Wrangler: 1 only_human Forum Feedback 23 2016-01-23 05:19
Annoying Ambient Air Anomaly Analyzed and Answered! Xyzzy Miscellaneous Math 3 2015-09-06 06:47
This thread, annoying as it is jasong Soap Box 90 2013-05-22 00:00
strange LLR behaviour Cruelty Software 5 2008-06-12 21:23

All times are UTC. The time now is 13:23.


Sat Jul 17 13:23:23 UTC 2021 up 50 days, 11:10, 1 user, load averages: 1.17, 1.52, 1.64

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.