[][src]Struct tensorflow_proto::tensorflow::contrib::mpi_collectives::MpiRequest

pub struct MpiRequest {
    pub request_rank: i32,
    pub request_type: i32,
    pub tensor_type: i32,
    pub tensor_name: String,
    pub tensor_shape: Option<TensorShapeProto>,
}

An MPIRequest is a message sent from a rank greater than zero to the coordinator (rank zero), informing the coordinator of an operation that the rank wants to do and the tensor that it wants to apply the operation to.

Fields

request_rank: i32

The request rank is necessary to create a consistent ordering of results, for example in the allgather where the order of outputs should be sorted by rank.

request_type: i32tensor_type: i32tensor_name: Stringtensor_shape: Option<TensorShapeProto>

Implementations

impl MpiRequest[src]

pub fn request_type(&self) -> RequestType[src]

Returns the enum value of request_type, or the default if the field is set to an invalid enum value.

pub fn set_request_type(&mut self, value: RequestType)[src]

Sets request_type to the provided enum value.

pub fn tensor_type(&self) -> DataType[src]

Returns the enum value of tensor_type, or the default if the field is set to an invalid enum value.

pub fn set_tensor_type(&mut self, value: DataType)[src]

Sets tensor_type to the provided enum value.

Trait Implementations

impl Clone for MpiRequest[src]

impl Debug for MpiRequest[src]

impl Default for MpiRequest[src]

impl Message for MpiRequest[src]

impl PartialEq<MpiRequest> for MpiRequest[src]

impl StructuralPartialEq for MpiRequest[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> From<T> for T[src]

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

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.