"""
@generated by mypy-protobuf.  Do not edit manually!
isort:skip_file
"""
import builtins
import collections.abc
import sys

import google.protobuf.descriptor
import google.protobuf.internal.containers
import google.protobuf.message
import tensorflow.core.framework.allocation_description_pb2
import tensorflow.core.framework.tensor_description_pb2

if sys.version_info >= (3, 8):
    import typing as typing_extensions
else:
    import typing_extensions

DESCRIPTOR: google.protobuf.descriptor.FileDescriptor

@typing_extensions.final
class AllocationRecord(google.protobuf.message.Message):
    """An allocation/de-allocation operation performed by the allocator."""

    DESCRIPTOR: google.protobuf.descriptor.Descriptor

    ALLOC_MICROS_FIELD_NUMBER: builtins.int
    ALLOC_BYTES_FIELD_NUMBER: builtins.int
    alloc_micros: builtins.int
    """The timestamp of the operation."""
    alloc_bytes: builtins.int
    """Number of bytes allocated, or de-allocated if negative."""
    def __init__(
        self,
        *,
        alloc_micros: builtins.int | None = ...,
        alloc_bytes: builtins.int | None = ...,
    ) -> None: ...
    def ClearField(self, field_name: typing_extensions.Literal["alloc_bytes", b"alloc_bytes", "alloc_micros", b"alloc_micros"]) -> None: ...

global___AllocationRecord = AllocationRecord

@typing_extensions.final
class AllocatorMemoryUsed(google.protobuf.message.Message):
    DESCRIPTOR: google.protobuf.descriptor.Descriptor

    ALLOCATOR_NAME_FIELD_NUMBER: builtins.int
    TOTAL_BYTES_FIELD_NUMBER: builtins.int
    PEAK_BYTES_FIELD_NUMBER: builtins.int
    LIVE_BYTES_FIELD_NUMBER: builtins.int
    ALLOCATION_RECORDS_FIELD_NUMBER: builtins.int
    ALLOCATOR_BYTES_IN_USE_FIELD_NUMBER: builtins.int
    allocator_name: builtins.str
    total_bytes: builtins.int
    """These are per-node allocator memory stats."""
    peak_bytes: builtins.int
    live_bytes: builtins.int
    """The bytes that are not deallocated."""
    @property
    def allocation_records(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___AllocationRecord]:
        """The allocation and deallocation timeline."""
    allocator_bytes_in_use: builtins.int
    """These are snapshots of the overall allocator memory stats.
    The number of live bytes currently allocated by the allocator.
    """
    def __init__(
        self,
        *,
        allocator_name: builtins.str | None = ...,
        total_bytes: builtins.int | None = ...,
        peak_bytes: builtins.int | None = ...,
        live_bytes: builtins.int | None = ...,
        allocation_records: collections.abc.Iterable[global___AllocationRecord] | None = ...,
        allocator_bytes_in_use: builtins.int | None = ...,
    ) -> None: ...
    def ClearField(self, field_name: typing_extensions.Literal["allocation_records", b"allocation_records", "allocator_bytes_in_use", b"allocator_bytes_in_use", "allocator_name", b"allocator_name", "live_bytes", b"live_bytes", "peak_bytes", b"peak_bytes", "total_bytes", b"total_bytes"]) -> None: ...

global___AllocatorMemoryUsed = AllocatorMemoryUsed

@typing_extensions.final
class NodeOutput(google.protobuf.message.Message):
    """Output sizes recorded for a single execution of a graph node."""

    DESCRIPTOR: google.protobuf.descriptor.Descriptor

    SLOT_FIELD_NUMBER: builtins.int
    TENSOR_DESCRIPTION_FIELD_NUMBER: builtins.int
    slot: builtins.int
    @property
    def tensor_description(self) -> tensorflow.core.framework.tensor_description_pb2.TensorDescription: ...
    def __init__(
        self,
        *,
        slot: builtins.int | None = ...,
        tensor_description: tensorflow.core.framework.tensor_description_pb2.TensorDescription | None = ...,
    ) -> None: ...
    def HasField(self, field_name: typing_extensions.Literal["tensor_description", b"tensor_description"]) -> builtins.bool: ...
    def ClearField(self, field_name: typing_extensions.Literal["slot", b"slot", "tensor_description", b"tensor_description"]) -> None: ...

global___NodeOutput = NodeOutput

