Author |
Message |
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13804 ID: 53948 Credit: 345,369,032 RAC: 4,797
                              
|
There's a few small upgrades to the PrimeGrid website:
- New CPU and operating system rankings. Look under the "Other" menu category on the left, or the "Statistics" menu category on top.
- Top? What? To make the pages narrower and thus easier to display when available screen width is minimal, you can now switch the menu panel on the left to the top of the page, where it becomes a drop-down menu. Click on "Toggle Menu" to switch back and forth!
____________
My lucky number is 75898524288+1
|
|
|
|
We have two entries for "Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz [x86 Family 6 Model 94 Stepping 3]". Does not compute. |
|
|
|
I like the toggle feature! |
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13804 ID: 53948 Credit: 345,369,032 RAC: 4,797
                              
|
We have two entries for "Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz [x86 Family 6 Model 94 Stepping 3]". Does not compute.
No we don't.
Two different entries:
Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz [x86 Family 6 Model 94 Stepping 3]
Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz [Family 6 Model 94 Stepping 3]
If the CPUs report different identifications, they count as different CPUs.
____________
My lucky number is 75898524288+1 |
|
|
Honza Volunteer moderator Volunteer tester Project scientist Send message
Joined: 15 Aug 05 Posts: 1931 ID: 352 Credit: 5,704,569,559 RAC: 1,050,473
                                   
|
What BOINC reports, it counts.
And it does not recognize Windows Server 2019...yet.
Anyway, nice to have such overview.
____________
My stats
Badge score: 1*1 + 5*1 + 8*3 + 9*11 + 10*1 + 11*1 + 12*3 = 186 |
|
|
|
Nice feature :-)
but the number of 'Avg. cores/computer' seems to be incorrect, like this:
Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz [Family 6 Model 158 Stepping 9] 138 8.98 5.19 46.58
This CPU has afaik 8 cores with HT on, how we get 8.98 ?? |
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13804 ID: 53948 Credit: 345,369,032 RAC: 4,797
                              
|
Nice feature :-)
but the number of 'Avg. cores/computer' seems to be incorrect, like this:
Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz [Family 6 Model 158 Stepping 9] 138 8.98 5.19 46.58
This CPU has afaik 8 cores with HT on, how we get 8.98 ??
Like all other questions of this nature, the answer is "because that's what the host is reporting".
select count(*),avg(p_ncpus) from host where p_model like 'Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz [Family 6 Model 158 Stepping 9]' and expavg_credit>1;
+----------+--------------+
| count(*) | avg(p_ncpus) |
+----------+--------------+
| 148 | 8.9122 |
+----------+--------------+
The average number of cores is 8.912.
select p_ncpus from host where p_model like 'Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz [Family 6 Model 158 Stepping 9]' and expavg_credit>1 order by p_ncpus desc limit 10;
+---------+
| p_ncpus |
+---------+
| 64 |
| 64 |
| 64 |
| 26 |
| 8 |
| 8 |
| 8 |
| 8 |
| 8 |
| 8 |
+---------+
Some people have BOINC configured to report more than 8 cores. That's an option in cc_config.xml, designed for developers to test BOINC's ability to run on multi-core CPUs before they actually could get their hands on a dual core CPU to test with.
____________
My lucky number is 75898524288+1 |
|
|
|
Are CPU strings with less than 10 computers hidden from the list? /JeppeSN |
|
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 13804 ID: 53948 Credit: 345,369,032 RAC: 4,797
                              
|
Are CPU strings with less than 10 computers hidden from the list? /JeppeSN
Yes.
____________
My lucky number is 75898524288+1 |
|
|