awips2/pythonPackages/scientific/Examples/BSP/example1.py
root 06a8b51d6d Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

28 lines
683 B
Python
Executable file

from Scientific.BSP import ParSequence, ParFunction, ParRootFunction
import operator
# The local computation function.
def square(numbers):
return [x*x for x in numbers]
# The global computation function.
global_square = ParFunction(square)
# The local output function
def output(result):
print result
# The global output function - active on processor 0 only.
global_output = ParRootFunction(output)
# A list of numbers distributed over the processors.
items = ParSequence(range(100))
# Computation.
results = global_square(items)
# Collect results on processor 0.
all_results = results.reduce(operator.add, [])
# Output from processor 0.
global_output(all_results)