@typing_extensions.final
class MemoryStats(google.protobuf.message.Message):
    """For memory tracking."""

    DESCRIPTOR: google.protobuf.descriptor.Descriptor

    TEMP_MEMORY_SIZE_FIELD_NUMBER: builtins.int
    PERSISTENT_MEMORY_SIZE_FIELD_NUMBER: builtins.int
    PERSISTENT_TENSOR_ALLOC_IDS_FIELD_NUMBER: builtins.int
    DEVICE_TEMP_MEMORY_SIZE_FIELD_NUMBER: builtins.int
    DEVICE_PERSISTENT_MEMORY_SIZE_FIELD_NUMBER: builtins.int
    DEVICE_PERSISTENT_TENSOR_ALLOC_IDS_FIELD_NUMBER: builtins.int
    temp_memory_size: builtins.int
    persistent_memory_size: builtins.int
    @property
    def persistent_tensor_alloc_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]: ...
    device_temp_memory_size: builtins.int
    device_persistent_memory_size: builtins.int
    @property
    def device_persistent_tensor_alloc_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]: ...
    def __init__(
        self,
        *,
        temp_memory_size: builtins.int | None = ...,
        persistent_memory_size: builtins.int | None = ...,
        persistent_tensor_alloc_ids: collections.abc.Iterable[builtins.int] | None = ...,
        device_temp_memory_size: builtins.int | None = ...,
        device_persistent_memory_size: builtins.int | None = ...,
        device_persistent_tensor_alloc_ids: collections.abc.Iterable[builtins.int] | None = ...,
    ) -> None: ...
    def ClearField(self, field_name: typing_extensions.Literal["device_persistent_memory_size", b"device_persistent_memory_size", "device_persistent_tensor_alloc_ids", b"device_persistent_tensor_alloc_ids", "device_temp_memory_size", b"device_temp_memory_size", "persistent_memory_size", b"persistent_memory_size", "persistent_tensor_alloc_ids", b"persistent_tensor_alloc_ids", "temp_memory_size", b"temp_memory_size"]) -> None: ...

global___MemoryStats = MemoryStats

