Group Abstract Group Abstract

Message Boards Message Boards

Parallel Computing and Object Oriented Programming - Part 1

Posted 5 years ago
7 Replies
Posted 4 years ago

Thanks for your help! It is solved, and the speed truly improved! I think the OOP would be a great way to support my research.

POSTED BY: Tony Coliderse

Dear Tony

Please change OOP to,

case[nam_] := 
 Module[{begin, end}, 
  nam[set[{be_, en_}]] := {begin, end} = {be, en};
  sol = NDSolve[{y'[x] == Sin[x^2 + 2 x]/(2 Cos[x/2 + 3 x] + 3), 
     y[0] == 0}, y, {x, 0, 500}, MaxSteps -> 10^6, AccuracyGoal -> 30];
  go[] := Table[{x, y[x] /. sol[[1]]}, {x, begin, end, 0.01}]
  ]

object = {Association["name" -> Unique[k], "range" -> {0, 125}, 
    "kernel" -> kernelList[[1]]], 
   Association["name" -> Unique[k], "range" -> {125, 250}, 
    "kernel" -> kernelList[[2]]], 
   Association["name" -> Unique[k], "range" -> {250, 375}, 
    "kernel" -> kernelList[[3]]], 
   Association["name" -> Unique[k], "range" -> {375, 500}, 
    "kernel" -> kernelList[[4]]]};

Map[ParallelEvaluate[case[#name], #kernel] &, object];
Map[ParallelEvaluate[#name[set[#range]], #kernel] &, object];

Then, execute as,

enter codin1 = SessionTime[]
para1 = ParallelEvaluate[go[]];
SessionTime[] - in1e here

ListPlot[para1]

In the Mathematica parallel calculation style, it should be avoided much communication between controller and nodes. From this point of view, NDSolve should be evaluated on each node.

Posted 4 years ago

Dear Hirokazu Kobayashi,

After studying the post about the OOP method, I tried use it to solve differential equation, but I met another problem. When I solved a differential equation numerically, I want to export some data about the solution, and I found use the OOP would be slow more than directly use Table[] function, I don't know if I did wrong, the porceding is:

1:

In[1]:= sol = 
 NDSolve[{y'[x] == Sin[x^2 + 2 x]/(2 Cos[x/2 + 3 x] + 3), y[0] == 0}, 
  y, {x, 0, 500}, MaxSteps -> 10^6, AccuracyGoal -> 30]

Out[1]= {{y -> InterpolatingFunction[{{0., 500.}}, <>]}}

2:use the OOP

LaunchKernels[];

kernelList = ParallelEvaluate[$KernelID];

case[nam_] := Module[{begin, end},
  nam[set[{be_, en_}]] := {begin, end} = {be, en};
  go[] := Table[{x, y[x] /. sol[[1]]}, {x, begin, end, 0.01}];
  ]

object = {
   Association["name" -> Unique[k], "range" -> {0, 125}, 
    "kernel" -> kernelList[[1]]],
   Association["name" -> Unique[k], "range" -> {125, 250}, 
    "kernel" -> kernelList[[2]]],
   Association["name" -> Unique[k], "range" -> {250, 375}, 
    "kernel" -> kernelList[[3]]],
   Association["name" -> Unique[k], "range" -> {375, 500}, 
    "kernel" -> kernelList[[4]]]
   };

Map[ParallelEvaluate[case[#name], #kernel] &, object];
Map[ParallelEvaluate[#name[set[#range]], #kernel] &, object];

3: comparing the time

In[8]:= in1 = SessionTime[]
para1 = ParallelEvaluate[go[]];
SessionTime[] - in1

Out[8]= 406.966900

Out[10]= 50.845088

In[11]:= in2 = SessionTime[]
para2 = Table[{x, y[x] /. sol[[1]]}, {x, 0, 500, 0.01}];
SessionTime[] - in2

Out[11]= 457.863461

Out[13]= 0.108939

I don't know if I used the method incorrectly? If the OOP can solve the problem that will be a great improvment for my work! Thanks!

POSTED BY: Tony Coliderse
Posted 4 years ago

Thanks for your reply! I"ll carefully read it. By the way I wonder if there is some detailed intruduction about OOP method?

POSTED BY: Tony Coliderse

Hi Tony ! Thanks your reply. NDSolve can be used in the OOP as in my report, "Chaos bifurcation of double pendulums calculation with OOP":

https://community.wolfram.com/groups/-/m/t/1109273

In this example, OOP will run on a single core, however, you can run the program on independent core individually. If you can use standard Mathematica, 8 core Mathematica OOPed program will run simultaneously. Regards.

Posted 4 years ago

Dear Hirokazu Kobayashi: I'm a Dr. student in theoritical physics, and recently i'm doing some numerical calculation so I'm trying to use parallel evaluate in Mathematica. Your instance is quite good, but I'm still confusing about it.(I'm green hand abou it.) Could the OOP method be used in NDSolve function? Hope you can give me a favor and show some instance. Thanks a lot!

POSTED BY: Tony Coliderse

enter image description here -- you have earned Featured Contributor Badge enter image description here

Your exceptional post has been selected for our editorial column Staff Picks http://wolfr.am/StaffPicks and Your Profile is now distinguished by a Featured Contributor Badge and is displayed on the Featured Contributor Board. Thank you, keep it coming, and consider contributing to the The Notebook Archive!

POSTED BY: EDITORIAL BOARD
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard