Source code for spinn_front_end_common.utilities.report_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 .bit_field_compressor_report import bitfield_compressor_report
from .bit_field_summary import BitFieldSummary
from .board_chip_report import board_chip_report
from .energy_report import EnergyReport
from .fixed_route_from_machine_report import fixed_route_from_machine_report
from .memory_map_on_host_chip_report import memory_map_on_host_chip_report
from .memory_map_on_host_report import memory_map_on_host_report
from .network_specification import network_specification
from .router_collision_potential_report import (
router_collision_potential_report)
from .routing_table_from_machine_report import (
routing_table_from_machine_report)
from .real_tags_report import tags_from_machine_report
from .write_json_machine import write_json_machine
from .write_json_placements import write_json_placements
from .write_json_routing_tables import write_json_routing_tables
from .drift_report import drift_report
__all__ = [
"bitfield_compressor_report",
"BitFieldSummary",
"board_chip_report",
"EnergyReport",
"fixed_route_from_machine_report",
"network_specification",
"memory_map_on_host_chip_report",
"memory_map_on_host_report",
"router_collision_potential_report",
"routing_table_from_machine_report",
"tags_from_machine_report",
"write_json_machine",
"write_json_placements",
"write_json_routing_tables",
"drift_report"]