Posts by MeeeK

1) Questions and Answers : Preferences : always showing graphics (Message 100405)
Posted 14 Jan 2021 by Profile MeeeK
Post:
I don’t know of any built-in tool in Windows that can do that. Again, AutoHotkey or a similar utility would be needed.


found a small workaround.
i made a 2nd bat-file to startup the first one minimized and put this to restart on Crash.
so in case the graphics-app crashes or doesn´t work properly, the "RoC" detects that, closes the app and starts my 2nd bat that tells to start your bat minimized.

i´m feeling somehow clever now. hahahaha

but there is in fact an issue with our first bat.

then a job is finished, it can´t start always a new graphics.
there is a good chance, that i get an error message "the given registrykey or value was not found" ( hopefully it was translated correctly.

after 30 secounds my RoC detects, that graphics is not running and starting a new bat to retry. but it doesnt help.

i modified your first idea with "Rosetta Graphics" /MAX , because there is no regestry-entry in the first bat.

so its working, just want to give a feedback.

And i´m using my new account (germansienceguy) for your bat-file.
with same name, i´m streaming my work on twitch. some promotion for boinc and this project.
so there you can watch your bat in action. ;-)
2) Questions and Answers : Preferences : always showing graphics (Message 100399)
Posted 13 Jan 2021 by Profile MeeeK
Post:
Okay... I'm already sorry for that..

But what if... Just theoretical...

What if i want this window to be always on top?
Is there a line which i could add? :-)
3) Questions and Answers : Preferences : always showing graphics (Message 100389)
Posted 10 Jan 2021 by Profile MeeeK
Post:
opening in fullscreen would ne nice
I was waiting for that being the next feature request… ;-⁠)

The graphics app does have a -⁠-⁠fullscreen option, but as well as making the window full-screen it causes it to act like a screensaver (such that it will exit as soon as you move the mouse or press a key), which will not be very useful when you are trying to use the machine at the same time.

The closest we can (easily) get is to open the window maximised, by changing
		PUSHD "%SLOTDIR%" && START "Rosetta Graphics" "%GFXRELPATH%" & POPD
to
		PUSHD "%SLOTDIR%" && START "Rosetta Graphics" /MAX "%GFXRELPATH%" & POPD

If you want true full-screen, you’ll need a utility that can modify another application’s window and remove its borders. AutoHotkey is probably able to do that, but I’m not sufficiently familiar with it to write a script.



HOLY SHIT!!!!

godfather of bat-files! working nice.
your file was running whole day without any problems. just checked it.

now the maxed version is running. but i guess there shouldn´t be any issue.

you are my personal hero for this week! thanks alot!
4) Questions and Answers : Preferences : always showing graphics (Message 100387)
Posted 10 Jan 2021 by Profile MeeeK
Post:
opening in fullscreen would ne nice
I was waiting for that being the next feature request… ;-⁠)



Hahahahaha

I will try this this night.
5) Questions and Answers : Preferences : always showing graphics (Message 100382)
Posted 10 Jan 2021 by Profile MeeeK
Post:
okay... so far so good.
it seems to work.
WU was finished and after timeout it restarted.

opening in fullscreen would ne nice. i sthere an option to modify the resolution or the size?
you seem to be good in such things. :-)
6) Questions and Answers : Preferences : always showing graphics (Message 100380)
Posted 9 Jan 2021 by Profile MeeeK
Post:
in two hours we will know more about that.

just wondering why "Restart on Crash" didn´t work properly. does the same and got that option to kill tasks when crashed.
RoC also got problems on startup the graphics app.
seems that the graphics-app isn´t made very well. okay.. ist just a feature and not the main reason for boinc. ^^
7) Questions and Answers : Preferences : always showing graphics (Message 100378)
Posted 9 Jan 2021 by Profile MeeeK
Post:
Here’s a more robust version that will read the BOINC data directory from the Registry, pick a random slot directory instead of always looking in 0, and check it’s actually a Rosetta task (and not some other project) that’s running:
@ECHO OFF
SETLOCAL
SET GFXEXE=rosetta_graphics_4.20_windows_x86_64.exe
SET GFXRELPATH=..\..\projects\boinc.bakerlab.org_rosetta\%GFXEXE%
FOR /F "skip=2 tokens=2*" %%V IN ('REG QUERY "HKLM\SOFTWARE\Space Sciences Laboratory, U.C. Berkeley\BOINC Setup" /v "DATADIR"') DO SET BOINCDATADIR="%%W"
SET /A SLOTNUM=%RANDOM% %% %NUMBER_OF_PROCESSORS%
SET SLOTDIR=%BOINCDATADIR%\slots\%SLOTNUM%
:BEGIN
TASKLIST /FO LIST /FI "IMAGENAME eq %GFXEXE%" | FIND "%GFXEXE%"
IF ERRORLEVEL 1 (
	IF EXIST "%SLOTDIR%\rosetta_*.exe" (
		PUSHD "%SLOTDIR%" && START %GFXRELPATH% & POPD
	)
)
TIMEOUT 600
GOTO BEGIN



works well also, great work.

had an aborted WU by server some minutes ago. graphics-window crashed.
at this point, i guess, the bat cant do anything. didn´t restart a new window.

so i still have to wait to finish ne running one right now to see if it´s restarting after a job finished the normal way.

The crashed WU https://boinc.bakerlab.org/rosetta/result.php?resultid=1318958050


Found this by google the "Reason: Access Violation (0xc0000005) at address 0x00007FF68FDA7698 write attempt to address 0x017D7EC9"

https://www.gitmemory.com/issue/BOINC/boinc/3149/492940198
8) Questions and Answers : Preferences : always showing graphics (Message 100373)
Posted 9 Jan 2021 by Profile MeeeK
Post:
It´s working!

Perfect Work!
now i will check if it´s restarting the next task, after this is finished.

i will send feedback.

thank you!
9) Questions and Answers : Preferences : always showing graphics (Message 100371)
Posted 9 Jan 2021 by Profile MeeeK
Post:
i turned off "restart on crash" now for rosetta_graphics. maybe that was the problme.
Yes, it could be that. The message might be coming from the Rosetta application trying to communicate with a graphics application that is not operating as expected. Make sure there are no stuck rosetta_graphics_4.20_windows_x86_64.exe processes running.

A batch file like this might do what you want:
@ECHO OFF
SETLOCAL
SET GFXEXE=rosetta_graphics_4.20_windows_x86_64.exe
SET GFXRELPATH=..\..\projects\boinc.bakerlab.org_rosetta\%GFXEXE%
SET BOINCDATADIR=%ProgramData%\BOINC
SET SLOTDIR=%BOINCDATADIR%\slots\0
:BEGIN
TASKLIST /FO LIST /FI "IMAGENAME eq %GFXEXE%" | FIND "%GFXEXE%"
IF ERRORLEVEL 1 (
	IF EXIST %SLOTDIR%\graphics_app (
		PUSHD %SLOTDIR% && START %GFXRELPATH% & POPD
	)
)
TIMEOUT 600
GOTO BEGIN


seems i need your help again.

tried to put my path in, but doesnt work.

C:Program FilesBOINC ( my boinc folder)
D:BOINC DATAprojectsboinc.bakerlab.org_rosetta (rosetta_graphics.exe)
D:BOINC DATAslots (the slots)

i did something wrong when i changed it in the batch.

would be nice, to get your help[/code]
10) Questions and Answers : Preferences : always showing graphics (Message 100365)
Posted 9 Jan 2021 by Profile MeeeK
Post:
i turned off "restart on crash" now for rosetta_graphics. maybe that was the problme.
Yes, it could be that. The message might be coming from the Rosetta application trying to communicate with a graphics application that is not operating as expected. Make sure there are no stuck rosetta_graphics_4.20_windows_x86_64.exe processes running.

A batch file like this might do what you want:
@ECHO OFF
SETLOCAL
SET GFXEXE=rosetta_graphics_4.20_windows_x86_64.exe
SET GFXRELPATH=..\..\projects\boinc.bakerlab.org_rosetta\%GFXEXE%
SET BOINCDATADIR=%ProgramData%\BOINC
SET SLOTDIR=%BOINCDATADIR%\slots\0
:BEGIN
TASKLIST /FO LIST /FI "IMAGENAME eq %GFXEXE%" | FIND "%GFXEXE%"
IF ERRORLEVEL 1 (
	IF EXIST %SLOTDIR%\graphics_app (
		PUSHD %SLOTDIR% && START %GFXRELPATH% & POPD
	)
)
TIMEOUT 600
GOTO BEGIN



Thanks alot, mate! I will try this and give a feedback.
11) Questions and Answers : Preferences : always showing graphics (Message 100364)
Posted 9 Jan 2021 by Profile MeeeK
Post:
I was absolutely right. I stopped the rosetta_grsphics app and no more problems. So i have to go further in this direction.
Will check driver and co.
12) Questions and Answers : Preferences : always showing graphics (Message 100357)
Posted 9 Jan 2021 by Profile MeeeK
Post:
It’s certainly possible, in that some kind of launcher could communicate with the client to get the information needed to start the graphics for a task, watch for it to finish, then repeat for another task. But I don’t know whether there are any existing applications that do this.

BTW your i9 looks to be returning a lot of errors lately. Is it overclocked? Something might be unstable.
Or a memory issue (or both).
failed to create shared mem segment: rosetta Size: 25001680
appears in all the errors i checked out bar one, being the usual
Reason: Access Violation (0xc0000005) at address 0x000002674044BDA0
memory issue of some sort message.


I'd also check it's CPU temperature.



everthing is stable, no overclocks, temps are fine.
shared memory sounds like an issue with internal graphics. (i dont use dedecated gpu in this rig)

i turned off "restart on crash" now for rosetta_graphics. maybe that was the problme.
will check this later.
maybe because of this issue the prgramm "RoC" didn´t work as it should.

in bios shared memory is set to auto. will change this later, as well as driverupdates.


if you have any other ideas for my initial problem, let me hear.
maybe some commandlines, bat-Files etc...
don´t have an idea yet to solve the question on how to have a windows running with WU-graphics.


greeting

MeeeK
13) Questions and Answers : Preferences : always showing graphics (Message 100352)
Posted 8 Jan 2021 by Profile MeeeK
Post:
Hey mates,

is it somehow possible to watch graphics permanetly? I can open the graphics for a task, but when finished, the window closes.
I don´t want to open the next one manually. Can this programm switch to next one by itself?

