Source code for spinnman.messages.scp.impl.scp_router_alloc_request

from spinnman.messages.scp.abstract_messages.abstract_scp_request import AbstractSCPRequest
from spinnman.messages.sdp.sdp_header import SDPHeader
from spinnman.messages.sdp.sdp_flag import SDPFlag
from spinnman.messages.scp.scp_request_header import SCPRequestHeader
from spinnman.messages.scp.scp_command import SCPCommand
from spinnman.messages.scp.impl.scp_router_alloc_response import SCPRouterAllocResponse
from spinnman.exceptions import SpinnmanInvalidParameterException


[docs]class SCPRouterAllocRequest(AbstractSCPRequest): """ An SCP Request to allocate space for routing entries """ def __init__(self, x, y, app_id, n_entries): """ :param x: The x-coordinate of the chip to allocate on, between 0 and\ 255 :type x: int :param y: The y-coordinate of the chip to allocate on, between 0 and\ 255 :type y: int :param app_id: The id of the application, between 0 and 255 :type app_id: int :param n_entries: The number of entries to allocate :type n_entries: int :raise spinnman.exceptions.SpinnmanInvalidParameterException: If\ app_id is out of range, or n_entries is 0 or less """ if app_id < 0 or app_id > 255: raise SpinnmanInvalidParameterException( "app_id", str(app_id), "Must be between 0 and 255") if n_entries <= 0: raise SpinnmanInvalidParameterException( "n_entries", str(n_entries), "Must be greater than 0") super(SCPRouterAllocRequest, self).__init__( SDPHeader( flags=SDPFlag.REPLY_EXPECTED, destination_port=0, destination_cpu=0, destination_chip_x=x, destination_chip_y=y), SCPRequestHeader(command=SCPCommand.CMD_ALLOC), argument_1=(app_id << 8) | 3, argument_2=n_entries)
[docs] def get_scp_response(self): return SCPRouterAllocResponse()