Can Mathematica Utilize Multi-threading to Enhance Performance?

  • Context: Mathematica 
  • Thread starter Thread starter sukharef
  • Start date Start date
  • Tags Tags
    Mathematica Thread
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 7K views
sukharef
Messages
54
Reaction score
0
Hello?
Has somebody used or has experience about using Mathematica's code with multi threading for increasing it's capacity and efficiency or smth like this?
My personal computer hasn't enough capacity to calculate all i need so now I'm looking for using Math on cluster.
Thanks!
 
Physics news on Phys.org
I use inbuilt parallelization in Mathematica on multi core systems, do you have a specific question? What I do is turn the code i want to run into a single block that can be run in one go and turn it into a Mathematica package with the only cell being an initialization cell. Then you can ssh into the cluster you have that file on and run the Math Kernel, load the package and it will run.
 
FunkyDwarf said:
I use inbuilt parallelization in Mathematica on multi core systems, do you have a specific question? What I do is turn the code i want to run into a single block that can be run in one go and turn it into a Mathematica package with the only cell being an initialization cell. Then you can ssh into the cluster you have that file on and run the Math Kernel, load the package and it will run.

My question is how to orgainize this process actually. Maybe there is a manual for it.