![]() |
|
|
#408 | ||
|
Nov 2010
Germany
3×199 Posts |
Quote:
Given your example, and Quote:
Code:
select User, (sum(DCTF) + sum(LLTF)) / (sum(P1) + sum(DC) + sum(LL)) as GPU-to-CPU-Ratio from Assigned group by User; ), meaning zero to infinity. But the question remains: What does that tell us?
|
||
|
|
|
|
|
#409 | |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
160658 Posts |
Quote:
Currently, you have some functions that take (in pseudo code) Code:
var-a = MAX_OF(P1, LL, DC) Code:
var-b = MAX_OF(DCTF, LLTF) Code:
lscale = FUNC(var-a); rscale = FUNC(var-b); Code:
MAX_OF(LLTF,DCTF) == 5380.1917250156 && MAX_OF(P1, DC, LL) == 217.5624618530 Code:
FUNC(5380.1917250156) == 7500 && FUNC(217.5624618530) == 250 && 7500/250 == 30 So in pcode the whole process might be (again pcode with C bias) Code:
for each user do {
lscale = FUNC( MAX_OF(DCTF, LLTF) );
rscale = FUNC( MAX_OF(P1, DC, LL) );
ratio = lscale/rscale;
printf("%d,", ratio); // Each ratio value for each user is separated by a comma
}
Code:
for each user do {
lscale = FUNC( SUM(DCTF, LLTF) );
rscale = FUNC( SUM(P1, DC, LL) );
ratio = lscale/rscale;
printf("%d,", ratio); // Each ratio value for each user is separated by a comma
}
Code:
for each user do {
lscale = ( SUM(DCTF, LLTF) );
rscale = ( SUM(P1, DC, LL) );
ratio = lscale/rscale;
printf("%d,", ratio); // Each ratio value for each user is separated by a comma
}
Of course, you'd need to translate this to SQL/whatever-can-write-CSVs, but hopefully this is a lot more explicit. Edit: After cross posting, Bdot has hit the nail on the head, I think. To answer the question: this would be (roughly) the "normalization factor" that was talked about for so long. Or rather, taking a statistical analysis of the collection of ratios for each user might be interesting. (Note: We should probably exclude those who haven't done one or the other of GPU/CPU work.) Last fiddled with by Dubslow on 2012-01-28 at 20:30 |
|
|
|
|
|
|
#410 | |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
100110001001112 Posts |
Quote:
With a little bit of work in a spreadsheet (or the programming language of your choice) you should be able to answer any question you might have on comparative performance. Is this what you are after? |
|
|
|
|
|
|
#411 |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
11100001101012 Posts |
I'll do it later. Gonna go do some C right now (and my HW shall be posted as soon as I hit this here enter button). |
|
|
|
|
|
#412 | |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
3·29·83 Posts |
Quote:
Code:
[Worker #1 Jan 28 20:51:14] Optimal P-1 factoring of M45143689 using up to 10000MB of memory. [Worker #1 Jan 28 20:51:14] Assuming no factors below 2^76 and 2 primality tests saved if a factor is found. [Worker #1 Jan 28 20:51:14] Optimal bounds are B1=315000, B2=5118750 [Worker #1 Jan 28 20:51:14] Chance of finding a factor is an estimated 2% [Worker #1 Jan 28 20:51:14] Using Core2 type-3 FFT length 2400K, Pass1=640, Pass2=3840 ![]() Edit: WHOA, WHOA, WHOA. This expo has already had a test completed, over a year ago. http://www.mersenne.org/report_expon...&B1=Get+status Why the hell was it assigned to GPU272? How many others are there? chalsall, is there an easy way for you to check? Last fiddled with by Dubslow on 2012-01-29 at 04:43 |
|
|
|
|
|
|
#413 | |
|
Apr 2011
in vivo
3·52 Posts |
Quote:
|
|
|
|
|
|
|
#414 |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
160658 Posts |
All first time LLs are classified as 'Unverified'. Those with error codes are classified as 'Suspect'.
Addendum: Those 'Suspect' tests are immediately re-handed out to LL testers, however, no one has yet been able to figure out why GPU272 has gotten exponents >40M with one test completed, and previously we thought that was only >40M but <45M. This appears to be a counter example to that theory. There is no good hypothesis yet, much less actual answer. Last fiddled with by Dubslow on 2012-01-29 at 06:21 |
|
|
|
|
|
#415 |
|
Apr 2011
in vivo
1138 Posts |
Thanks, I'm afraid I don't know how this part works. Time to read up on it.
|
|
|
|
|
|
#416 | |
|
Oct 2011
12478 Posts |
Quote:
|
|
|
|
|
|
|
#417 |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
976710 Posts |
Yeah... This was a mistake I made a while back trying to get "prefered" assignments. Before I realized my error all of the candidates were already assigned.
The good news is no work is being duplicated, and it was only a few hundred candidates. |
|
|
|
|
|
#418 |
|
"Jerry"
Nov 2011
Vancouver, WA
46316 Posts |
Just noticed that GPU to 72 is now #3 for TF and #4 for P1
![]() #7 overall... Shouldn't take too long to get #2 for TF from Primenet, #1 on the other hand, maybe a few months. |
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Status | Primeinator | Operation Billion Digits | 5 | 2011-12-06 02:35 |
| 62 bit status | 1997rj7 | Lone Mersenne Hunters | 27 | 2008-09-29 13:52 |
| OBD Status | Uncwilly | Operation Billion Digits | 22 | 2005-10-25 14:05 |
| 1-2M LLR status | paulunderwood | 3*2^n-1 Search | 2 | 2005-03-13 17:03 |
| Status of 26.0M - 26.5M | 1997rj7 | Lone Mersenne Hunters | 25 | 2004-06-18 16:46 |