0

it gives me the following error

File "parallel-1 (2).py, line 274 
  p1 = multiprocessing.Process(target=find_nearest, args=(array[idx],))
IndentationError: unexpected indent

#here the multiprocessing process starts
procs = []
    p1 = multiprocessing.Process(target=find_nearest, args=(array[idx],))
    procs.append(p1)

    p2 = multiprocessing.Process(target=find_nearest, args=(array[idx],))
    procs.append(p2)

    p3 = multiprocessing.Process(target=find_nearest, args=(array[idx],))
    procs.append(p3)

    p1.start()
    time.sleep(5)

    p2.start()
    time.sleep(5)

    p3.start()
    time.sleep(5)

    p1.join()
    p2.join()
    p3.join()

print("Done!")
Andrea Corbellini
  • 17,339
  • 3
  • 53
  • 69
Shahzaib
  • 1
  • 4

1 Answers1

1

That's how you should do it. Avoid indentation in python unless required as in case of loop or conditional constructs.

#here the multiprocessing process starts
procs = []
p1 = multiprocessing.Process(target=find_nearest, args=(array[idx],)) #you had indentation here and all lines below till p3 join statement
procs.append(p1)

p2 = multiprocessing.Process(target=find_nearest, args=(array[idx],))
procs.append(p2)

p3 = multiprocessing.Process(target=find_nearest, args=(array[idx],))
procs.append(p3)

p1.start()
time.sleep(5)

p2.start()
time.sleep(5)

p3.start()
time.sleep(5)

p1.join()
p2.join()
p3.join()

print("Done!")
Achint Sharma
  • 355
  • 4
  • 11