Struct tensorflow::ops::UniformQuantizedDotHybrid
source · pub struct UniformQuantizedDotHybrid { /* private fields */ }
Expand description
Builder for the UniformQuantizedDotHybrid
operation.
Implementations§
source§impl UniformQuantizedDotHybrid
impl UniformQuantizedDotHybrid
sourcepub fn rhs_quantization_axis<ArgType: Into<i64>>(self, value: ArgType) -> Self
pub fn rhs_quantization_axis<ArgType: Into<i64>>(self, value: ArgType) -> Self
Sets the rhs_quantization_axis
attribute.
sourcepub fn rhs_quantization_min_val<ArgType: Into<i64>>(
self,
value: ArgType
) -> Self
pub fn rhs_quantization_min_val<ArgType: Into<i64>>( self, value: ArgType ) -> Self
Sets the rhs_quantization_min_val
attribute.
sourcepub fn rhs_quantization_max_val<ArgType: Into<i64>>(
self,
value: ArgType
) -> Self
pub fn rhs_quantization_max_val<ArgType: Into<i64>>( self, value: ArgType ) -> Self
Sets the rhs_quantization_max_val
attribute.
sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
sourcepub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
&self,
lhs: O0,
rhs: O1,
rhs_scales: O2,
rhs_zero_points: O3,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>( &self, lhs: O0, rhs: O1, rhs_scales: O2, rhs_zero_points: O3, scope: &mut Scope ) -> Result<Operation>
Builds the UniformQuantizedDotHybrid
operation.
sourcepub fn build_instance(
&self,
lhs: Output,
rhs: Output,
rhs_scales: Output,
rhs_zero_points: Output,
scope: &mut Scope
) -> Result<UniformQuantizedDotHybridInst>
pub fn build_instance( &self, lhs: Output, rhs: Output, rhs_scales: Output, rhs_zero_points: Output, scope: &mut Scope ) -> Result<UniformQuantizedDotHybridInst>
Builds a new instance of ‘UniformQuantizedDotHybrid’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for UniformQuantizedDotHybrid
impl Debug for UniformQuantizedDotHybrid
source§impl Default for UniformQuantizedDotHybrid
impl Default for UniformQuantizedDotHybrid
source§fn default() -> UniformQuantizedDotHybrid
fn default() -> UniformQuantizedDotHybrid
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for UniformQuantizedDotHybrid
impl Send for UniformQuantizedDotHybrid
impl Sync for UniformQuantizedDotHybrid
impl Unpin for UniformQuantizedDotHybrid
impl UnwindSafe for UniformQuantizedDotHybrid
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