You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clustershell is great!!! thanks for sharing such good project.
I have a calculation task, which only read data from file, calculate, then dump out calculate result into output file.
multi-threading failed to speed up, because some cache miss problems( i am not sure now, but it's complex)
I use clustershell to speed up.
I have three machine, so I assign tasks into three part.
clush -a -b -v "./run run_config.cfg"; // run the c++ binary
clush -rc run_result/ --dest my_dir // collect calculate result back
I have two questions:
my ./run will print some message during the running progress. it use some flush method, but after typing clush, it mess up(not flush my screen, just print lines one by one), can i get same result???
i need to seperaterun_config.cfginto three part manually, is there any better command i can use??
The text was updated successfully, but these errors were encountered:
nickhuangxinyu
changed the title
real-time interaction with working server?
real-time interaction mess up?
Dec 31, 2021
clustershell is great!!! thanks for sharing such good project.
I have a calculation task, which only read data from file, calculate, then dump out calculate result into output file.
multi-threading failed to speed up, because some cache miss problems( i am not sure now, but it's complex)
I use clustershell to speed up.
I have three machine, so I assign tasks into three part.
I have two questions:
./run
will print some message during the running progress. it use some flush method, but after typingclush
, it mess up(not flush my screen, just print lines one by one), can i get same result???run_config.cfg
into three part manually, is there any better command i can use??The text was updated successfully, but these errors were encountered: