Message boards : Number crunching : aborted tasks
Message board moderation

To post messages, you must log in.

AuthorMessage
dp

Send message
Joined: 18 Oct 20
Posts: 3
Credit: 17,495,800
RAC: 6
Message 5139 - Posted: 6 Mar 2022, 2:40:49 UTC

Lately my tasks go over the time allotted for their completion while other people have no errors.
Is my 10 years old system outdated.\\rwp
ID: 5139 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Profile Keith Myers
Avatar

Send message
Joined: 10 May 20
Posts: 308
Credit: 4,733,484,700
RAC: 1,528
Message 5140 - Posted: 6 Mar 2022, 7:22:23 UTC - in response to Message 5139.  

I do not see any tasks that did not make deadline. The deadline is two weeks. Your host only has a handful of tasks so you are not overcommitting the host and you return work sent in a day well within the deadline.

Your host is not slow at all even though it may be ten years old.

Continue on as you were. I see nothing wrong.

A proud member of the OFA (Old Farts Association)
ID: 5140 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
tito

Send message
Joined: 21 Feb 15
Posts: 14
Credit: 862,506,967
RAC: 129
Message 5141 - Posted: 6 Mar 2022, 7:57:17 UTC

Continue, but change to Linux - times will drop twice (or more).
ID: 5141 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
dp

Send message
Joined: 18 Oct 20
Posts: 3
Credit: 17,495,800
RAC: 6
Message 5142 - Posted: 6 Mar 2022, 9:45:21 UTC - in response to Message 5140.  

Thanks for getting back. I;ll carry on

rwp
ID: 5142 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
dp

Send message
Joined: 18 Oct 20
Posts: 3
Credit: 17,495,800
RAC: 6
Message 5143 - Posted: 6 Mar 2022, 9:45:40 UTC - in response to Message 5141.  

Thanks for getting back. I;ll carry on

rwp
ID: 5143 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
JohnDK

Send message
Joined: 5 Mar 22
Posts: 3
Credit: 36,465,333
RAC: 6
Message 5155 - Posted: 9 Mar 2022, 19:30:44 UTC - in response to Message 5141.  

Continue, but change to Linux - times will drop twice (or more).

My windows times is about 4 times longer than my linux times, how come the windows app is so slow?

When running Milkyway and WCG the runtime in about the same.
ID: 5155 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
JLDun

Send message
Joined: 4 Apr 20
Posts: 8
Credit: 1,070,000
RAC: 0
Message 5250 - Posted: 21 Apr 2022, 17:10:08 UTC - in response to Message 5155.  

How are you using the Win machine

(For example: I have an Android, I keep it to one core for tasks [out of 2Little/2 BIg, four total big.LITTLE], 2 GB memory, but if I play a certain game, [Shop Titans] it does affect at least the Manager, and I imagine it affects run times.)

Also, there are most likely differences between OS's and the BH2 apps....
ID: 5250 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Profile Keith Myers
Avatar

Send message
Joined: 10 May 20
Posts: 308
Credit: 4,733,484,700
RAC: 1,528
Message 5251 - Posted: 22 Apr 2022, 18:41:42 UTC - in response to Message 5155.  

Continue, but change to Linux - times will drop twice (or more).

My windows times is about 4 times longer than my linux times, how come the windows app is so slow?

When running Milkyway and WCG the runtime in about the same.

Has to do with OS support infrastructure. In the case of Universe we noticed when the app sped up was the transition from Ubuntu 18.04 to Ubuntu 20.04. Because I was on the HWE kernels on 18.04, I was running the app on the same kernel version when I transitioned to 20.04 which matched the same kernel version I had been running on 18.04 HWE.

So that being the same, the only other big difference was the transition from libc libraries 2.27 to libc libraries 2.31. We deduced the major speedup was from the improvement in the underlying libc library. Better use of the cpu, better or faster code calls, whatever it was it was the main reason why Linux suddenly became much faster than the same app versions under Windows.

Before that, the tasks pretty much ran about the same speed of maybe 10% faster on Linux compared to the same task on Windows.

So blame Microsoft for not improving their underlying infrastructure compared to Linux. I don't think it has anything to do with the actual application compiles. Just as it now stands, Windows is very much slower than current Linux distros.

A proud member of the OFA (Old Farts Association)
ID: 5251 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Profile Keith Myers
Avatar

Send message
Joined: 10 May 20
Posts: 308
Credit: 4,733,484,700
RAC: 1,528
Message 5252 - Posted: 22 Apr 2022, 21:35:32 UTC

Just to clear up any confusion from my last post. The application build was the same for both Windows and Linux. Even for the previous 0.19 version that was in use back two years ago. Now the same for application 0.20 built this past February. I suspect the build configuration for the app is the same for all OS' Just the target is changed for each build.

And I should have labeled the C library correctly as the glibc library or the C library for Gnu based distros.

The C library is responsible for all the "system calls" that define and are used for basic utilities in an OS.

