Source code for spinn_front_end_common.interface.provenance.timer_category

# Copyright (c) 2022 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 enum import auto, Enum


[docs]class TimerCategory(Enum): """ Different Categories a FecTimer can be in """ # Category Constants WAITING = (auto(), "Waiting") SETTING_UP = (auto(), "In Setup") RUN_OTHER = (auto(), "In run other") GET_MACHINE = (auto(), "Turning on Machine") LOADING = (auto(), "Loading Stage") DATA_GENERATION = (auto(), "data_generation") MAPPING = (auto(), "Mapping Stage") RUN_LOOP = (auto(), "Running Stage") RESETTING = (auto(), "Resetting") SHUTTING_DOWN = (auto(), "Shutting down") def __new__(cls, value, category_name): # pylint: disable=protected-access obj = object.__new__(cls) obj._value_ = value obj._category_name = category_name return obj @property def category_name(self): return self._category_name