Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Helper library for distributed algorithms programming?

When you code a distributed algorithm, do you use any library to model abstract things like processor, register, message, link, etc.? Is there any library that does that?

I'm thinking about e.g. self-stabilizing algorithms, like self-stabilizing minimum spanning-tree algorithms.


1 Answers

There's a DVM system that can be used for implementing different distributed algorithms. It works on top of MPI.

However it is more for matrix-oriented scientific algorithms where distribution is done in terms of data blocks. I had a brief experience using it - it's much more convenient than direct usage of MPI and allows for much more readable and maintainable code.

like image 70
sharptooth Avatar answered Jun 22 '26 00:06

sharptooth