openSUSE / suse-doc-style-checker

Style Checker for SUSE Documentation
Other
2 stars 5 forks source link

Parallelising SDSC #132

Open tomschr opened 7 years ago

tomschr commented 7 years ago

Talked with Stefan yesterday and we agreed that sdsc would benefit from using parallel processing. This issue is just for the record and to have it documented.


Some definitions:


Possible solution would include different modules:


From SO:

Multiprocessing

Pros

Cons

Threading

Pros

Cons


According to masnun, he answers the question of when to use what:

if io_bound:
    if io_very_slow:
        print("Use Asyncio")
    else:
       print("Use Threads")
else:
    print("Multi Processing")