0

I'm performing python computation and today I whant to use ressources from different computer (cpu, ram, and maybe gpu) from one computer.

After some research it seems it is called "grid computing" or "grid desktop". Are there linux distribution or reference free software to do that with python programs? I heard about "DIET" grid software, but I don't know if this is what I'm looking for.

Thanks for help

lelorrain7
  • 315
  • 5
  • 13

1 Answers1

0

Maybe you are looking for parallel computing in Python (potentially many machines, many cores)?

Or maybe multi-processing in Python (single machine, all cores)?

Grid computing is a term you hear less and less nowadays but the above questions and their anwers will give you a clue to the direction of search.

sophros
  • 14,672
  • 11
  • 46
  • 75