Source code for pacman.model.partitioner_splitters.splitter_fixed_legacy

# Copyright (c) 2017 The University of Manchester
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from pacman.exceptions import PacmanConfigurationException
from pacman.model.partitioner_interfaces import LegacyPartitionerAPI
from pacman.model.partitioner_splitters.abstract_splitters import (
    AbstractSplitterCommon)
from spinn_utilities.overrides import overrides
from spinn_utilities.log import FormatAdapter
from pacman.utilities.algorithm_utilities.partition_algorithm_utilities import\
    get_multidimensional_slices

logger = FormatAdapter(logging.getLogger(__name__))


[docs]class SplitterFixedLegacy(AbstractSplitterCommon): """ Splitter for old-style vertices. """ __slots__ = ["__slices"] def __init__(self): super().__init__() self.__slices = None
[docs] @overrides(AbstractSplitterCommon.set_governed_app_vertex) def set_governed_app_vertex(self, app_vertex): if not isinstance(app_vertex, LegacyPartitionerAPI): raise PacmanConfigurationException( f"{self} is not a LegacyPartitionerAPI") super().set_governed_app_vertex(app_vertex)
[docs] @overrides(AbstractSplitterCommon.get_out_going_vertices) def get_out_going_vertices(self, partition_id): return list(self._governed_app_vertex.machine_vertices)
[docs] @overrides(AbstractSplitterCommon.get_in_coming_vertices) def get_in_coming_vertices(self, partition_id): return list(self._governed_app_vertex.machine_vertices)
[docs] @overrides(AbstractSplitterCommon.machine_vertices_for_recording) def machine_vertices_for_recording(self, variable_to_record): return list(self._governed_app_vertex.machine_vertices)
[docs] @overrides(AbstractSplitterCommon.get_out_going_slices) def get_out_going_slices(self): return self.__fixed_slices
[docs] @overrides(AbstractSplitterCommon.get_in_coming_slices) def get_in_coming_slices(self): return self.__fixed_slices
@property def __fixed_slices(self): if self.__slices is None: self.__slices = get_multidimensional_slices( self._governed_app_vertex) return self.__slices
[docs] @overrides(AbstractSplitterCommon.create_machine_vertices) def create_machine_vertices(self, chip_counter): app_vertex = self._governed_app_vertex for vertex_slice in self.__fixed_slices: sdram = app_vertex.get_sdram_used_by_atoms(vertex_slice) chip_counter.add_core(sdram) label = f"{app_vertex.label}{vertex_slice}" machine_vertex = app_vertex.create_machine_vertex( vertex_slice, sdram, label) app_vertex.remember_machine_vertex(machine_vertex)
[docs] @overrides(AbstractSplitterCommon.reset_called) def reset_called(self): self.__slices = None