@typing_extensions.final
class NodeExecStats(google.protobuf.message.Message):
    """Time/size stats recorded for a single execution of a graph node."""

    DESCRIPTOR: google.protobuf.descriptor.Descriptor

    NODE_NAME_FIELD_NUMBER: builtins.int
    ALL_START_MICROS_FIELD_NUMBER: builtins.int
    OP_START_REL_MICROS_FIELD_NUMBER: builtins.int
    OP_END_REL_MICROS_FIELD_NUMBER: builtins.int
    ALL_END_REL_MICROS_FIELD_NUMBER: builtins.int
    MEMORY_FIELD_NUMBER: builtins.int
    OUTPUT_FIELD_NUMBER: builtins.int
    TIMELINE_LABEL_FIELD_NUMBER: builtins.int
    SCHEDULED_MICROS_FIELD_NUMBER: builtins.int
    THREAD_ID_FIELD_NUMBER: builtins.int
    REFERENCED_TENSOR_FIELD_NUMBER: builtins.int
    MEMORY_STATS_FIELD_NUMBER: builtins.int
    ALL_START_NANOS_FIELD_NUMBER: builtins.int
    OP_START_REL_NANOS_FIELD_NUMBER: builtins.int
    OP_END_REL_NANOS_FIELD_NUMBER: builtins.int
    ALL_END_REL_NANOS_FIELD_NUMBER: builtins.int
    SCHEDULED_NANOS_FIELD_NUMBER: builtins.int
    node_name: builtins.str
    """TODO(tucker): Use some more compact form of node identity than
    the full string name.  Either all processes should agree on a
    global id (cost_id?) for each node, or we should use a hash of
    the name.
    """
    all_start_micros: builtins.int
    op_start_rel_micros: builtins.int
    op_end_rel_micros: builtins.int
    all_end_rel_micros: builtins.int
    @property
    def memory(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___AllocatorMemoryUsed]: ...
    @property
    def output(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___NodeOutput]: ...
    timeline_label: builtins.str
    scheduled_micros: builtins.int
    thread_id: builtins.int
    @property
    def referenced_tensor(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[tensorflow.core.framework.allocation_description_pb2.AllocationDescription]: ...
    @property
    def memory_stats(self) -> global___MemoryStats: ...
    all_start_nanos: builtins.int
    op_start_rel_nanos: builtins.int
    op_end_rel_nanos: builtins.int
    all_end_rel_nanos: builtins.int
    scheduled_nanos: builtins.int
    def __init__(
        self,
        *,
        node_name: builtins.str | None = ...,
        all_start_micros: builtins.int | None = ...,
        op_start_rel_micros: builtins.int | None = ...,
        op_end_rel_micros: builtins.int | None = ...,
        all_end_rel_micros: builtins.int | None = ...,
        memory: collections.abc.Iterable[global___AllocatorMemoryUsed] | None = ...,
        output: collections.abc.Iterable[global___NodeOutput] | None = ...,
        timeline_label: builtins.str | None = ...,
        scheduled_micros: builtins.int | None = ...,
        thread_id: builtins.int | None = ...,
        referenced_tensor: collections.abc.Iterable[tensorflow.core.framework.allocation_description_pb2.AllocationDescription] | None = ...,
        memory_stats: global___MemoryStats | None = ...,
        all_start_nanos: builtins.int | None = ...,
        op_start_rel_nanos: builtins.int | None = ...,
        op_end_rel_nanos: builtins.int | None = ...,
        all_end_rel_nanos: builtins.int | None = ...,
        scheduled_nanos: builtins.int | None = ...,
    ) -> None: ...
    def HasField(self, field_name: typing_extensions.Literal["memory_stats", b"memory_stats"]) -> builtins.bool: ...
    def ClearField(self, field_name: typing_extensions.Literal["all_end_rel_micros", b"all_end_rel_micros", "all_end_rel_nanos", b"all_end_rel_nanos", "all_start_micros", b"all_start_micros", "all_start_nanos", b"all_start_nanos", "memory", b"memory", "memory_stats", b"memory_stats", "node_name", b"node_name", "op_end_rel_micros", b"op_end_rel_micros", "op_end_rel_nanos", b"op_end_rel_nanos", "op_start_rel_micros", b"op_start_rel_micros", "op_start_rel_nanos", b"op_start_rel_nanos", "output", b"output", "referenced_tensor", b"referenced_tensor", "scheduled_micros", b"scheduled_micros", "scheduled_nanos", b"scheduled_nanos", "thread_id", b"thread_id", "timeline_label", b"timeline_label"]) -> None: ...

global___NodeExecStats = NodeExecStats

@typing_extensions.final
class DeviceStepStats(google.protobuf.message.Message):
    DESCRIPTOR: google.protobuf.descriptor.Descriptor

    @typing_extensions.final
    class ThreadNamesEntry(google.protobuf.message.Message):
        DESCRIPTOR: google.protobuf.descriptor.Descriptor

        KEY_FIELD_NUMBER: builtins.int
        VALUE_FIELD_NUMBER: builtins.int
        key: builtins.int
        value: builtins.str
        def __init__(
            self,
            *,
            key: builtins.int | None = ...,
            value: builtins.str | None = ...,
        ) -> None: ...
        def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...

    DEVICE_FIELD_NUMBER: builtins.int
    NODE_STATS_FIELD_NUMBER: builtins.int
    THREAD_NAMES_FIELD_NUMBER: builtins.int
    device: builtins.str
    @property
    def node_stats(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___NodeExecStats]: ...
    @property
    def thread_names(self) -> google.protobuf.internal.containers.ScalarMap[builtins.int, builtins.str]:
        """Its key is thread id."""
    def __init__(
        self,
        *,
        device: builtins.str | None = ...,
        node_stats: collections.abc.Iterable[global___NodeExecStats] | None = ...,
        thread_names: collections.abc.Mapping[builtins.int, builtins.str] | None = ...,
    ) -> None: ...
    def ClearField(self, field_name: typing_extensions.Literal["device", b"device", "node_stats", b"node_stats", "thread_names", b"thread_names"]) -> None: ...

global___DeviceStepStats = DeviceStepStats

@typing_extensions.final
class StepStats(google.protobuf.message.Message):
    DESCRIPTOR: google.protobuf.descriptor.Descriptor

    DEV_STATS_FIELD_NUMBER: builtins.int
    @property
    def dev_stats(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DeviceStepStats]: ...
    def __init__(
        self,
        *,
        dev_stats: collections.abc.Iterable[global___DeviceStepStats] | None = ...,
    ) -> None: ...
    def ClearField(self, field_name: typing_extensions.Literal["dev_stats", b"dev_stats"]) -> None: ...

global___StepStats = StepStats
