pub struct UniformQuantizedConvolutionHybrid { /* private fields */ }
Expand description
UniformQuantizedConvolutionHybrid
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/UniformQuantizedConvolutionHybrid
Implementations§
source§impl UniformQuantizedConvolutionHybrid
impl UniformQuantizedConvolutionHybrid
sourcepub fn window_strides<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
pub fn window_strides<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
Sets the window_strides
attribute.
sourcepub fn padding<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn padding<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the padding
attribute.
sourcepub fn explicit_padding<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
pub fn explicit_padding<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
Sets the explicit_padding
attribute.
sourcepub fn lhs_dilation<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
pub fn lhs_dilation<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
Sets the lhs_dilation
attribute.
sourcepub fn rhs_dilation<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
pub fn rhs_dilation<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
Sets the rhs_dilation
attribute.
sourcepub fn batch_group_count<ArgType: Into<i64>>(self, value: ArgType) -> Self
pub fn batch_group_count<ArgType: Into<i64>>(self, value: ArgType) -> Self
Sets the batch_group_count
attribute.
sourcepub fn feature_group_count<ArgType: Into<i64>>(self, value: ArgType) -> Self
pub fn feature_group_count<ArgType: Into<i64>>(self, value: ArgType) -> Self
Sets the feature_group_count
attribute.
sourcepub fn dimension_numbers<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn dimension_numbers<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the dimension_numbers
attribute.
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 target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the `` attribute.
sourcepub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>>(
&self,
ctx: &'a Context,
lhs: &T0,
rhs: &T1,
rhs_scales: &T2,
rhs_zero_points: &T3
) -> Result<TensorHandle<'a>>
pub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>>( &self, ctx: &'a Context, lhs: &T0, rhs: &T1, rhs_scales: &T2, rhs_zero_points: &T3 ) -> Result<TensorHandle<'a>>
Execute uniform_quantized_convolution_hybrid.
Trait Implementations§
source§impl Clone for UniformQuantizedConvolutionHybrid
impl Clone for UniformQuantizedConvolutionHybrid
source§fn clone(&self) -> UniformQuantizedConvolutionHybrid
fn clone(&self) -> UniformQuantizedConvolutionHybrid
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 moreAuto Trait Implementations§
impl RefUnwindSafe for UniformQuantizedConvolutionHybrid
impl Send for UniformQuantizedConvolutionHybrid
impl Sync for UniformQuantizedConvolutionHybrid
impl Unpin for UniformQuantizedConvolutionHybrid
impl UnwindSafe for UniformQuantizedConvolutionHybrid
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