For some reason, the "system calls" in Windows is much slower than in Linux. More overhead I suspect or some such reason.

A proud member of the OFA (Old Farts Association)
ID: 5252 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Profile Krzysztof Piszczek - wspieram ...
Project administrator
Project developer
Project tester
Avatar

Send message
Joined: 4 Feb 15
Posts: 841
Credit: 144,180,465
RAC: 0
Message 5253 - Posted: 23 Apr 2022, 8:42:41 UTC

In fact, the Windows and Linux app uses exactly same source code.
The only difference is compilation environment (gcc vs VS) and using "isnan" and "isinf" replacement for Microsoft functions (as MS don't cover standard C implementation).
Krzysztof 'krzyszp' Piszczek

Member of Radioactive@Home team
My Patreon profile
Universe@Home on YT
ID: 5253 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Profile Keith Myers
Avatar

Send message
Joined: 10 May 20
Posts: 308
Credit: 4,733,484,700
RAC: 1,528
Message 5254 - Posted: 23 Apr 2022, 20:45:17 UTC - in response to Message 5253.  

Thanks for that clarification, Krzysztof. Always wondered exactly what the differences were between the two OS' as far as the compilation environment.

A proud member of the OFA (Old Farts Association)
ID: 5254 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Synthya Wylder

Send message
Joined: 12 Apr 20
Posts: 1
Credit: 561,767
RAC: 0
Message 5266 - Posted: 1 May 2022, 22:31:51 UTC

Is Universe@Home still active? Or should I delete it & make room for active projects?

I'd post screenshots of this project as listed on the BOINC Project Manager installed on my machine, & of my Tasks on this website, if I knew how.

A picture is worth a thousand words.
ID: 5266 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Grant (SSSF)

Send message
Joined: 23 Apr 22
Posts: 156
Credit: 69,772,000
RAC: 68
Message 5268 - Posted: 2 May 2022, 2:12:54 UTC - in response to Message 5266.  
Last modified: 2 May 2022, 2:21:13 UTC

Is Universe@Home still active?
Yep, plenty of work coming through, although the current batch is almost finished.
Your system hasn't made contact with the project since 26 Nov 2021.

Have you Suspended the Project? Have you set it to No new Tasks?
Grant
Darwin NT
ID: 5268 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Dr Who Fan
Avatar

Send message
Joined: 20 Feb 15
Posts: 32
Credit: 3,502,459
RAC: 1
Message 5274 - Posted: 2 May 2022, 15:30:50 UTC - in response to Message 5266.  

Problem is she is still using OLD VERSION OF BOINC 7.16.5. that has expired Security Certificate issue.

She needs to download and install latest version of BOINC 7.16.20 Windows 64-bit with VirtualBox
https://boinc.berkeley.edu/dl/boinc_7.16.20_windows_x86_64_vbox.exe

ID: 5274 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Grant (SSSF)

Send message
Joined: 23 Apr 22
Posts: 156
Credit: 69,772,000
RAC: 68
Message 5282 - Posted: 3 May 2022, 6:34:02 UTC - in response to Message 5274.  

She needs to download and install latest version of BOINC 7.16.20 Windows 64-bit with VirtualBox
There is no need to install VirtualBox unless you run a project that requires it.
So BOINC without VirtualBox is all that is needed.
Grant
Darwin NT
ID: 5282 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Profile GWGeorge007
Avatar

Send message
Joined: 11 Nov 18
Posts: 18
Credit: 1,039,330,800
RAC: 427
Message 5283 - Posted: 3 May 2022, 15:01:25 UTC - in response to Message 5140.  

I do not see any tasks that did not make deadline. The deadline is two weeks. Your host only has a handful of tasks so you are not overcommitting the host and you return work sent in a day well within the deadline.

Your host is not slow at all even though it may be ten years old.

Continue on as you were. I see nothing wrong.

I am preparing for "the test" of SSDs, otherwise known as the Pentathlon? I also upgraded my offline storage, increasing by 1 day in preparation for the delays, if any.
We'll see if it helps or hurts. I'll be sure to have some Advil ready just in case. ;^)

George

ID: 5283 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote
Dr Who Fan
Avatar

Send message
Joined: 20 Feb 15
Posts: 32
Credit: 3,502,459
RAC: 1
Message 5284 - Posted: 3 May 2022, 16:51:55 UTC - in response to Message 5282.  

There is no need to install VirtualBox unless you run a project that requires it.
So BOINC without VirtualBox is all that is needed.

Correct. I was linking to what the user already has installed/using per the computers existing profile page.
Link to BOINC 7.16.20 WINDOWS no VirtualBox
https://boinc.berkeley.edu/dl/boinc_7.16.20_windows_x86_64.exe

ID: 5284 · Rating: 0 · rate: Rate + / Rate - Report as offensive     Reply Quote

Message boards : Number crunching : aborted tasks




Copyright © 2024 Copernicus Astronomical Centre of the Polish Academy of Sciences
Project server and website managed by Krzysztof 'krzyszp' Piszczek