Source code for watertap.tools.parallel.single_process_parallel_manager

#################################################################################
# WaterTAP Copyright (c) 2020-2024, The Regents of the University of California,
# through Lawrence Berkeley National Laboratory, Oak Ridge National Laboratory,
# National Renewable Energy Laboratory, and National Energy Technology
# Laboratory (subject to receipt of any required approvals from the U.S. Dept.
# of Energy). All rights reserved.
#
# Please see the files COPYRIGHT.md and LICENSE.md for full copyright and license
# information, respectively. These files are also available online at the URL
# "https://github.com/watertap-org/watertap/"
#################################################################################

from watertap.tools.parallel.parallel_manager import build_and_execute, ParallelManager
from watertap.tools.parallel.results import LocalResults


[docs]class SingleProcessParallelManager(ParallelManager):
[docs] def __init__(self, **kwargs): self.results = None
[docs] def is_root_process(self): return True
[docs] def get_rank(self): return self.ROOT_PROCESS_RANK
[docs] def number_of_worker_processes(self): return 1
[docs] def sync_with_peers(self): pass
[docs] def sync_array_with_peers(self, data): pass
[docs] def sync_pyobject_with_peers(self, obj): return obj
[docs] def combine_data_with_peers(self, data): return [data]
[docs] def gather_arrays_to_root(self, sendbuf, recvbuf_spec): receive_arr = recvbuf_spec[0] receive_sizes = recvbuf_spec[1] assert len(receive_arr) == sum( receive_sizes ), "Gathering arrays to root cannot be done with mismatched sizes" receive_arr[:] = sendbuf[:]
[docs] def sum_values_and_sync(self, sendbuf, recvbuf): recvbuf[0][:] = sendbuf[0][:]
[docs] def scatter( self, do_build, do_build_kwargs, do_execute, all_parameters, ): self.results = LocalResults( self.ROOT_PROCESS_RANK, all_parameters, build_and_execute(do_build, do_build_kwargs, do_execute, all_parameters), )
[docs] def gather(self): return [self.results]
[docs] def results_from_local_tree(self, results): return results