Source code for pacman.model.resources.abstract_sdram

# 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.

from spinn_utilities.abstract_base import (
    AbstractBase, abstractmethod, abstractproperty)


[docs]class AbstractSDRAM(object, metaclass=AbstractBase): """ Represents an amount of SDRAM used on a chip in the machine. """
[docs] @abstractmethod def get_total_sdram(self, n_timesteps): """ The total SDRAM. :param int n_timesteps: number of timesteps to cost for :return: """
@abstractmethod def __add__(self, other): """ Combines this SDRAM resource with the other one and creates a new one. :param AbstractSDRAM other: another SDRAM resource :return: a New AbstractSDRAM :rtype: AbstractSDRAM """ @abstractmethod def __sub__(self, other): """ Creates a new SDRAM which is this one less the other. :param AbstractSDRAM other: another SDRAM resource :return: a New AbstractSDRAM :rtype: AbstractSDRAM """
[docs] @abstractmethod def sub_from(self, other): """ Creates a new SDRAM which is the other less this one. :param AbstractSDRAM other: another SDRAM resource :return: a New AbstractSDRAM :rtype: AbstractSDRAM """
@abstractproperty def fixed(self): """ The fixed SDRAM cost. """ @abstractproperty def per_timestep(self): """ The extra SDRAM cost for each additional timestep. .. warning:: May well be zero. """ def __eq__(self, other): if not isinstance(other, AbstractSDRAM): return False if other.fixed != self.fixed: return False return other.per_timestep == self.per_timestep
[docs] @abstractmethod def report(self, timesteps, indent="", preamble="", target=None): """ Writes a description of this SDRAM to the target. :param int timesteps: Number of timesteps to do total cost for :param str indent: Text at the start of this and all children :param str preamble: Additional text at the start but not in children :param file target: Where to write the output. ``None`` is standard print """