Source code for spinn_front_end_common.utilities.scp.clear_iobuf_process

# Copyright (c) 2017-2019 The University of Manchester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from spinn_utilities.progress_bar import ProgressBar
from spinnman.processes import AbstractMultiConnectionProcess
from .scp_clear_iobuf_request import SCPClearIOBUFRequest
from spinn_front_end_common.utilities.constants import SDP_PORTS


[docs]class ClearIOBUFProcess(AbstractMultiConnectionProcess): def __init__(self, connection_selector): super(ClearIOBUFProcess, self).__init__(connection_selector) self._progress = None
[docs] def receive_response(self, _response): if self._progress is not None: self._progress.update()
[docs] def clear_iobuf(self, core_subsets, n_cores): self._progress = ProgressBar( n_cores, "clearing IOBUF from the machine") for core_subset in core_subsets: for processor_id in core_subset.processor_ids: self._send_request( SCPClearIOBUFRequest( core_subset.x, core_subset.y, processor_id, SDP_PORTS.RUNNING_COMMAND_SDP_PORT.value), callback=self.receive_response) self._finish() self._progress.end() self.check_for_error()