Struct tensorflow::ops::UniformQuantizeInst
source · pub struct UniformQuantizeInst {
pub op: Operation,
}
Expand description
An instance of ‘UniformQuantize’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built UniformQuantize Operation in a Tensorflow graph.
Implementations§
source§impl UniformQuantizeInst
impl UniformQuantizeInst
sourcepub fn output(&self) -> Output
pub fn output(&self) -> Output
Returns the ‘output’ Output of this ‘UniformQuantize’ operation.
sourcepub fn input(&self) -> Input<'_>
pub fn input(&self) -> Input<'_>
Returns the ‘input’ Input of this ‘UniformQuantize’ operation.
sourcepub fn scales(&self) -> Input<'_>
pub fn scales(&self) -> Input<'_>
Returns the ‘scales’ Input of this ‘UniformQuantize’ operation.
sourcepub fn zero_points(&self) -> Input<'_>
pub fn zero_points(&self) -> Input<'_>
Returns the ‘zero_points’ Input of this ‘UniformQuantize’ operation.
Trait Implementations§
source§impl Clone for UniformQuantizeInst
impl Clone for UniformQuantizeInst
source§fn clone(&self) -> UniformQuantizeInst
fn clone(&self) -> UniformQuantizeInst
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UniformQuantizeInst
impl Debug for UniformQuantizeInst
source§impl From<UniformQuantizeInst> for Operation
impl From<UniformQuantizeInst> for Operation
source§fn from(inst: UniformQuantizeInst) -> Operation
fn from(inst: UniformQuantizeInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for UniformQuantizeInst
impl Send for UniformQuantizeInst
impl Sync for UniformQuantizeInst
impl Unpin for UniformQuantizeInst
impl UnwindSafe for UniformQuantizeInst
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more