Struct tfrecord::protos::RemoteFusedGraphExecuteInfo[][src]

pub struct RemoteFusedGraphExecuteInfo {
    pub remote_graph: Option<GraphDef>,
    pub graph_input_node_name: Vec<String>,
    pub graph_output_node_name: Vec<String>,
    pub executor_name: String,
    pub serialized_executor_parameters: Vec<u8>,
    pub default_graph_input_tensor_shape: Vec<TensorShapeTypeProto>,
    pub default_graph_output_tensor_shape: Vec<TensorShapeTypeProto>,
}

Protocol buffer representing a handle to a tensorflow resource. Handles are not valid across executions, but can be serialized back and forth from within a single run.

Fields

remote_graph: Option<GraphDef>

Definition of remote graph

graph_input_node_name: Vec<String>

Remote fused graph input node name

graph_output_node_name: Vec<String>

Remote fused graph output node name

executor_name: String

Executor’s name

serialized_executor_parameters: Vec<u8>

Optional: Parameters given to the executor

default_graph_input_tensor_shape: Vec<TensorShapeTypeProto>

Optional: Default graph input tensor shape used to allocate memory before executing op

default_graph_output_tensor_shape: Vec<TensorShapeTypeProto>

Optional: Default graph input tensor shape used to allocate memory before executing op TODO(satok): Remote output tensor shape once shape information is stored in NodeDef

Trait Implementations

impl Clone for RemoteFusedGraphExecuteInfo[src]

impl Debug for RemoteFusedGraphExecuteInfo[src]

impl Default for RemoteFusedGraphExecuteInfo[src]

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

impl Message for RemoteFusedGraphExecuteInfo[src]

impl PartialEq<RemoteFusedGraphExecuteInfo> for RemoteFusedGraphExecuteInfo[src]

impl Serialize for RemoteFusedGraphExecuteInfo[src]

impl StructuralPartialEq for RemoteFusedGraphExecuteInfo[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>,