Multiprocessing with nested loops and some numpy function callsCalling a function of a module by using its name (a string)What's the best way to break from nested (for) loops?Is there a NumPy function to return the first index of something in an array?Breaking out of nested loopsDynamic processes in PythonHow do I break out of nested loops in Java?Calling remove in foreach loop in Javapython multiprocessing vs threading for cpu bound work on windows and linuxUse numpy array in shared memory for multiprocessingWhat is the difference between flatten and ravel functions in numpy?

Output visual diagram of picture

Why didn’t Eve recognize the little cockroach as a living organism?

Derivative of an interpolated function

Capacitor electron flow

Do native speakers use "ultima" and "proxima" frequently in spoken English?

Why doesn't Gödel's incompleteness theorem apply to false statements?

Why do Radio Buttons not fill the entire outer circle?

Did I make a mistake by ccing email to boss to others?

Why is indicated airspeed rather than ground speed used during the takeoff roll?

Showing mass murder in a kid's book

Can a Knock spell open the door to Mordenkainen's Magnificent Mansion?

Center page as a whole without centering each element individually

Turning a hard to access nut?

Non-Borel set in arbitrary metric space

Would a primitive species be able to learn English from reading books alone?

Asserting that Atheism and Theism are both faith based positions

How to split IPA spelling into syllables

How do you justify more code being written by following clean code practices?

Mortal danger in mid-grade literature

What is the tangent at a sharp point on a curve?

Should I be concerned about student access to a test bank?

Trouble reading roman numeral notation with flats

What is the purpose of using a decision tree?

What should be the ideal length of sentences in a blog post for ease of reading?



Multiprocessing with nested loops and some numpy function calls


Calling a function of a module by using its name (a string)What's the best way to break from nested (for) loops?Is there a NumPy function to return the first index of something in an array?Breaking out of nested loopsDynamic processes in PythonHow do I break out of nested loops in Java?Calling remove in foreach loop in Javapython multiprocessing vs threading for cpu bound work on windows and linuxUse numpy array in shared memory for multiprocessingWhat is the difference between flatten and ravel functions in numpy?













1















I have read some coding examples about multiprocessing and am stil quite confused about it. Here is my contrived example:



import numpy as np

def data_processing(x,y,z): return np.array([x,y])*(z**0.5)

def foo(n1,n2):

final_result =

for i in range(n1):
result = np.zeros([n2,n2])

for j1 in range(n2):
for j2 in range(j1):
temp= data_processing(j1,j2,i)
result[j1,j2] = np.prod(temp)

final_result[str(i)] = result

return final_result

if __name__ == '__main__':
X = foo(9,9)


If I want to run this piece of code while utilizing all of the cpu cores, what should I change? Thank you in advance










