Source code for spinn_front_end_common.interface.interface_functions

# Copyright (c) 2015 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
#
#     http://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 .application_finisher import application_finisher
from .application_runner import application_runner
from .chip_iobuf_clearer import chip_io_buf_clearer
from .chip_iobuf_extractor import chip_io_buf_extractor
from .chip_provenance_updater import chip_provenance_updater
from .chip_runtime_updater import chip_runtime_updater
from .compute_energy_used import compute_energy_used
from .database_interface import database_interface
from .system_multicast_routing_generator import (
    system_multicast_routing_generator)
from .dsg_region_reloader import reload_dsg_regions
from .energy_provenance_reporter import energy_provenance_reporter
from .find_application_chips_used import FindApplicationChipsUsed
from .graph_binary_gatherer import graph_binary_gatherer
from .graph_data_specification_writer import (
    graph_data_specification_writer)
from .graph_provenance_gatherer import graph_provenance_gatherer
from .hbp_allocator import hbp_allocator
from .host_bit_field_router_compressor import (
    host_based_bit_field_router_compressor)
from .host_execute_data_specification import (
    execute_application_data_specs, execute_system_data_specs)
from .insert_chip_power_monitors_to_graphs import (
    insert_chip_power_monitors_to_graphs)
from .insert_extra_monitor_vertices_to_graphs import (
    insert_extra_monitor_vertices_to_graphs)
from .split_lpg_vertices import split_lpg_vertices
from .load_executable_images import load_app_images, load_sys_images
from .load_fixed_routes import load_fixed_routes
from .local_tdma_builder import local_tdma_builder
from .locate_executable_start_type import locate_executable_start_type
from .machine_generator import machine_generator
from .create_notification_protocol import create_notification_protocol
from .placements_provenance_gatherer import placements_provenance_gatherer
from .profile_data_gatherer import profile_data_gatherer
from .router_provenance_gatherer import router_provenance_gatherer
from .routing_setup import routing_setup
from .routing_table_loader import routing_table_loader
from .spalloc_allocator import spalloc_allocator
from .tags_loader import tags_loader
from .virtual_machine_generator import virtual_machine_generator
from .read_routing_tables_from_machine import read_routing_tables_from_machine
from .sdram_outgoing_partition_allocator import (
    sdram_outgoing_partition_allocator)
from .command_sender_adder import add_command_senders


__all__ = [
    "application_finisher", "application_runner", "chip_io_buf_clearer",
    "chip_io_buf_extractor", "chip_provenance_updater",
    "chip_runtime_updater", "create_notification_protocol",
    "compute_energy_used", "database_interface",
    "reload_dsg_regions",
    "energy_provenance_reporter", "execute_application_data_specs",
    "execute_system_data_specs", "FindApplicationChipsUsed",
    "graph_binary_gatherer", "graph_data_specification_writer",
    "graph_provenance_gatherer",
    "hbp_allocator", "host_based_bit_field_router_compressor",
    "insert_chip_power_monitors_to_graphs",
    "insert_extra_monitor_vertices_to_graphs",
    "split_lpg_vertices",
    "load_app_images", "load_fixed_routes", "load_sys_images",
    "local_tdma_builder", "locate_executable_start_type",
    "machine_generator", "placements_provenance_gatherer",
    "profile_data_gatherer",
    "read_routing_tables_from_machine", "router_provenance_gatherer",
    "routing_setup",
    "routing_table_loader", "sdram_outgoing_partition_allocator",
    "spalloc_allocator",
    "system_multicast_routing_generator", "tags_loader",
    "virtual_machine_generator", "add_command_senders"
]