pub struct ImportGraphDefOptions { /* private fields */ }
Expand description

ImportGraphDefOptions holds options that can be passed to Graph::import_graph_def.

Implementations§

source§

impl ImportGraphDefOptions

source

pub fn new() -> Self

Creates a default ImportGraphDefOptions.

source§

impl ImportGraphDefOptions

source

pub fn set_prefix(&mut self, prefix: &str) -> Result<(), NulError>

Set the prefix to be prepended to the names of nodes in graph_def that will be imported into graph.

source

pub fn add_input_mapping( &mut self, src_name: &str, src_index: usize, dst: &Output ) -> Result<(), NulError>

Set any imported nodes with input src_name:src_index to have that input replaced with dst. src_name refers to a node in the graph to be imported, dst references a node already existing in the graph being imported into.

source

pub fn remap_control_dependency( &mut self, src_name: &str, dst: &Operation ) -> Result<(), NulError>

Set any imported nodes with control input src_name to have that input replaced with dst. src_name refers to a node in the graph to be imported, dst references an operation already existing in the graph being imported into.

source

pub fn add_control_dependency(&mut self, oper: &Operation)

Cause the imported graph to have a control dependency on oper. oper should exist in the graph being imported into.

source

pub fn add_return_output( &mut self, oper_name: &str, index: usize ) -> Result<(), NulError>

Add an output in graph_def to be returned via the return_outputs output parameter of import_graph_def(). If the output is remapped via an input mapping, the corresponding existing tensor in graph will be returned.

source

pub fn add_return_operation(&mut self, oper_name: &str) -> Result<(), NulError>

Add an operation in graph_def to be returned via the return_opers output parameter of import_graph_def().

source

pub fn num_return_outputs(&self) -> usize

Returns the number of return outputs added via add_return_output().

source

pub fn num_return_operations(&self) -> usize

Returns the number of return operations added via add_return_operation().

source

pub fn set_uniquify_names(&mut self, uniquify_names: bool)

Set whether to uniquify imported operation names. If true, imported operation names will be modified if their name already exists in the graph. If false, conflicting names will be treated as an error. Note that this option has no effect if a prefix is set, since the prefix will guarantee all names are unique. Defaults to false.

source

pub fn set_uniquify_prefix(&mut self, uniquify_prefix: bool)

If true, the specified prefix will be modified if it already exists as an operation name or prefix in the graph. If false, a conflicting prefix will be treated as an error. This option has no effect if no prefix is specified.

source

pub fn set_default_device(&mut self, device: &str) -> Result<(), NulError>

Set the execution device for nodes. Only applies to nodes where a device was not already explicitly specified.

Trait Implementations§

source§

impl Debug for ImportGraphDefOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ImportGraphDefOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Drop for ImportGraphDefOptions

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.