I can´t/don`t want to us the screensaver, because of other work / programs / backgroundmusic etc.
My Idea is to see the graphics on one screen (when it´s not needed) and continue work on the other screens.

i tried the programm "restart on crash" and linked it to the "rosetta_graphics_4.20_windows_x86_64.exe" but that didn´t work.

maybe one of you got another idea.


greetings

MeeeK
14) Message boards : Number crunching : Tells us your thoughts on granting credit for large protein, long-running tasks (Message 98311)
Posted 24 Jul 2020 by Profile MeeeK
Post:
Two projects is too much work. Have to run everything twice ( have a look in the server section).
And its expensive.

I think the idea of making BigWUs as kind of priority when computer ia able to handle should be the easiest.

All computers are benchmarked, so it's known what they can handle.

In my case, rosetta knows, that i am able to handle 6 BigWUs per computer.
They send me 6 and when one is finished, they send a new one with priority.

Shouldn't be that complicated, or amni wrong?
15) Message boards : Number crunching : Tells us your thoughts on granting credit for large protein, long-running tasks (Message 98302)
Posted 23 Jul 2020 by Profile MeeeK
Post:
I am running rosetta with 24 threads 24/7/365 (2*Ryzen5 3600). Each Maschine have 32GB of RAM.

My idea for solving the discussion abiut 4GB WUs is to work with the data boinc have about our computers.
12 cores and 32 GB means, i can handle 6 4GB WUs and and 6 1GB WUs. In total 32GB used. We all know, that there is alsways enough headroom in each WU.

In my use case rosetta could send a 4GB, a 1GB, a 4GB, a 1GB... If computationtime stays the same.

Next idea is to make this 4GB kind of priority and send them just in time.

Last thought abiut that:
Add a multiplier to these 4GB WU-points for compensation. Maybe 1.5 or something lime this.
16) Message boards : Number crunching : Problems and Technical Issues with Rosetta@home (Message 96459)
Posted 13 May 2020 by Profile MeeeK
Post:

Each of your examples ran under Linux, If you scroll down to the stderr output of each, you will see that each of them gave signal 11.

Under Linux, signal 11 means segmentation error - in other words, the program tried to execute something that was not marked as executable code.

Error code 139 came from a higher level, which did not know what to do about signal 11.

This means that there's an error somewhere in the Linux version of Rosetta 4.20. You can't fix that. You can only wait for tasks that either use a corrected version of the program, or have the input files adjusted so that they don't try to use the part of the program that triggers the error.



thank you.

any ideas for solving this problem? maybe reinstall ubuntu or something? yesterday i did the update to 20.04. think thats the problem.
but both systems are identical(software). both have same version and i did same update on both.
the first system is runing into this problem, the secound is forking fine.
17) Message boards : Number crunching : Problems and Technical Issues with Rosetta@home (Message 96449)
Posted 13 May 2020 by Profile MeeeK
Post:
i also have lots of failed WUs.

53 just yesterday and today! Lots of them with wasted CPU-Time.
What the hell is wrong again?

All of them have error-code "139 (0x0000008B) Unknown error code" and all of them failed on my System with Ryzen 5 3600X and 32GB @ 3200Mhz (standard) of Ram.
the other system (R5 3600 (withoutX) with 32GB@ 3000Mhz (standard)) is running fine.
Both Systems are not overclocked on CPU and have XMP turned on.
No Gameboost or anything else, Fans at 100%
Temperatures are fine. Both are Watercooled in one loop with two 280mm radiators.

some examples:
https://boinc.bakerlab.org/rosetta/result.php?resultid=1178373908
https://boinc.bakerlab.org/rosetta/result.php?resultid=1178374184
https://boinc.bakerlab.org/rosetta/result.php?resultid=1178329397
https://boinc.bakerlab.org/rosetta/result.php?resultid=1178275970
https://boinc.bakerlab.org/rosetta/result.php?resultid=1178221426
https://boinc.bakerlab.org/rosetta/result.php?resultid=1178221294

somebody any Ideas?
its frustrating to see the wasted time without result and no points.
18) Message boards : Number crunching : Discussion on increasing the default run time (Message 95116)
Posted 22 Apr 2020 by Profile MeeeK
Post:
Thats not possible.
This system have 4 slots the other one just 2.

But the "new additional" ram in this "faulty" system have been in the secound system before. They are both 3200 kits with same timings. Both kits worked fine.

I will check ram settings in bios. But there aren't any issues for sure.
19) Message boards : Number crunching : Discussion on increasing the default run time (Message 95112)
Posted 22 Apr 2020 by Profile MeeeK
Post:
https://boinc.bakerlab.org/rosetta/result.php?resultid=1156119366

I found a lot of these in my list.
All with same error. And only at this client with upgraded RAM two days ago.

The other client dont have this problems.
20) Message boards : Number crunching : Discussion on increasing the default run time (Message 94831)
Posted 19 Apr 2020 by Profile MeeeK
Post:
i think because of that, my clients downloaded too many WUs.

the clients are downstairs in the basement. I dont watch them every day, so i didnt noticed that.


Next 20



©2024 University of Washington
https://www.bakerlab.org