Source code for spinn_front_end_common.interface.interface_functions.hbp_allocator

# Copyright (c) 2016 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
import requests
from spinn_utilities.config_holder import get_config_str
from spinn_utilities.overrides import overrides
from spinn_front_end_common.abstract_models.impl import (
    MachineAllocationController)
from spinn_front_end_common.abstract_models import (
    AbstractMachineAllocationController)
from spinn_front_end_common.data import FecDataView
from pacman.exceptions import PacmanConfigurationException


class _HBPJobController(MachineAllocationController):
    __slots__ = [
        # the URLs to call the HBP system
        "_extend_lease_url",
        "_check_lease_url",
        "_release_machine_url",
        "_set_power_url",
        "_where_is_url",
        "_machine_name",
        "_power_on"
    ]

    _WAIT_TIME_MS = 10000

    def __init__(self, url, machine_name):
        """
        :param str url:
        :param str machine_name:
        """
        self._extend_lease_url = f"{url}/extendLease"
        self._check_lease_url = f"{url}/checkLease"
        self._release_machine_url = url
        self._set_power_url = f"{url}/power"
        self._where_is_url = f"{url}/chipCoordinates"
        self._machine_name = machine_name
        self._power_on = True
        # Lower the level of requests to WARNING to avoid extra messages
        logging.getLogger("requests").setLevel(logging.WARNING)
        super().__init__("HBPJobController")

    @overrides(AbstractMachineAllocationController.extend_allocation)
    def extend_allocation(self, new_total_run_time):
        r = requests.get(self._extend_lease_url, params={
            "runTime": new_total_run_time}, timeout=10)
        r.raise_for_status()

    def _check_lease(self, wait_time):
        r = requests.get(self._check_lease_url, params={
            "waitTime": wait_time}, timeout=10)
        r.raise_for_status()
        return r.json()

    def _release(self, machine_name):
        r = requests.delete(self._release_machine_url, params={
            "machineName": machine_name}, timeout=10)
        r.raise_for_status()

    def _set_power(self, machine_name, power_on):
        r = requests.put(self._set_power_url, params={
            "machineName": machine_name, "on": bool(power_on)}, timeout=10)
        r.raise_for_status()

    def _where_is(self, machine_name, chip_x, chip_y):
        r = requests.get(self._where_is_url, params={
            "machineName": machine_name, "chipX": chip_x,
            "chipY": chip_y}, timeout=10)
        r.raise_for_status()
        return r.json()

    @overrides(AbstractMachineAllocationController.close)
    def close(self):
        super().close()
        self._release(self._machine_name)

    @overrides(MachineAllocationController._teardown)
    def _teardown(self):
        self._release(self._machine_name)

    @property
    def power(self):
        return self._power_on

    def set_power(self, power):
        self._set_power(self._machine_name, power)
        self._power_on = power

    @overrides(AbstractMachineAllocationController.where_is_machine)
    def where_is_machine(self, chip_x, chip_y):
        return self._where_is(self._machine_name, chip_x, chip_y)

    @overrides(MachineAllocationController._wait)
    def _wait(self):
        return self._check_lease(self._WAIT_TIME_MS)["allocated"]


[docs]def hbp_allocator(total_run_time): """ Request a machine from the HBP remote access server that will fit a number of chips. :param int total_run_time: The total run time to request :return: machine name, machine version, BMP details (if any), reset on startup flag, auto-detect BMP, SCAMP connection details, boot port, allocation controller :rtype: tuple(str, int, object, bool, bool, object, object, MachineAllocationController) :raises ~pacman.exceptions.PacmanConfigurationException: If neither `n_chips` or `n_boards` provided """ url = str(get_config_str("Machine", "remote_spinnaker_url")) if url.endswith("/"): url = url[:-1] machine = _get_machine(url, total_run_time) hbp_job_controller = _HBPJobController(url, machine["machineName"]) bmp_details = None if "bmp_details" in machine: bmp_details = machine["bmpDetails"] return ( machine["machineName"], int(machine["version"]), bmp_details, False, False, None, hbp_job_controller)
def _get_machine(url, total_run_time): """ :param str url: :param int total_run_time: :rtype: dict """ if FecDataView.has_n_boards_required(): get_machine_request = requests.get( url, params={"nBoards": FecDataView.get_n_boards_required(), "runTime": total_run_time}, timeout=10) elif FecDataView.has_n_chips_needed(): get_machine_request = requests.get( url, params={"nChips": FecDataView.get_n_chips_needed(), "runTime": total_run_time}, timeout=10) else: raise PacmanConfigurationException( "At least one of n_chips or n_boards must be provided") get_machine_request.raise_for_status() return get_machine_request.json()