share|improve this question


























    1















    I have read some coding examples about multiprocessing and am stil quite confused about it. Here is my contrived example:



    import numpy as np

    def data_processing(x,y,z): return np.array([x,y])*(z**0.5)

    def foo(n1,n2):

    final_result =

    for i in range(n1):
    result = np.zeros([n2,n2])

    for j1 in range(n2):
    for j2 in range(j1):
    temp= data_processing(j1,j2,i)
    result[j1,j2] = np.prod(temp)

    final_result[str(i)] = result

    return final_result

    if __name__ == '__main__':
    X = foo(9,9)


    If I want to run this piece of code while utilizing all of the cpu cores, what should I change? Thank you in advance










    share|improve this question
























      1












      1








      1








      I have read some coding examples about multiprocessing and am stil quite confused about it. Here is my contrived example:



      import numpy as np

      def data_processing(x,y,z): return np.array([x,y])*(z**0.5)

      def foo(n1,n2):

      final_result =

      for i in range(n1):
      result = np.zeros([n2,n2])

      for j1 in range(n2):
      for j2 in range(j1):
      temp= data_processing(j1,j2,i)
      result[j1,j2] = np.prod(temp)

      final_result[str(i)] = result

      return final_result

      if __name__ == '__main__':
      X = foo(9,9)


      If I want to run this piece of code while utilizing all of the cpu cores, what should I change? Thank you in advance










      share|improve this question














      I have read some coding examples about multiprocessing and am stil quite confused about it. Here is my contrived example:



      import numpy as np

      def data_processing(x,y,z): return np.array([x,y])*(z**0.5)

      def foo(n1,n2):

      final_result =

      for i in range(n1):
      result = np.zeros([n2,n2])

      for j1 in range(n2):
      for j2 in range(j1):
      temp= data_processing(j1,j2,i)
      result[j1,j2] = np.prod(temp)

      final_result[str(i)] = result

      return final_result

      if __name__ == '__main__':
      X = foo(9,9)


      If I want to run this piece of code while utilizing all of the cpu cores, what should I change? Thank you in advance







      python loops numpy multiprocessing nested-loops






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 7 at 20:33









      mathguymathguy

      1197




      1197






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Maby this can help.



          import multiprocessing
          import numpy as np
          import time
          import multiprocessing


          def data_processing(x, y, z): return np.array([x, y]) * (z ** 0.5)


          def foo(n1, n2, id=0, return_dict=[None]):
          final_result =

          for i in range(n1):
          result = np.zeros([n2, n2])

          for j1 in range(n2):
          for j2 in range(j1):
          temp = data_processing(j1, j2, i)
          result[j1, j2] = np.prod(temp)

          final_result[str(i)] = result

          return_dict[id] = final_result



          stamp = time.time()
          def pint(num):
          print(f'*Test [num] - seconds: time.time() - stamp')

          for i in range(10):
          foo(90, 90)
          pint(0)

          stamp = time.time()

          manager = multiprocessing.Manager()
          return_dict = manager.dict()
          processes = []

          for i in range(10):
          p = multiprocessing.Process(target=foo, args=(90, 90, i, return_dict))
          processes.append(p)
          p.start()

          for p in processes:
          p.join()
          x0, x1, x2, x3, x4, x5, x6, x7, x8, x9 = return_dict.values()
          pint(1)


          My output is:



          *Test [0] - seconds: 26.120166301727295
          *Test [1] - seconds: 8.343111753463745

          Process finished with exit code 0





          share|improve this answer

























          • appreciate any input to this. I am wondering can the same logic apply to my version of foo function? I am asking this because the part I want to run multiprocessing on also contains some numpy functions call.

            – mathguy
            Mar 7 at 21:20











          • I edited my post. Did I understand right?? But it only makes sence with big operations so i have done it with really high values. Hope I could help (-;

            – apatrck00
            Mar 8 at 18:31










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55052363%2fmultiprocessing-with-nested-loops-and-some-numpy-function-calls%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Maby this can help.



          import multiprocessing
          import numpy as np
          import time
          import multiprocessing


          def data_processing(x, y, z): return np.array([x, y]) * (z ** 0.5)


          def foo(n1, n2, id=0, return_dict=[None]):
          final_result =

          for i in range(n1):
          result = np.zeros([n2, n2])

          for j1 in range(n2):
          for j2 in range(j1):
          temp = data_processing(j1, j2, i)
          result[j1, j2] = np.prod(temp)

          final_result[str(i)] = result

          return_dict[id] = final_result



          stamp = time.time()
          def pint(num):
          print(f'*Test [num] - seconds: time.time() - stamp')

          for i in range(10):
          foo(90, 90)
          pint(0)

          stamp = time.time()

          manager = multiprocessing.Manager()
          return_dict = manager.dict()
          processes = []

          for i in range(10):
          p = multiprocessing.Process(target=foo, args=(90, 90, i, return_dict))
          processes.append(p)
          p.start()

          for p in processes:
          p.join()
          x0, x1, x2, x3, x4, x5, x6, x7, x8, x9 = return_dict.values()
          pint(1)


          My output is:



          *Test [0] - seconds: 26.120166301727295
          *Test [1] - seconds: 8.343111753463745

          Process finished with exit code 0





          share|improve this answer

























          • appreciate any input to this. I am wondering can the same logic apply to my version of foo function? I am asking this because the part I want to run multiprocessing on also contains some numpy functions call.

            – mathguy
            Mar 7 at 21:20











          • I edited my post. Did I understand right?? But it only makes sence with big operations so i have done it with really high values. Hope I could help (-;

            – apatrck00
            Mar 8 at 18:31















          1














          Maby this can help.



          import multiprocessing
          import numpy as np
          import time
          import multiprocessing


          def data_processing(x, y, z): return np.array([x, y]) * (z ** 0.5)


          def foo(n1, n2, id=0, return_dict=[None]):
          final_result =

          for i in range(n1):
          result = np.zeros([n2, n2])

          for j1 in range(n2):
          for j2 in range(j1):
          temp = data_processing(j1, j2, i)
          result[j1, j2] = np.prod(temp)

          final_result[str(i)] = result

          return_dict[id] = final_result



          stamp = time.time()
          def pint(num):
          print(f'*Test [num] - seconds: time.time() - stamp')

          for i in range(10):
          foo(90, 90)
          pint(0)

          stamp = time.time()

          manager = multiprocessing.Manager()
          return_dict = manager.dict()
          processes = []

          for i in range(10):
          p = multiprocessing.Process(target=foo, args=(90, 90, i, return_dict))
          processes.append(p)
          p.start()

          for p in processes:
          p.join()
          x0, x1, x2, x3, x4, x5, x6, x7, x8, x9 = return_dict.values()
          pint(1)


          My output is:



          *Test [0] - seconds: 26.120166301727295
          *Test [1] - seconds: 8.343111753463745

          Process finished with exit code 0





          share|improve this answer

























          • appreciate any input to this. I am wondering can the same logic apply to my version of foo function? I am asking this because the part I want to run multiprocessing on also contains some numpy functions call.

            – mathguy
            Mar 7 at 21:20











          • I edited my post. Did I understand right?? But it only makes sence with big operations so i have done it with really high values. Hope I could help (-;

            – apatrck00
            Mar 8 at 18:31













          1












          1








          1







          Maby this can help.



          import multiprocessing
          import numpy as np
          import time
          import multiprocessing


          def data_processing(x, y, z): return np.array([x, y]) * (z ** 0.5)


          def foo(n1, n2, id=0, return_dict=[None]):
          final_result =

          for i in range(n1):
          result = np.zeros([n2, n2])

          for j1 in range(n2):
          for j2 in range(j1):
          temp = data_processing(j1, j2, i)
          result[j1, j2] = np.prod(temp)

          final_result[str(i)] = result

          return_dict[id] = final_result



          stamp = time.time()
          def pint(num):
          print(f'*Test [num] - seconds: time.time() - stamp')

          for i in range(10):
          foo(90, 90)
          pint(0)

          stamp = time.time()

          manager = multiprocessing.Manager()
          return_dict = manager.dict()
          processes = []

          for i in range(10):
          p = multiprocessing.Process(target=foo, args=(90, 90, i, return_dict))
          processes.append(p)
          p.start()

          for p in processes:
          p.join()
          x0, x1, x2, x3, x4, x5, x6, x7, x8, x9 = return_dict.values()
          pint(1)


          My output is:



          *Test [0] - seconds: 26.120166301727295
          *Test [1] - seconds: 8.343111753463745

          Process finished with exit code 0





          share|improve this answer















          Maby this can help.



          import multiprocessing
          import numpy as np
          import time
          import multiprocessing


          def data_processing(x, y, z): return np.array([x, y]) * (z ** 0.5)


          def foo(n1, n2, id=0, return_dict=[None]):
          final_result =

          for i in range(n1):
          result = np.zeros([n2, n2])

          for j1 in range(n2):
          for j2 in range(j1):
          temp = data_processing(j1, j2, i)
          result[j1, j2] = np.prod(temp)

          final_result[str(i)] = result

          return_dict[id] = final_result



          stamp = time.time()
          def pint(num):
          print(f'*Test [num] - seconds: time.time() - stamp')

          for i in range(10):
          foo(90, 90)
          pint(0)

          stamp = time.time()

          manager = multiprocessing.Manager()
          return_dict = manager.dict()
          processes = []

          for i in range(10):
          p = multiprocessing.Process(target=foo, args=(90, 90, i, return_dict))
          processes.append(p)
          p.start()

          for p in processes:
          p.join()
          x0, x1, x2, x3, x4, x5, x6, x7, x8, x9 = return_dict.values()
          pint(1)


          My output is:



          *Test [0] - seconds: 26.120166301727295
          *Test [1] - seconds: 8.343111753463745

          Process finished with exit code 0






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 8 at 18:30

























          answered Mar 7 at 20:55









          apatrck00apatrck00

          113




          113












          • appreciate any input to this. I am wondering can the same logic apply to my version of foo function? I am asking this because the part I want to run multiprocessing on also contains some numpy functions call.

            – mathguy
            Mar 7 at 21:20











          • I edited my post. Did I understand right?? But it only makes sence with big operations so i have done it with really high values. Hope I could help (-;

            – apatrck00
            Mar 8 at 18:31

















          • appreciate any input to this. I am wondering can the same logic apply to my version of foo function? I am asking this because the part I want to run multiprocessing on also contains some numpy functions call.

            – mathguy
            Mar 7 at 21:20











          • I edited my post. Did I understand right?? But it only makes sence with big operations so i have done it with really high values. Hope I could help (-;

            – apatrck00
            Mar 8 at 18:31
















          appreciate any input to this. I am wondering can the same logic apply to my version of foo function? I am asking this because the part I want to run multiprocessing on also contains some numpy functions call.

          – mathguy
          Mar 7 at 21:20





          appreciate any input to this. I am wondering can the same logic apply to my version of foo function? I am asking this because the part I want to run multiprocessing on also contains some numpy functions call.

          – mathguy
          Mar 7 at 21:20













          I edited my post. Did I understand right?? But it only makes sence with big operations so i have done it with really high values. Hope I could help (-;

          – apatrck00
          Mar 8 at 18:31





          I edited my post. Did I understand right?? But it only makes sence with big operations so i have done it with really high values. Hope I could help (-;

          – apatrck00
          Mar 8 at 18:31



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55052363%2fmultiprocessing-with-nested-loops-and-some-numpy-function-calls%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived