mindspore/tests/summary_utils.py

66 lines
2.0 KiB
Python
Raw Normal View History

2020-04-12 16:32:36 +08:00
# Copyright 2020 Huawei Technologies Co., Ltd
#
# 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.
# ============================================================================
"""Summary reader."""
2020-05-18 16:42:35 +08:00
import struct
2020-04-12 16:32:36 +08:00
2020-05-29 20:23:05 +08:00
import mindspore.train.summary_pb2 as summary_pb2
2020-04-12 16:32:36 +08:00
_HEADER_SIZE = 8
_HEADER_CRC_SIZE = 4
_DATA_CRC_SIZE = 4
2020-05-31 18:01:02 +08:00
class _EndOfSummaryFileException(Exception):
"""Indicates the summary file is exhausted."""
2020-04-12 16:32:36 +08:00
class SummaryReader:
2020-05-31 18:01:02 +08:00
"""
Basic summary read function.
Args:
canonical_file_path (str): The canonical summary file path.
ignore_version_event (bool): Whether ignore the version event at the beginning of summary file.
"""
def __init__(self, canonical_file_path, ignore_version_event=True):
self._file_path = canonical_file_path
self._ignore_version_event = ignore_version_event
2020-04-12 16:32:36 +08:00
2020-05-31 18:01:02 +08:00
def __enter__(self):
self._file_handler = open(self._file_path, "rb")
if self._ignore_version_event:
self.read_event()
return self
def __exit__(self, *unused_args):
self._file_handler.close()
return False
2020-04-12 16:32:36 +08:00
def read_event(self):
"""Read next event."""
file_handler = self._file_handler
header = file_handler.read(_HEADER_SIZE)
data_len = struct.unpack('Q', header)[0]
2020-05-31 18:01:02 +08:00
# Ignore crc check.
2020-04-12 16:32:36 +08:00
file_handler.read(_HEADER_CRC_SIZE)
2020-05-31 18:01:02 +08:00
2020-04-12 16:32:36 +08:00
event_str = file_handler.read(data_len)
2020-05-31 18:01:02 +08:00
# Ignore crc check.
2020-04-12 16:32:36 +08:00
file_handler.read(_DATA_CRC_SIZE)
summary_event = summary_pb2.Event.FromString(event_str)
2020-05-31 18:01:02 +08:00
2020-04-12 16:32:36 +08:00
return summary_event