Struct tfrecord::protos::MemoryLogRawAllocation[][src]

pub struct MemoryLogRawAllocation {
    pub step_id: i64,
    pub operation: String,
    pub num_bytes: i64,
    pub ptr: u64,
    pub allocation_id: i64,
    pub allocator_name: String,
}

Fields

step_id: i64

Process-unique step id.

operation: String

Name of the operation making the allocation.

num_bytes: i64

Number of bytes in the allocation.

ptr: u64

Address of the allocation.

allocation_id: i64

Id of the tensor buffer being allocated, used to match to a corresponding deallocation.

allocator_name: String

Name of the allocator used.

Trait Implementations

impl Clone for MemoryLogRawAllocation[src]

impl Debug for MemoryLogRawAllocation[src]

impl Default for MemoryLogRawAllocation[src]

impl<'de> Deserialize<'de> for MemoryLogRawAllocation[src]

impl Message for MemoryLogRawAllocation[src]

impl PartialEq<MemoryLogRawAllocation> for MemoryLogRawAllocation[src]

impl Serialize for MemoryLogRawAllocation[src]

impl StructuralPartialEq for MemoryLogRawAllocation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,