Struct tensorflow::Operation

source ·
pub struct Operation { /* private fields */ }
Expand description

An Operation is a node in a Graph. It is a computation which accepts inputs and produces outputs.

Implementations§

source§

impl Operation

source

pub fn name(&self) -> Result<String, Utf8Error>

Returns the name of the operation.

This is the name of the specific computational step, not an operation type, so it may look like 'add_x_and_y' instead of 'Add', although it may be a generated ID like 'Add_123'.

source

pub fn op_type(&self) -> Result<String, Utf8Error>

Returns the type of operation. This will be something like 'Add', 'Mul', etc.

source

pub fn device(&self) -> Result<String, Utf8Error>

Returns the device for this operation. The empty string means unconstrained.

source

pub fn num_outputs(&self) -> usize

Returns the number of outputs.

source

pub fn output_type(&self, index: usize) -> DataType

Returns the type of a specific output.

source

pub fn output(&self, index: usize) -> Output

Returns the given output edge. The index argument is the index into the current operation’s output array,

source

pub fn output_list_length(&self, arg_name: &str) -> Result<usize>

source

pub fn num_inputs(&self) -> usize

Returns the number of inputs.

source

pub fn input_type(&self, index: usize) -> DataType

Returns the type of a specific input.

source

pub fn input_list_length(&self, arg_name: &str) -> Result<usize>

source

pub fn input(&self, index: usize) -> (Operation, usize)

Returns the given input edge. The index argument is the index into the current operation’s input array, and the return value is the source operation and the index into its output array.

source

pub fn output_num_consumers(&self, index: usize) -> usize

Returns the number of consumers of a specific output.

source

pub fn output_consumers(&self, index: usize) -> Vec<(Operation, usize)>

Returns the consumers of a specific output. The index argument is the index into the current operation’s output array, and the return value is a vector of the destination operation and the index into its input array.

source

pub fn num_control_inputs(&self) -> usize

Returns the number of control inputs.

source

pub fn control_inputs(&self) -> Vec<Operation>

Returns the control inputs.

source

pub fn num_control_outputs(&self) -> usize

Returns the number of control outputs.

source

pub fn control_outputs(&self) -> Vec<Operation>

Returns the control outputs.

source

pub fn get_attr_metadata(&self, attr_name: &str) -> Result<AttrMetadata>

Returns metadata about the value of the attribute attr_name.

source

pub fn get_attr_string(&self, attr_name: &str) -> Result<String>

Returns the value of the attribute attr_name.

source

pub fn get_attr_string_list(&self, attr_name: &str) -> Result<Vec<String>>

Get the list of strings in the value of the attribute attr_name.

source

pub fn get_attr_int(&self, attr_name: &str) -> Result<i64>

Returns the value of the attribute attr_name.

source

pub fn get_attr_int_list(&self, attr_name: &str) -> Result<Vec<i64>>

Get the list of ints in the value of the attribute attr_name.

source

pub fn get_attr_float(&self, attr_name: &str) -> Result<f32>

Returns the value of the attribute attr_name.

source

pub fn get_attr_float_list(&self, attr_name: &str) -> Result<Vec<f32>>

Get the list of floats in the value of the attribute attr_name.

source

pub fn get_attr_bool(&self, attr_name: &str) -> Result<bool>

Returns the value of the attribute attr_name.

source

pub fn get_attr_bool_list(&self, attr_name: &str) -> Result<Vec<bool>>

Get the list of bools in the value of the attribute attr_name.

source

pub fn get_attr_type(&self, attr_name: &str) -> Result<DataType>

Returns the value of the attribute attr_name.

source

pub fn get_attr_type_list(&self, attr_name: &str) -> Result<Vec<DataType>>

Get the list of types in the value of the attribute attr_name.

source

pub fn get_attr_shape(&self, attr_name: &str) -> Result<Shape>

Returns the value of the attribute attr_name.

source

pub fn get_attr_shape_list(&self, attr_name: &str) -> Result<Vec<Shape>>

Get the list of shapes in the value of the attribute attr_name.

source

pub fn get_attr_tensor_shape_proto(&self, attr_name: &str) -> Result<Vec<u8>>

Returns the binary-serialized TensorShapeProto value of the attribute attr_name.

source

pub fn get_attr_tensor_shape_proto_list( &self, attr_name: &str ) -> Result<Vec<Vec<u8>>>

Get the list of binary-serialized TensorShapeProtos in the value of the attribute attr_name.

source

pub fn get_attr_tensor<T: TensorType>( &self, attr_name: &str ) -> Result<Tensor<T>>

Returns the value of the attribute attr_name. Returns an error if the type of the tensor value does not match the type of the generic argument.

source

pub fn get_attr_tensor_list<T: TensorType>( &self, attr_name: &str ) -> Result<Vec<Tensor<T>>>

Get the list of tensors in the value of the attribute attr_name. Returns an error if the type of the tensor value does not match the type of the generic argument.

source

pub fn get_attr_value_proto(&self, attr_name: &str) -> Result<Vec<u8>>

Returns the binary-serialized AttrValue proto representation of the value of the attr_name attr.

Trait Implementations§

source§

impl Clone for Operation

source§

fn clone(&self) -> Operation

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Operation

source§

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

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

impl From<AbortInst> for Operation

source§

fn from(inst: AbortInst) -> Operation

Converts to this type from the input type.
source§

impl From<AbsInst> for Operation

source§

fn from(inst: AbsInst) -> Operation

Converts to this type from the input type.
source§

impl From<AccumulateNV2Inst> for Operation

source§

fn from(inst: AccumulateNV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AccumulatorApplyGradientInst> for Operation

source§

fn from(inst: AccumulatorApplyGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<AccumulatorNumAccumulatedInst> for Operation

source§

fn from(inst: AccumulatorNumAccumulatedInst) -> Operation

Converts to this type from the input type.
source§

impl From<AccumulatorSetGlobalStepInst> for Operation

source§

fn from(inst: AccumulatorSetGlobalStepInst) -> Operation

Converts to this type from the input type.
source§

impl From<AccumulatorTakeGradientInst> for Operation

source§

fn from(inst: AccumulatorTakeGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<AcosInst> for Operation

source§

fn from(inst: AcosInst) -> Operation

Converts to this type from the input type.
source§

impl From<AcoshInst> for Operation

source§

fn from(inst: AcoshInst) -> Operation

Converts to this type from the input type.
source§

impl From<AddInst> for Operation

source§

fn from(inst: AddInst) -> Operation

Converts to this type from the input type.
source§

impl From<AddManySparseToTensorsMapInst> for Operation

source§

fn from(inst: AddManySparseToTensorsMapInst) -> Operation

Converts to this type from the input type.
source§

impl From<AddNInst> for Operation

source§

fn from(inst: AddNInst) -> Operation

Converts to this type from the input type.
source§

impl From<AddSparseToTensorsMapInst> for Operation

source§

fn from(inst: AddSparseToTensorsMapInst) -> Operation

Converts to this type from the input type.
source§

impl From<AddV2Inst> for Operation

source§

fn from(inst: AddV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AdjustContrastInst> for Operation

source§

fn from(inst: AdjustContrastInst) -> Operation

Converts to this type from the input type.
source§

impl From<AdjustContrastv2Inst> for Operation

source§

fn from(inst: AdjustContrastv2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AdjustHueInst> for Operation

source§

fn from(inst: AdjustHueInst) -> Operation

Converts to this type from the input type.
source§

impl From<AdjustSaturationInst> for Operation

source§

fn from(inst: AdjustSaturationInst) -> Operation

Converts to this type from the input type.
source§

impl From<AllCandidateSamplerInst> for Operation

source§

fn from(inst: AllCandidateSamplerInst) -> Operation

Converts to this type from the input type.
source§

impl From<AllInst> for Operation

source§

fn from(inst: AllInst) -> Operation

Converts to this type from the input type.
source§

impl From<AllToAllInst> for Operation

source§

fn from(inst: AllToAllInst) -> Operation

Converts to this type from the input type.
source§

impl From<AngleInst> for Operation

source§

fn from(inst: AngleInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousHashTableInst> for Operation

source§

fn from(inst: AnonymousHashTableInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousIteratorInst> for Operation

source§

fn from(inst: AnonymousIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousIteratorV2Inst> for Operation

source§

fn from(inst: AnonymousIteratorV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousIteratorV3Inst> for Operation

source§

fn from(inst: AnonymousIteratorV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousMemoryCacheInst> for Operation

source§

fn from(inst: AnonymousMemoryCacheInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousMultiDeviceIteratorInst> for Operation

source§

fn from(inst: AnonymousMultiDeviceIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousMultiDeviceIteratorV3Inst> for Operation

source§

fn from(inst: AnonymousMultiDeviceIteratorV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousMutableDenseHashTableInst> for Operation

source§

fn from(inst: AnonymousMutableDenseHashTableInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousMutableHashTableInst> for Operation

source§

fn from(inst: AnonymousMutableHashTableInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousMutableHashTableOfTensorsInst> for Operation

source§

fn from(inst: AnonymousMutableHashTableOfTensorsInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousRandomSeedGeneratorInst> for Operation

source§

fn from(inst: AnonymousRandomSeedGeneratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnonymousSeedGeneratorInst> for Operation

source§

fn from(inst: AnonymousSeedGeneratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<AnyInst> for Operation

source§

fn from(inst: AnyInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyAdaMaxInst> for Operation

source§

fn from(inst: ApplyAdaMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyAdadeltaInst> for Operation

source§

fn from(inst: ApplyAdadeltaInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyAdagradDAInst> for Operation

source§

fn from(inst: ApplyAdagradDAInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyAdagradInst> for Operation

source§

fn from(inst: ApplyAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyAdagradV2Inst> for Operation

source§

fn from(inst: ApplyAdagradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyAdamInst> for Operation

source§

fn from(inst: ApplyAdamInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyAddSignInst> for Operation

source§

fn from(inst: ApplyAddSignInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyCenteredRMSPropInst> for Operation

source§

fn from(inst: ApplyCenteredRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyFtrlInst> for Operation

source§

fn from(inst: ApplyFtrlInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyFtrlV2Inst> for Operation

source§

fn from(inst: ApplyFtrlV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyGradientDescentInst> for Operation

source§

fn from(inst: ApplyGradientDescentInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyMomentumInst> for Operation

source§

fn from(inst: ApplyMomentumInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyPowerSignInst> for Operation

source§

fn from(inst: ApplyPowerSignInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyProximalAdagradInst> for Operation

source§

fn from(inst: ApplyProximalAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyProximalGradientDescentInst> for Operation

source§

fn from(inst: ApplyProximalGradientDescentInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApplyRMSPropInst> for Operation

source§

fn from(inst: ApplyRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApproxTopKInst> for Operation

source§

fn from(inst: ApproxTopKInst) -> Operation

Converts to this type from the input type.
source§

impl From<ApproximateEqualInst> for Operation

source§

fn from(inst: ApproximateEqualInst) -> Operation

Converts to this type from the input type.
source§

impl From<ArgMaxInst> for Operation

source§

fn from(inst: ArgMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<ArgMinInst> for Operation

source§

fn from(inst: ArgMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<AsStringInst> for Operation

source§

fn from(inst: AsStringInst) -> Operation

Converts to this type from the input type.
source§

impl From<AsinInst> for Operation

source§

fn from(inst: AsinInst) -> Operation

Converts to this type from the input type.
source§

impl From<AsinhInst> for Operation

source§

fn from(inst: AsinhInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssertCardinalityDatasetInst> for Operation

source§

fn from(inst: AssertCardinalityDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssertInst> for Operation

source§

fn from(inst: AssertInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssertNextDatasetInst> for Operation

source§

fn from(inst: AssertNextDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssertPrevDatasetInst> for Operation

source§

fn from(inst: AssertPrevDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssignAddInst> for Operation

source§

fn from(inst: AssignAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssignAddVariableOpInst> for Operation

source§

fn from(inst: AssignAddVariableOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssignInst> for Operation

source§

fn from(inst: AssignInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssignSubInst> for Operation

source§

fn from(inst: AssignSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssignSubVariableOpInst> for Operation

source§

fn from(inst: AssignSubVariableOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssignVariableOpInst> for Operation

source§

fn from(inst: AssignVariableOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<AssignVariableXlaConcatNDInst> for Operation

source§

fn from(inst: AssignVariableXlaConcatNDInst) -> Operation

Converts to this type from the input type.
source§

impl From<Atan2Inst> for Operation

source§

fn from(inst: Atan2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AtanInst> for Operation

source§

fn from(inst: AtanInst) -> Operation

Converts to this type from the input type.
source§

impl From<AtanhInst> for Operation

source§

fn from(inst: AtanhInst) -> Operation

Converts to this type from the input type.
source§

impl From<AudioSpectrogramInst> for Operation

source§

fn from(inst: AudioSpectrogramInst) -> Operation

Converts to this type from the input type.
source§

impl From<AudioSummaryInst> for Operation

source§

fn from(inst: AudioSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<AudioSummaryV2Inst> for Operation

source§

fn from(inst: AudioSummaryV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<AutoShardDatasetInst> for Operation

source§

fn from(inst: AutoShardDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<AvgPool3DGradInst> for Operation

source§

fn from(inst: AvgPool3DGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<AvgPool3DInst> for Operation

source§

fn from(inst: AvgPool3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<AvgPoolGradInst> for Operation

source§

fn from(inst: AvgPoolGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<AvgPoolInst> for Operation

source§

fn from(inst: AvgPoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<BandedTriangularSolveInst> for Operation

source§

fn from(inst: BandedTriangularSolveInst) -> Operation

Converts to this type from the input type.
source§

impl From<BarrierCloseInst> for Operation

source§

fn from(inst: BarrierCloseInst) -> Operation

Converts to this type from the input type.
source§

impl From<BarrierIncompleteSizeInst> for Operation

source§

fn from(inst: BarrierIncompleteSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<BarrierInsertManyInst> for Operation

source§

fn from(inst: BarrierInsertManyInst) -> Operation

Converts to this type from the input type.
source§

impl From<BarrierInst> for Operation

source§

fn from(inst: BarrierInst) -> Operation

Converts to this type from the input type.
source§

impl From<BarrierReadySizeInst> for Operation

source§

fn from(inst: BarrierReadySizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<BarrierTakeManyInst> for Operation

source§

fn from(inst: BarrierTakeManyInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchCholeskyGradInst> for Operation

source§

fn from(inst: BatchCholeskyGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchCholeskyInst> for Operation

source§

fn from(inst: BatchCholeskyInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchDatasetInst> for Operation

source§

fn from(inst: BatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchDatasetV2Inst> for Operation

source§

fn from(inst: BatchDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchFFT2DInst> for Operation

source§

fn from(inst: BatchFFT2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchFFT3DInst> for Operation

source§

fn from(inst: BatchFFT3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchFFTInst> for Operation

source§

fn from(inst: BatchFFTInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchFunctionInst> for Operation

source§

fn from(inst: BatchFunctionInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchIFFT2DInst> for Operation

source§

fn from(inst: BatchIFFT2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchIFFT3DInst> for Operation

source§

fn from(inst: BatchIFFT3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchIFFTInst> for Operation

source§

fn from(inst: BatchIFFTInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchInst> for Operation

source§

fn from(inst: BatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatMulInst> for Operation

source§

fn from(inst: BatchMatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatMulV2Inst> for Operation

source§

fn from(inst: BatchMatMulV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatMulV3Inst> for Operation

source§

fn from(inst: BatchMatMulV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixBandPartInst> for Operation

source§

fn from(inst: BatchMatrixBandPartInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixDeterminantInst> for Operation

source§

fn from(inst: BatchMatrixDeterminantInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixDiagInst> for Operation

source§

fn from(inst: BatchMatrixDiagInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixDiagPartInst> for Operation

source§

fn from(inst: BatchMatrixDiagPartInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixInverseInst> for Operation

source§

fn from(inst: BatchMatrixInverseInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixSetDiagInst> for Operation

source§

fn from(inst: BatchMatrixSetDiagInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixSolveInst> for Operation

source§

fn from(inst: BatchMatrixSolveInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixSolveLsInst> for Operation

source§

fn from(inst: BatchMatrixSolveLsInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchMatrixTriangularSolveInst> for Operation

source§

fn from(inst: BatchMatrixTriangularSolveInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchNormWithGlobalNormalizationGradInst> for Operation

source§

fn from(inst: BatchNormWithGlobalNormalizationGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchNormWithGlobalNormalizationInst> for Operation

source§

fn from(inst: BatchNormWithGlobalNormalizationInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchSelfAdjointEigInst> for Operation

source§

fn from(inst: BatchSelfAdjointEigInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchSelfAdjointEigV2Inst> for Operation

source§

fn from(inst: BatchSelfAdjointEigV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchSvdInst> for Operation

source§

fn from(inst: BatchSvdInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchToSpaceInst> for Operation

source§

fn from(inst: BatchToSpaceInst) -> Operation

Converts to this type from the input type.
source§

impl From<BatchToSpaceNDInst> for Operation

source§

fn from(inst: BatchToSpaceNDInst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselI0Inst> for Operation

source§

fn from(inst: BesselI0Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselI0eInst> for Operation

source§

fn from(inst: BesselI0eInst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselI1Inst> for Operation

source§

fn from(inst: BesselI1Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselI1eInst> for Operation

source§

fn from(inst: BesselI1eInst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselJ0Inst> for Operation

source§

fn from(inst: BesselJ0Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselJ1Inst> for Operation

source§

fn from(inst: BesselJ1Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselK0Inst> for Operation

source§

fn from(inst: BesselK0Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselK0eInst> for Operation

source§

fn from(inst: BesselK0eInst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselK1Inst> for Operation

source§

fn from(inst: BesselK1Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselK1eInst> for Operation

source§

fn from(inst: BesselK1eInst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselY0Inst> for Operation

source§

fn from(inst: BesselY0Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BesselY1Inst> for Operation

source§

fn from(inst: BesselY1Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BetaincInst> for Operation

source§

fn from(inst: BetaincInst) -> Operation

Converts to this type from the input type.
source§

impl From<BiasAddGradInst> for Operation

source§

fn from(inst: BiasAddGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<BiasAddInst> for Operation

source§

fn from(inst: BiasAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<BiasAddV1Inst> for Operation

source§

fn from(inst: BiasAddV1Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BincountInst> for Operation

source§

fn from(inst: BincountInst) -> Operation

Converts to this type from the input type.
source§

impl From<BitcastInst> for Operation

source§

fn from(inst: BitcastInst) -> Operation

Converts to this type from the input type.
source§

impl From<BitwiseAndInst> for Operation

source§

fn from(inst: BitwiseAndInst) -> Operation

Converts to this type from the input type.
source§

impl From<BitwiseOrInst> for Operation

source§

fn from(inst: BitwiseOrInst) -> Operation

Converts to this type from the input type.
source§

impl From<BitwiseXorInst> for Operation

source§

fn from(inst: BitwiseXorInst) -> Operation

Converts to this type from the input type.
source§

impl From<BlockLSTMGradInst> for Operation

source§

fn from(inst: BlockLSTMGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<BlockLSTMGradV2Inst> for Operation

source§

fn from(inst: BlockLSTMGradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BlockLSTMInst> for Operation

source§

fn from(inst: BlockLSTMInst) -> Operation

Converts to this type from the input type.
source§

impl From<BlockLSTMV2Inst> for Operation

source§

fn from(inst: BlockLSTMV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesAggregateStatsInst> for Operation

source§

fn from(inst: BoostedTreesAggregateStatsInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesBucketizeInst> for Operation

source§

fn from(inst: BoostedTreesBucketizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesCalculateBestFeatureSplitInst> for Operation

source§

fn from(inst: BoostedTreesCalculateBestFeatureSplitInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesCalculateBestFeatureSplitV2Inst> for Operation

source§

fn from(inst: BoostedTreesCalculateBestFeatureSplitV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesCalculateBestGainsPerFeatureInst> for Operation

source§

fn from(inst: BoostedTreesCalculateBestGainsPerFeatureInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesCenterBiasInst> for Operation

source§

fn from(inst: BoostedTreesCenterBiasInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesCreateEnsembleInst> for Operation

source§

fn from(inst: BoostedTreesCreateEnsembleInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesCreateQuantileStreamResourceInst> for Operation

source§

fn from(inst: BoostedTreesCreateQuantileStreamResourceInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesDeserializeEnsembleInst> for Operation

source§

fn from(inst: BoostedTreesDeserializeEnsembleInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesEnsembleResourceHandleOpInst> for Operation

source§

fn from(inst: BoostedTreesEnsembleResourceHandleOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesExampleDebugOutputsInst> for Operation

source§

fn from(inst: BoostedTreesExampleDebugOutputsInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesFlushQuantileSummariesInst> for Operation

source§

fn from(inst: BoostedTreesFlushQuantileSummariesInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesGetEnsembleStatesInst> for Operation

source§

fn from(inst: BoostedTreesGetEnsembleStatesInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesMakeQuantileSummariesInst> for Operation

source§

fn from(inst: BoostedTreesMakeQuantileSummariesInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesMakeStatsSummaryInst> for Operation

source§

fn from(inst: BoostedTreesMakeStatsSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesPredictInst> for Operation

source§

fn from(inst: BoostedTreesPredictInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesQuantileStreamResourceAddSummariesInst> for Operation

source§

fn from(inst: BoostedTreesQuantileStreamResourceAddSummariesInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesQuantileStreamResourceDeserializeInst> for Operation

source§

fn from(inst: BoostedTreesQuantileStreamResourceDeserializeInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesQuantileStreamResourceFlushInst> for Operation

source§

fn from(inst: BoostedTreesQuantileStreamResourceFlushInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesQuantileStreamResourceGetBucketBoundariesInst> for Operation

source§

fn from( inst: BoostedTreesQuantileStreamResourceGetBucketBoundariesInst ) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesQuantileStreamResourceHandleOpInst> for Operation

source§

fn from(inst: BoostedTreesQuantileStreamResourceHandleOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesSerializeEnsembleInst> for Operation

source§

fn from(inst: BoostedTreesSerializeEnsembleInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesSparseAggregateStatsInst> for Operation

source§

fn from(inst: BoostedTreesSparseAggregateStatsInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesSparseCalculateBestFeatureSplitInst> for Operation

source§

fn from(inst: BoostedTreesSparseCalculateBestFeatureSplitInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesTrainingPredictInst> for Operation

source§

fn from(inst: BoostedTreesTrainingPredictInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesUpdateEnsembleInst> for Operation

source§

fn from(inst: BoostedTreesUpdateEnsembleInst) -> Operation

Converts to this type from the input type.
source§

impl From<BoostedTreesUpdateEnsembleV2Inst> for Operation

source§

fn from(inst: BoostedTreesUpdateEnsembleV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<BroadcastArgsInst> for Operation

source§

fn from(inst: BroadcastArgsInst) -> Operation

Converts to this type from the input type.
source§

impl From<BroadcastGradientArgsInst> for Operation

source§

fn from(inst: BroadcastGradientArgsInst) -> Operation

Converts to this type from the input type.
source§

impl From<BroadcastToInst> for Operation

source§

fn from(inst: BroadcastToInst) -> Operation

Converts to this type from the input type.
source§

impl From<BucketizeInst> for Operation

source§

fn from(inst: BucketizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<BytesProducedStatsDatasetInst> for Operation

source§

fn from(inst: BytesProducedStatsDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<CSRSparseMatrixComponentsInst> for Operation

source§

fn from(inst: CSRSparseMatrixComponentsInst) -> Operation

Converts to this type from the input type.
source§

impl From<CSRSparseMatrixToDenseInst> for Operation

source§

fn from(inst: CSRSparseMatrixToDenseInst) -> Operation

Converts to this type from the input type.
source§

impl From<CSRSparseMatrixToSparseTensorInst> for Operation

source§

fn from(inst: CSRSparseMatrixToSparseTensorInst) -> Operation

Converts to this type from the input type.
source§

impl From<CSVDatasetInst> for Operation

source§

fn from(inst: CSVDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<CSVDatasetV2Inst> for Operation

source§

fn from(inst: CSVDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CTCBeamSearchDecoderInst> for Operation

source§

fn from(inst: CTCBeamSearchDecoderInst) -> Operation

Converts to this type from the input type.
source§

impl From<CTCGreedyDecoderInst> for Operation

source§

fn from(inst: CTCGreedyDecoderInst) -> Operation

Converts to this type from the input type.
source§

impl From<CTCLossInst> for Operation

source§

fn from(inst: CTCLossInst) -> Operation

Converts to this type from the input type.
source§

impl From<CTCLossV2Inst> for Operation

source§

fn from(inst: CTCLossV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CacheDatasetInst> for Operation

source§

fn from(inst: CacheDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<CacheDatasetV2Inst> for Operation

source§

fn from(inst: CacheDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CaseInst> for Operation

source§

fn from(inst: CaseInst) -> Operation

Converts to this type from the input type.
source§

impl From<CastInst> for Operation

source§

fn from(inst: CastInst) -> Operation

Converts to this type from the input type.
source§

impl From<CeilInst> for Operation

source§

fn from(inst: CeilInst) -> Operation

Converts to this type from the input type.
source§

impl From<CheckNumericsInst> for Operation

source§

fn from(inst: CheckNumericsInst) -> Operation

Converts to this type from the input type.
source§

impl From<CheckNumericsV2Inst> for Operation

source§

fn from(inst: CheckNumericsV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CholeskyGradInst> for Operation

source§

fn from(inst: CholeskyGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<CholeskyInst> for Operation

source§

fn from(inst: CholeskyInst) -> Operation

Converts to this type from the input type.
source§

impl From<ChooseFastestBranchDatasetInst> for Operation

source§

fn from(inst: ChooseFastestBranchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ChooseFastestDatasetInst> for Operation

source§

fn from(inst: ChooseFastestDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ClipByValueInst> for Operation

source§

fn from(inst: ClipByValueInst) -> Operation

Converts to this type from the input type.
source§

impl From<CloseSummaryWriterInst> for Operation

source§

fn from(inst: CloseSummaryWriterInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollateTPUEmbeddingMemoryInst> for Operation

source§

fn from(inst: CollateTPUEmbeddingMemoryInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveAllToAllV2Inst> for Operation

source§

fn from(inst: CollectiveAllToAllV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveAllToAllV3Inst> for Operation

source§

fn from(inst: CollectiveAllToAllV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveAssignGroupV2Inst> for Operation

source§

fn from(inst: CollectiveAssignGroupV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveBcastRecvInst> for Operation

source§

fn from(inst: CollectiveBcastRecvInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveBcastRecvV2Inst> for Operation

source§

fn from(inst: CollectiveBcastRecvV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveBcastSendInst> for Operation

source§

fn from(inst: CollectiveBcastSendInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveBcastSendV2Inst> for Operation

source§

fn from(inst: CollectiveBcastSendV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveGatherInst> for Operation

source§

fn from(inst: CollectiveGatherInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveGatherV2Inst> for Operation

source§

fn from(inst: CollectiveGatherV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveInitializeCommunicatorInst> for Operation

source§

fn from(inst: CollectiveInitializeCommunicatorInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectivePermuteInst> for Operation

source§

fn from(inst: CollectivePermuteInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveReduceInst> for Operation

source§

fn from(inst: CollectiveReduceInst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveReduceScatterV2Inst> for Operation

source§

fn from(inst: CollectiveReduceScatterV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveReduceV2Inst> for Operation

source§

fn from(inst: CollectiveReduceV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CollectiveReduceV3Inst> for Operation

source§

fn from(inst: CollectiveReduceV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CombinedNonMaxSuppressionInst> for Operation

source§

fn from(inst: CombinedNonMaxSuppressionInst) -> Operation

Converts to this type from the input type.
source§

impl From<ComplexAbsInst> for Operation

source§

fn from(inst: ComplexAbsInst) -> Operation

Converts to this type from the input type.
source§

impl From<ComplexInst> for Operation

source§

fn from(inst: ComplexInst) -> Operation

Converts to this type from the input type.
source§

impl From<CompositeTensorVariantFromComponentsInst> for Operation

source§

fn from(inst: CompositeTensorVariantFromComponentsInst) -> Operation

Converts to this type from the input type.
source§

impl From<CompositeTensorVariantToComponentsInst> for Operation

source§

fn from(inst: CompositeTensorVariantToComponentsInst) -> Operation

Converts to this type from the input type.
source§

impl From<CompressElementInst> for Operation

source§

fn from(inst: CompressElementInst) -> Operation

Converts to this type from the input type.
source§

impl From<ComputeAccidentalHitsInst> for Operation

source§

fn from(inst: ComputeAccidentalHitsInst) -> Operation

Converts to this type from the input type.
source§

impl From<ComputeBatchSizeInst> for Operation

source§

fn from(inst: ComputeBatchSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<ComputeDedupDataTupleMaskInst> for Operation

source§

fn from(inst: ComputeDedupDataTupleMaskInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConcatInst> for Operation

source§

fn from(inst: ConcatInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConcatOffsetInst> for Operation

source§

fn from(inst: ConcatOffsetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConcatV2Inst> for Operation

source§

fn from(inst: ConcatV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ConcatenateDatasetInst> for Operation

source§

fn from(inst: ConcatenateDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConditionalAccumulatorInst> for Operation

source§

fn from(inst: ConditionalAccumulatorInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConfigureAndInitializeGlobalTPUInst> for Operation

source§

fn from(inst: ConfigureAndInitializeGlobalTPUInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConfigureDistributedTPUInst> for Operation

source§

fn from(inst: ConfigureDistributedTPUInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConfigureTPUEmbeddingHostInst> for Operation

source§

fn from(inst: ConfigureTPUEmbeddingHostInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConfigureTPUEmbeddingInst> for Operation

source§

fn from(inst: ConfigureTPUEmbeddingInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConfigureTPUEmbeddingMemoryInst> for Operation

source§

fn from(inst: ConfigureTPUEmbeddingMemoryInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConjInst> for Operation

source§

fn from(inst: ConjInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConjugateTransposeInst> for Operation

source§

fn from(inst: ConjugateTransposeInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConnectTPUEmbeddingHostsInst> for Operation

source§

fn from(inst: ConnectTPUEmbeddingHostsInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConstInst> for Operation

source§

fn from(inst: ConstInst) -> Operation

Converts to this type from the input type.
source§

impl From<ConsumeMutexLockInst> for Operation

source§

fn from(inst: ConsumeMutexLockInst) -> Operation

Converts to this type from the input type.
source§

impl From<ControlTriggerInst> for Operation

source§

fn from(inst: ControlTriggerInst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv2DBackpropFilterInst> for Operation

source§

fn from(inst: Conv2DBackpropFilterInst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv2DBackpropFilterV2Inst> for Operation

source§

fn from(inst: Conv2DBackpropFilterV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv2DBackpropInputInst> for Operation

source§

fn from(inst: Conv2DBackpropInputInst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv2DBackpropInputV2Inst> for Operation

source§

fn from(inst: Conv2DBackpropInputV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv2DInst> for Operation

source§

fn from(inst: Conv2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv3DBackpropFilterInst> for Operation

source§

fn from(inst: Conv3DBackpropFilterInst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv3DBackpropFilterV2Inst> for Operation

source§

fn from(inst: Conv3DBackpropFilterV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv3DBackpropInputInst> for Operation

source§

fn from(inst: Conv3DBackpropInputInst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv3DBackpropInputV2Inst> for Operation

source§

fn from(inst: Conv3DBackpropInputV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<Conv3DInst> for Operation

source§

fn from(inst: Conv3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<CopyHostInst> for Operation

source§

fn from(inst: CopyHostInst) -> Operation

Converts to this type from the input type.
source§

impl From<CopyInst> for Operation

source§

fn from(inst: CopyInst) -> Operation

Converts to this type from the input type.
source§

impl From<CopyToMeshGradInst> for Operation

source§

fn from(inst: CopyToMeshGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<CopyToMeshInst> for Operation

source§

fn from(inst: CopyToMeshInst) -> Operation

Converts to this type from the input type.
source§

impl From<CosInst> for Operation

source§

fn from(inst: CosInst) -> Operation

Converts to this type from the input type.
source§

impl From<CoshInst> for Operation

source§

fn from(inst: CoshInst) -> Operation

Converts to this type from the input type.
source§

impl From<CountUpToInst> for Operation

source§

fn from(inst: CountUpToInst) -> Operation

Converts to this type from the input type.
source§

impl From<CreateSummaryDbWriterInst> for Operation

source§

fn from(inst: CreateSummaryDbWriterInst) -> Operation

Converts to this type from the input type.
source§

impl From<CreateSummaryFileWriterInst> for Operation

source§

fn from(inst: CreateSummaryFileWriterInst) -> Operation

Converts to this type from the input type.
source§

impl From<CropAndResizeGradBoxesInst> for Operation

source§

fn from(inst: CropAndResizeGradBoxesInst) -> Operation

Converts to this type from the input type.
source§

impl From<CropAndResizeGradImageInst> for Operation

source§

fn from(inst: CropAndResizeGradImageInst) -> Operation

Converts to this type from the input type.
source§

impl From<CropAndResizeInst> for Operation

source§

fn from(inst: CropAndResizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<CrossInst> for Operation

source§

fn from(inst: CrossInst) -> Operation

Converts to this type from the input type.
source§

impl From<CrossReplicaSumInst> for Operation

source§

fn from(inst: CrossReplicaSumInst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNBackpropInst> for Operation

source§

fn from(inst: CudnnRNNBackpropInst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNBackpropV2Inst> for Operation

source§

fn from(inst: CudnnRNNBackpropV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNBackpropV3Inst> for Operation

source§

fn from(inst: CudnnRNNBackpropV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNCanonicalToParamsInst> for Operation

source§

fn from(inst: CudnnRNNCanonicalToParamsInst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNCanonicalToParamsV2Inst> for Operation

source§

fn from(inst: CudnnRNNCanonicalToParamsV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNInst> for Operation

source§

fn from(inst: CudnnRNNInst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNParamsSizeInst> for Operation

source§

fn from(inst: CudnnRNNParamsSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNParamsToCanonicalInst> for Operation

source§

fn from(inst: CudnnRNNParamsToCanonicalInst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNParamsToCanonicalV2Inst> for Operation

source§

fn from(inst: CudnnRNNParamsToCanonicalV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNV2Inst> for Operation

source§

fn from(inst: CudnnRNNV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CudnnRNNV3Inst> for Operation

source§

fn from(inst: CudnnRNNV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<CumprodInst> for Operation

source§

fn from(inst: CumprodInst) -> Operation

Converts to this type from the input type.
source§

impl From<CumsumInst> for Operation

source§

fn from(inst: CumsumInst) -> Operation

Converts to this type from the input type.
source§

impl From<CumulativeLogsumexpInst> for Operation

source§

fn from(inst: CumulativeLogsumexpInst) -> Operation

Converts to this type from the input type.
source§

impl From<DTensorRestoreV2Inst> for Operation

source§

fn from(inst: DTensorRestoreV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DTensorSetGlobalTPUArrayInst> for Operation

source§

fn from(inst: DTensorSetGlobalTPUArrayInst) -> Operation

Converts to this type from the input type.
source§

impl From<DataFormatDimMapInst> for Operation

source§

fn from(inst: DataFormatDimMapInst) -> Operation

Converts to this type from the input type.
source§

impl From<DataFormatVecPermuteInst> for Operation

source§

fn from(inst: DataFormatVecPermuteInst) -> Operation

Converts to this type from the input type.
source§

impl From<DataServiceDatasetInst> for Operation

source§

fn from(inst: DataServiceDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<DataServiceDatasetV2Inst> for Operation

source§

fn from(inst: DataServiceDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DataServiceDatasetV3Inst> for Operation

source§

fn from(inst: DataServiceDatasetV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DataServiceDatasetV4Inst> for Operation

source§

fn from(inst: DataServiceDatasetV4Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DatasetCardinalityInst> for Operation

source§

fn from(inst: DatasetCardinalityInst) -> Operation

Converts to this type from the input type.
source§

impl From<DatasetFromGraphInst> for Operation

source§

fn from(inst: DatasetFromGraphInst) -> Operation

Converts to this type from the input type.
source§

impl From<DatasetToGraphInst> for Operation

source§

fn from(inst: DatasetToGraphInst) -> Operation

Converts to this type from the input type.
source§

impl From<DatasetToGraphV2Inst> for Operation

source§

fn from(inst: DatasetToGraphV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DatasetToSingleElementInst> for Operation

source§

fn from(inst: DatasetToSingleElementInst) -> Operation

Converts to this type from the input type.
source§

impl From<DatasetToTFRecordInst> for Operation

source§

fn from(inst: DatasetToTFRecordInst) -> Operation

Converts to this type from the input type.
source§

impl From<DawsnInst> for Operation

source§

fn from(inst: DawsnInst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugGradientIdentityInst> for Operation

source§

fn from(inst: DebugGradientIdentityInst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugGradientRefIdentityInst> for Operation

source§

fn from(inst: DebugGradientRefIdentityInst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugIdentityInst> for Operation

source§

fn from(inst: DebugIdentityInst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugIdentityV2Inst> for Operation

source§

fn from(inst: DebugIdentityV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugIdentityV3Inst> for Operation

source§

fn from(inst: DebugIdentityV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugNanCountInst> for Operation

source§

fn from(inst: DebugNanCountInst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugNumericSummaryInst> for Operation

source§

fn from(inst: DebugNumericSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<DebugNumericSummaryV2Inst> for Operation

source§

fn from(inst: DebugNumericSummaryV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeAndCropJpegInst> for Operation

source§

fn from(inst: DecodeAndCropJpegInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeBase64Inst> for Operation

source§

fn from(inst: DecodeBase64Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeBmpInst> for Operation

source§

fn from(inst: DecodeBmpInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeCSVInst> for Operation

source§

fn from(inst: DecodeCSVInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeCompressedInst> for Operation

source§

fn from(inst: DecodeCompressedInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeGifInst> for Operation

source§

fn from(inst: DecodeGifInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeImageInst> for Operation

source§

fn from(inst: DecodeImageInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeJSONExampleInst> for Operation

source§

fn from(inst: DecodeJSONExampleInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeJpegInst> for Operation

source§

fn from(inst: DecodeJpegInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodePaddedRawInst> for Operation

source§

fn from(inst: DecodePaddedRawInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodePngInst> for Operation

source§

fn from(inst: DecodePngInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeProtoV2Inst> for Operation

source§

fn from(inst: DecodeProtoV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeRawInst> for Operation

source§

fn from(inst: DecodeRawInst) -> Operation

Converts to this type from the input type.
source§

impl From<DecodeWavInst> for Operation

source§

fn from(inst: DecodeWavInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeepCopyInst> for Operation

source§

fn from(inst: DeepCopyInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeleteIteratorInst> for Operation

source§

fn from(inst: DeleteIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeleteMemoryCacheInst> for Operation

source§

fn from(inst: DeleteMemoryCacheInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeleteMultiDeviceIteratorInst> for Operation

source§

fn from(inst: DeleteMultiDeviceIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeleteRandomSeedGeneratorInst> for Operation

source§

fn from(inst: DeleteRandomSeedGeneratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeleteSeedGeneratorInst> for Operation

source§

fn from(inst: DeleteSeedGeneratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeleteSessionTensorInst> for Operation

source§

fn from(inst: DeleteSessionTensorInst) -> Operation

Converts to this type from the input type.
source§

impl From<DenseBincountInst> for Operation

source§

fn from(inst: DenseBincountInst) -> Operation

Converts to this type from the input type.
source§

impl From<DenseCountSparseOutputInst> for Operation

source§

fn from(inst: DenseCountSparseOutputInst) -> Operation

Converts to this type from the input type.
source§

impl From<DenseToCSRSparseMatrixInst> for Operation

source§

fn from(inst: DenseToCSRSparseMatrixInst) -> Operation

Converts to this type from the input type.
source§

impl From<DenseToDenseSetOperationInst> for Operation

source§

fn from(inst: DenseToDenseSetOperationInst) -> Operation

Converts to this type from the input type.
source§

impl From<DenseToSparseBatchDatasetInst> for Operation

source§

fn from(inst: DenseToSparseBatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<DenseToSparseSetOperationInst> for Operation

source§

fn from(inst: DenseToSparseSetOperationInst) -> Operation

Converts to this type from the input type.
source§

impl From<DepthToSpaceInst> for Operation

source§

fn from(inst: DepthToSpaceInst) -> Operation

Converts to this type from the input type.
source§

impl From<DepthwiseConv2dNativeBackpropFilterInst> for Operation

source§

fn from(inst: DepthwiseConv2dNativeBackpropFilterInst) -> Operation

Converts to this type from the input type.
source§

impl From<DepthwiseConv2dNativeBackpropInputInst> for Operation

source§

fn from(inst: DepthwiseConv2dNativeBackpropInputInst) -> Operation

Converts to this type from the input type.
source§

impl From<DepthwiseConv2dNativeInst> for Operation

source§

fn from(inst: DepthwiseConv2dNativeInst) -> Operation

Converts to this type from the input type.
source§

impl From<DequantizeInst> for Operation

source§

fn from(inst: DequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeserializeIteratorInst> for Operation

source§

fn from(inst: DeserializeIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeserializeManySparseInst> for Operation

source§

fn from(inst: DeserializeManySparseInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeserializeSparseInst> for Operation

source§

fn from(inst: DeserializeSparseInst) -> Operation

Converts to this type from the input type.
source§

impl From<DestroyResourceOpInst> for Operation

source§

fn from(inst: DestroyResourceOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<DestroyTemporaryVariableInst> for Operation

source§

fn from(inst: DestroyTemporaryVariableInst) -> Operation

Converts to this type from the input type.
source§

impl From<DeviceIndexInst> for Operation

source§

fn from(inst: DeviceIndexInst) -> Operation

Converts to this type from the input type.
source§

impl From<DiagInst> for Operation

source§

fn from(inst: DiagInst) -> Operation

Converts to this type from the input type.
source§

impl From<DiagPartInst> for Operation

source§

fn from(inst: DiagPartInst) -> Operation

Converts to this type from the input type.
source§

impl From<DigammaInst> for Operation

source§

fn from(inst: DigammaInst) -> Operation

Converts to this type from the input type.
source§

impl From<Dilation2DBackpropFilterInst> for Operation

source§

fn from(inst: Dilation2DBackpropFilterInst) -> Operation

Converts to this type from the input type.
source§

impl From<Dilation2DBackpropInputInst> for Operation

source§

fn from(inst: Dilation2DBackpropInputInst) -> Operation

Converts to this type from the input type.
source§

impl From<Dilation2DInst> for Operation

source§

fn from(inst: Dilation2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<DirectedInterleaveDatasetInst> for Operation

source§

fn from(inst: DirectedInterleaveDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<DisableCopyOnReadInst> for Operation

source§

fn from(inst: DisableCopyOnReadInst) -> Operation

Converts to this type from the input type.
source§

impl From<DistributedSaveInst> for Operation

source§

fn from(inst: DistributedSaveInst) -> Operation

Converts to this type from the input type.
source§

impl From<DivInst> for Operation

source§

fn from(inst: DivInst) -> Operation

Converts to this type from the input type.
source§

impl From<DivNoNanInst> for Operation

source§

fn from(inst: DivNoNanInst) -> Operation

Converts to this type from the input type.
source§

impl From<DrawBoundingBoxesInst> for Operation

source§

fn from(inst: DrawBoundingBoxesInst) -> Operation

Converts to this type from the input type.
source§

impl From<DrawBoundingBoxesV2Inst> for Operation

source§

fn from(inst: DrawBoundingBoxesV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<DummyIterationCounterInst> for Operation

source§

fn from(inst: DummyIterationCounterInst) -> Operation

Converts to this type from the input type.
source§

impl From<DummyMemoryCacheInst> for Operation

source§

fn from(inst: DummyMemoryCacheInst) -> Operation

Converts to this type from the input type.
source§

impl From<DummySeedGeneratorInst> for Operation

source§

fn from(inst: DummySeedGeneratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<DynamicEnqueueTPUEmbeddingArbitraryTensorBatchInst> for Operation

source§

fn from(inst: DynamicEnqueueTPUEmbeddingArbitraryTensorBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<DynamicPartitionInst> for Operation

source§

fn from(inst: DynamicPartitionInst) -> Operation

Converts to this type from the input type.
source§

impl From<DynamicStitchInst> for Operation

source§

fn from(inst: DynamicStitchInst) -> Operation

Converts to this type from the input type.
source§

impl From<EagerPyFuncInst> for Operation

source§

fn from(inst: EagerPyFuncInst) -> Operation

Converts to this type from the input type.
source§

impl From<EditDistanceInst> for Operation

source§

fn from(inst: EditDistanceInst) -> Operation

Converts to this type from the input type.
source§

impl From<EigInst> for Operation

source§

fn from(inst: EigInst) -> Operation

Converts to this type from the input type.
source§

impl From<EinsumInst> for Operation

source§

fn from(inst: EinsumInst) -> Operation

Converts to this type from the input type.
source§

impl From<EluGradInst> for Operation

source§

fn from(inst: EluGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<EluInst> for Operation

source§

fn from(inst: EluInst) -> Operation

Converts to this type from the input type.
source§

impl From<EmptyInst> for Operation

source§

fn from(inst: EmptyInst) -> Operation

Converts to this type from the input type.
source§

impl From<EmptyTensorListInst> for Operation

source§

fn from(inst: EmptyTensorListInst) -> Operation

Converts to this type from the input type.
source§

impl From<EmptyTensorMapInst> for Operation

source§

fn from(inst: EmptyTensorMapInst) -> Operation

Converts to this type from the input type.
source§

impl From<EncodeBase64Inst> for Operation

source§

fn from(inst: EncodeBase64Inst) -> Operation

Converts to this type from the input type.
source§

impl From<EncodeJpegInst> for Operation

source§

fn from(inst: EncodeJpegInst) -> Operation

Converts to this type from the input type.
source§

impl From<EncodeJpegVariableQualityInst> for Operation

source§

fn from(inst: EncodeJpegVariableQualityInst) -> Operation

Converts to this type from the input type.
source§

impl From<EncodePngInst> for Operation

source§

fn from(inst: EncodePngInst) -> Operation

Converts to this type from the input type.
source§

impl From<EncodeProtoInst> for Operation

source§

fn from(inst: EncodeProtoInst) -> Operation

Converts to this type from the input type.
source§

impl From<EncodeWavInst> for Operation

source§

fn from(inst: EncodeWavInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnqueueTPUEmbeddingArbitraryTensorBatchInst> for Operation

source§

fn from(inst: EnqueueTPUEmbeddingArbitraryTensorBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnqueueTPUEmbeddingBatchInst> for Operation

source§

fn from(inst: EnqueueTPUEmbeddingBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnqueueTPUEmbeddingIntegerBatchInst> for Operation

source§

fn from(inst: EnqueueTPUEmbeddingIntegerBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnqueueTPUEmbeddingRaggedTensorBatchInst> for Operation

source§

fn from(inst: EnqueueTPUEmbeddingRaggedTensorBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnqueueTPUEmbeddingSparseBatchInst> for Operation

source§

fn from(inst: EnqueueTPUEmbeddingSparseBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnqueueTPUEmbeddingSparseTensorBatchInst> for Operation

source§

fn from(inst: EnqueueTPUEmbeddingSparseTensorBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnsureShapeInst> for Operation

source§

fn from(inst: EnsureShapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<EnterInst> for Operation

source§

fn from(inst: EnterInst) -> Operation

Converts to this type from the input type.
source§

impl From<EqualInst> for Operation

source§

fn from(inst: EqualInst) -> Operation

Converts to this type from the input type.
source§

impl From<ErfInst> for Operation

source§

fn from(inst: ErfInst) -> Operation

Converts to this type from the input type.
source§

impl From<ErfcInst> for Operation

source§

fn from(inst: ErfcInst) -> Operation

Converts to this type from the input type.
source§

impl From<ErfinvInst> for Operation

source§

fn from(inst: ErfinvInst) -> Operation

Converts to this type from the input type.
source§

impl From<EuclideanNormInst> for Operation

source§

fn from(inst: EuclideanNormInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExecuteTPUEmbeddingPartitionerInst> for Operation

source§

fn from(inst: ExecuteTPUEmbeddingPartitionerInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExitInst> for Operation

source§

fn from(inst: ExitInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExpInst> for Operation

source§

fn from(inst: ExpInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExpandDimsInst> for Operation

source§

fn from(inst: ExpandDimsInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalAssertNextDatasetInst> for Operation

source§

fn from(inst: ExperimentalAssertNextDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalAutoShardDatasetInst> for Operation

source§

fn from(inst: ExperimentalAutoShardDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalBytesProducedStatsDatasetInst> for Operation

source§

fn from(inst: ExperimentalBytesProducedStatsDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalCSVDatasetInst> for Operation

source§

fn from(inst: ExperimentalCSVDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalChooseFastestDatasetInst> for Operation

source§

fn from(inst: ExperimentalChooseFastestDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalDatasetCardinalityInst> for Operation

source§

fn from(inst: ExperimentalDatasetCardinalityInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalDatasetToTFRecordInst> for Operation

source§

fn from(inst: ExperimentalDatasetToTFRecordInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalDenseToSparseBatchDatasetInst> for Operation

source§

fn from(inst: ExperimentalDenseToSparseBatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalDirectedInterleaveDatasetInst> for Operation

source§

fn from(inst: ExperimentalDirectedInterleaveDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalGroupByReducerDatasetInst> for Operation

source§

fn from(inst: ExperimentalGroupByReducerDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalGroupByWindowDatasetInst> for Operation

source§

fn from(inst: ExperimentalGroupByWindowDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalIgnoreErrorsDatasetInst> for Operation

source§

fn from(inst: ExperimentalIgnoreErrorsDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalIteratorGetDeviceInst> for Operation

source§

fn from(inst: ExperimentalIteratorGetDeviceInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalLMDBDatasetInst> for Operation

source§

fn from(inst: ExperimentalLMDBDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalLatencyStatsDatasetInst> for Operation

source§

fn from(inst: ExperimentalLatencyStatsDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalMapAndBatchDatasetInst> for Operation

source§

fn from(inst: ExperimentalMapAndBatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalMapDatasetInst> for Operation

source§

fn from(inst: ExperimentalMapDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalMatchingFilesDatasetInst> for Operation

source§

fn from(inst: ExperimentalMatchingFilesDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalMaxIntraOpParallelismDatasetInst> for Operation

source§

fn from(inst: ExperimentalMaxIntraOpParallelismDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalNonSerializableDatasetInst> for Operation

source§

fn from(inst: ExperimentalNonSerializableDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalParallelInterleaveDatasetInst> for Operation

source§

fn from(inst: ExperimentalParallelInterleaveDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalParseExampleDatasetInst> for Operation

source§

fn from(inst: ExperimentalParseExampleDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalPrivateThreadPoolDatasetInst> for Operation

source§

fn from(inst: ExperimentalPrivateThreadPoolDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalRandomDatasetInst> for Operation

source§

fn from(inst: ExperimentalRandomDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalRebatchDatasetInst> for Operation

source§

fn from(inst: ExperimentalRebatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalScanDatasetInst> for Operation

source§

fn from(inst: ExperimentalScanDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalSetStatsAggregatorDatasetInst> for Operation

source§

fn from(inst: ExperimentalSetStatsAggregatorDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalSleepDatasetInst> for Operation

source§

fn from(inst: ExperimentalSleepDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalSlidingWindowDatasetInst> for Operation

source§

fn from(inst: ExperimentalSlidingWindowDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalSqlDatasetInst> for Operation

source§

fn from(inst: ExperimentalSqlDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalStatsAggregatorHandleInst> for Operation

source§

fn from(inst: ExperimentalStatsAggregatorHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalStatsAggregatorSummaryInst> for Operation

source§

fn from(inst: ExperimentalStatsAggregatorSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalTakeWhileDatasetInst> for Operation

source§

fn from(inst: ExperimentalTakeWhileDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalThreadPoolDatasetInst> for Operation

source§

fn from(inst: ExperimentalThreadPoolDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalThreadPoolHandleInst> for Operation

source§

fn from(inst: ExperimentalThreadPoolHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalUnbatchDatasetInst> for Operation

source§

fn from(inst: ExperimentalUnbatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExperimentalUniqueDatasetInst> for Operation

source§

fn from(inst: ExperimentalUniqueDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExpintInst> for Operation

source§

fn from(inst: ExpintInst) -> Operation

Converts to this type from the input type.
source§

impl From<Expm1Inst> for Operation

source§

fn from(inst: Expm1Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ExtractGlimpseInst> for Operation

source§

fn from(inst: ExtractGlimpseInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExtractGlimpseV2Inst> for Operation

source§

fn from(inst: ExtractGlimpseV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ExtractImagePatchesInst> for Operation

source§

fn from(inst: ExtractImagePatchesInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExtractJpegShapeInst> for Operation

source§

fn from(inst: ExtractJpegShapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<ExtractVolumePatchesInst> for Operation

source§

fn from(inst: ExtractVolumePatchesInst) -> Operation

Converts to this type from the input type.
source§

impl From<FFT2DInst> for Operation

source§

fn from(inst: FFT2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<FFT3DInst> for Operation

source§

fn from(inst: FFT3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<FFTInst> for Operation

source§

fn from(inst: FFTInst) -> Operation

Converts to this type from the input type.
source§

impl From<FIFOQueueInst> for Operation

source§

fn from(inst: FIFOQueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<FIFOQueueV2Inst> for Operation

source§

fn from(inst: FIFOQueueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<FactInst> for Operation

source§

fn from(inst: FactInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeParamInst> for Operation

source§

fn from(inst: FakeParamInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeQuantWithMinMaxArgsGradientInst> for Operation

source§

fn from(inst: FakeQuantWithMinMaxArgsGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeQuantWithMinMaxArgsInst> for Operation

source§

fn from(inst: FakeQuantWithMinMaxArgsInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeQuantWithMinMaxVarsGradientInst> for Operation

source§

fn from(inst: FakeQuantWithMinMaxVarsGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeQuantWithMinMaxVarsInst> for Operation

source§

fn from(inst: FakeQuantWithMinMaxVarsInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeQuantWithMinMaxVarsPerChannelGradientInst> for Operation

source§

fn from(inst: FakeQuantWithMinMaxVarsPerChannelGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeQuantWithMinMaxVarsPerChannelInst> for Operation

source§

fn from(inst: FakeQuantWithMinMaxVarsPerChannelInst) -> Operation

Converts to this type from the input type.
source§

impl From<FakeQueueInst> for Operation

source§

fn from(inst: FakeQueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<FileSystemSetConfigurationInst> for Operation

source§

fn from(inst: FileSystemSetConfigurationInst) -> Operation

Converts to this type from the input type.
source§

impl From<FillInst> for Operation

source§

fn from(inst: FillInst) -> Operation

Converts to this type from the input type.
source§

impl From<FilterByLastComponentDatasetInst> for Operation

source§

fn from(inst: FilterByLastComponentDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<FilterDatasetInst> for Operation

source§

fn from(inst: FilterDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<FinalizeDatasetInst> for Operation

source§

fn from(inst: FinalizeDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<FinalizeTPUEmbeddingInst> for Operation

source§

fn from(inst: FinalizeTPUEmbeddingInst) -> Operation

Converts to this type from the input type.
source§

impl From<FingerprintInst> for Operation

source§

fn from(inst: FingerprintInst) -> Operation

Converts to this type from the input type.
source§

impl From<FixedLengthRecordDatasetInst> for Operation

source§

fn from(inst: FixedLengthRecordDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<FixedLengthRecordDatasetV2Inst> for Operation

source§

fn from(inst: FixedLengthRecordDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<FixedLengthRecordReaderInst> for Operation

source§

fn from(inst: FixedLengthRecordReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<FixedLengthRecordReaderV2Inst> for Operation

source§

fn from(inst: FixedLengthRecordReaderV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<FixedUnigramCandidateSamplerInst> for Operation

source§

fn from(inst: FixedUnigramCandidateSamplerInst) -> Operation

Converts to this type from the input type.
source§

impl From<FlatMapDatasetInst> for Operation

source§

fn from(inst: FlatMapDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<FloorDivInst> for Operation

source§

fn from(inst: FloorDivInst) -> Operation

Converts to this type from the input type.
source§

impl From<FloorInst> for Operation

source§

fn from(inst: FloorInst) -> Operation

Converts to this type from the input type.
source§

impl From<FloorModInst> for Operation

source§

fn from(inst: FloorModInst) -> Operation

Converts to this type from the input type.
source§

impl From<FlushSummaryWriterInst> for Operation

source§

fn from(inst: FlushSummaryWriterInst) -> Operation

Converts to this type from the input type.
source§

impl From<ForInst> for Operation

source§

fn from(inst: ForInst) -> Operation

Converts to this type from the input type.
source§

impl From<FractionalAvgPoolGradInst> for Operation

source§

fn from(inst: FractionalAvgPoolGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<FractionalAvgPoolInst> for Operation

source§

fn from(inst: FractionalAvgPoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<FractionalMaxPoolGradInst> for Operation

source§

fn from(inst: FractionalMaxPoolGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<FractionalMaxPoolInst> for Operation

source§

fn from(inst: FractionalMaxPoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<FresnelCosInst> for Operation

source§

fn from(inst: FresnelCosInst) -> Operation

Converts to this type from the input type.
source§

impl From<FresnelSinInst> for Operation

source§

fn from(inst: FresnelSinInst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedBatchNormGradInst> for Operation

source§

fn from(inst: FusedBatchNormGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedBatchNormGradV2Inst> for Operation

source§

fn from(inst: FusedBatchNormGradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedBatchNormGradV3Inst> for Operation

source§

fn from(inst: FusedBatchNormGradV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedBatchNormInst> for Operation

source§

fn from(inst: FusedBatchNormInst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedBatchNormV2Inst> for Operation

source§

fn from(inst: FusedBatchNormV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedBatchNormV3Inst> for Operation

source§

fn from(inst: FusedBatchNormV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedPadConv2DInst> for Operation

source§

fn from(inst: FusedPadConv2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<FusedResizeAndPadConv2DInst> for Operation

source§

fn from(inst: FusedResizeAndPadConv2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<GRUBlockCellGradInst> for Operation

source§

fn from(inst: GRUBlockCellGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<GRUBlockCellInst> for Operation

source§

fn from(inst: GRUBlockCellInst) -> Operation

Converts to this type from the input type.
source§

impl From<GatherInst> for Operation

source§

fn from(inst: GatherInst) -> Operation

Converts to this type from the input type.
source§

impl From<GatherNdInst> for Operation

source§

fn from(inst: GatherNdInst) -> Operation

Converts to this type from the input type.
source§

impl From<GatherV2Inst> for Operation

source§

fn from(inst: GatherV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<GenerateBoundingBoxProposalsInst> for Operation

source§

fn from(inst: GenerateBoundingBoxProposalsInst) -> Operation

Converts to this type from the input type.
source§

impl From<GenerateVocabRemappingInst> for Operation

source§

fn from(inst: GenerateVocabRemappingInst) -> Operation

Converts to this type from the input type.
source§

impl From<GeneratorDatasetInst> for Operation

source§

fn from(inst: GeneratorDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<GetElementAtIndexInst> for Operation

source§

fn from(inst: GetElementAtIndexInst) -> Operation

Converts to this type from the input type.
source§

impl From<GetOptionsInst> for Operation

source§

fn from(inst: GetOptionsInst) -> Operation

Converts to this type from the input type.
source§

impl From<GetSessionHandleInst> for Operation

source§

fn from(inst: GetSessionHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<GetSessionHandleV2Inst> for Operation

source§

fn from(inst: GetSessionHandleV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<GetSessionTensorInst> for Operation

source§

fn from(inst: GetSessionTensorInst) -> Operation

Converts to this type from the input type.
source§

impl From<GreaterEqualInst> for Operation

source§

fn from(inst: GreaterEqualInst) -> Operation

Converts to this type from the input type.
source§

impl From<GreaterInst> for Operation

source§

fn from(inst: GreaterInst) -> Operation

Converts to this type from the input type.
source§

impl From<GroupByReducerDatasetInst> for Operation

source§

fn from(inst: GroupByReducerDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<GroupByWindowDatasetInst> for Operation

source§

fn from(inst: GroupByWindowDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<GuaranteeConstInst> for Operation

source§

fn from(inst: GuaranteeConstInst) -> Operation

Converts to this type from the input type.
source§

impl From<HSVToRGBInst> for Operation

source§

fn from(inst: HSVToRGBInst) -> Operation

Converts to this type from the input type.
source§

impl From<HashTableInst> for Operation

source§

fn from(inst: HashTableInst) -> Operation

Converts to this type from the input type.
source§

impl From<HashTableV2Inst> for Operation

source§

fn from(inst: HashTableV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<HistogramFixedWidthInst> for Operation

source§

fn from(inst: HistogramFixedWidthInst) -> Operation

Converts to this type from the input type.
source§

impl From<HistogramSummaryInst> for Operation

source§

fn from(inst: HistogramSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<HostConstInst> for Operation

source§

fn from(inst: HostConstInst) -> Operation

Converts to this type from the input type.
source§

impl From<IFFT2DInst> for Operation

source§

fn from(inst: IFFT2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<IFFT3DInst> for Operation

source§

fn from(inst: IFFT3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<IFFTInst> for Operation

source§

fn from(inst: IFFTInst) -> Operation

Converts to this type from the input type.
source§

impl From<IRFFT2DInst> for Operation

source§

fn from(inst: IRFFT2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<IRFFT3DInst> for Operation

source§

fn from(inst: IRFFT3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<IRFFTInst> for Operation

source§

fn from(inst: IRFFTInst) -> Operation

Converts to this type from the input type.
source§

impl From<IdentityInst> for Operation

source§

fn from(inst: IdentityInst) -> Operation

Converts to this type from the input type.
source§

impl From<IdentityNInst> for Operation

source§

fn from(inst: IdentityNInst) -> Operation

Converts to this type from the input type.
source§

impl From<IdentityReaderInst> for Operation

source§

fn from(inst: IdentityReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<IdentityReaderV2Inst> for Operation

source§

fn from(inst: IdentityReaderV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<IfInst> for Operation

source§

fn from(inst: IfInst) -> Operation

Converts to this type from the input type.
source§

impl From<IgammaGradAInst> for Operation

source§

fn from(inst: IgammaGradAInst) -> Operation

Converts to this type from the input type.
source§

impl From<IgammaInst> for Operation

source§

fn from(inst: IgammaInst) -> Operation

Converts to this type from the input type.
source§

impl From<IgammacInst> for Operation

source§

fn from(inst: IgammacInst) -> Operation

Converts to this type from the input type.
source§

impl From<IgnoreErrorsDatasetInst> for Operation

source§

fn from(inst: IgnoreErrorsDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ImagInst> for Operation

source§

fn from(inst: ImagInst) -> Operation

Converts to this type from the input type.
source§

impl From<ImageProjectiveTransformV2Inst> for Operation

source§

fn from(inst: ImageProjectiveTransformV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ImageProjectiveTransformV3Inst> for Operation

source§

fn from(inst: ImageProjectiveTransformV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ImageSummaryInst> for Operation

source§

fn from(inst: ImageSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<ImmutableConstInst> for Operation

source§

fn from(inst: ImmutableConstInst) -> Operation

Converts to this type from the input type.
source§

impl From<ImportEventInst> for Operation

source§

fn from(inst: ImportEventInst) -> Operation

Converts to this type from the input type.
source§

impl From<InTopKInst> for Operation

source§

fn from(inst: InTopKInst) -> Operation

Converts to this type from the input type.
source§

impl From<InTopKV2Inst> for Operation

source§

fn from(inst: InTopKV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<InfeedDequeueInst> for Operation

source§

fn from(inst: InfeedDequeueInst) -> Operation

Converts to this type from the input type.
source§

impl From<InfeedDequeueTupleInst> for Operation

source§

fn from(inst: InfeedDequeueTupleInst) -> Operation

Converts to this type from the input type.
source§

impl From<InfeedEnqueueInst> for Operation

source§

fn from(inst: InfeedEnqueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<InfeedEnqueuePrelinearizedBufferInst> for Operation

source§

fn from(inst: InfeedEnqueuePrelinearizedBufferInst) -> Operation

Converts to this type from the input type.
source§

impl From<InfeedEnqueueTupleInst> for Operation

source§

fn from(inst: InfeedEnqueueTupleInst) -> Operation

Converts to this type from the input type.
source§

impl From<InitializeTableFromDatasetInst> for Operation

source§

fn from(inst: InitializeTableFromDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<InitializeTableFromTextFileInst> for Operation

source§

fn from(inst: InitializeTableFromTextFileInst) -> Operation

Converts to this type from the input type.
source§

impl From<InitializeTableFromTextFileV2Inst> for Operation

source§

fn from(inst: InitializeTableFromTextFileV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<InitializeTableInst> for Operation

source§

fn from(inst: InitializeTableInst) -> Operation

Converts to this type from the input type.
source§

impl From<InitializeTableV2Inst> for Operation

source§

fn from(inst: InitializeTableV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<InplaceAddInst> for Operation

source§

fn from(inst: InplaceAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<InplaceSubInst> for Operation

source§

fn from(inst: InplaceSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<InplaceUpdateInst> for Operation

source§

fn from(inst: InplaceUpdateInst) -> Operation

Converts to this type from the input type.
source§

impl From<InterleaveDatasetInst> for Operation

source§

fn from(inst: InterleaveDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<InvGradInst> for Operation

source§

fn from(inst: InvGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<InvInst> for Operation

source§

fn from(inst: InvInst) -> Operation

Converts to this type from the input type.
source§

impl From<InvertInst> for Operation

source§

fn from(inst: InvertInst) -> Operation

Converts to this type from the input type.
source§

impl From<InvertPermutationInst> for Operation

source§

fn from(inst: InvertPermutationInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsBoostedTreesEnsembleInitializedInst> for Operation

source§

fn from(inst: IsBoostedTreesEnsembleInitializedInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsBoostedTreesQuantileStreamResourceInitializedInst> for Operation

source§

fn from(inst: IsBoostedTreesQuantileStreamResourceInitializedInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsFiniteInst> for Operation

source§

fn from(inst: IsFiniteInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsInfInst> for Operation

source§

fn from(inst: IsInfInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsNanInst> for Operation

source§

fn from(inst: IsNanInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsTPUEmbeddingInitializedInst> for Operation

source§

fn from(inst: IsTPUEmbeddingInitializedInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsVariableInitializedInst> for Operation

source§

fn from(inst: IsVariableInitializedInst) -> Operation

Converts to this type from the input type.
source§

impl From<IsotonicRegressionInst> for Operation

source§

fn from(inst: IsotonicRegressionInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorFromStringHandleInst> for Operation

source§

fn from(inst: IteratorFromStringHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorFromStringHandleV2Inst> for Operation

source§

fn from(inst: IteratorFromStringHandleV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorGetDeviceInst> for Operation

source§

fn from(inst: IteratorGetDeviceInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorGetNextAsOptionalInst> for Operation

source§

fn from(inst: IteratorGetNextAsOptionalInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorGetNextInst> for Operation

source§

fn from(inst: IteratorGetNextInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorGetNextSyncInst> for Operation

source§

fn from(inst: IteratorGetNextSyncInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorInst> for Operation

source§

fn from(inst: IteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorToStringHandleInst> for Operation

source§

fn from(inst: IteratorToStringHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<IteratorV2Inst> for Operation

source§

fn from(inst: IteratorV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<KMC2ChainInitializationInst> for Operation

source§

fn from(inst: KMC2ChainInitializationInst) -> Operation

Converts to this type from the input type.
source§

impl From<KmeansPlusPlusInitializationInst> for Operation

source§

fn from(inst: KmeansPlusPlusInitializationInst) -> Operation

Converts to this type from the input type.
source§

impl From<KthOrderStatisticInst> for Operation

source§

fn from(inst: KthOrderStatisticInst) -> Operation

Converts to this type from the input type.
source§

impl From<L2LossInst> for Operation

source§

fn from(inst: L2LossInst) -> Operation

Converts to this type from the input type.
source§

impl From<LMDBDatasetInst> for Operation

source§

fn from(inst: LMDBDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<LMDBReaderInst> for Operation

source§

fn from(inst: LMDBReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<LRNGradInst> for Operation

source§

fn from(inst: LRNGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<LRNInst> for Operation

source§

fn from(inst: LRNInst) -> Operation

Converts to this type from the input type.
source§

impl From<LSTMBlockCellGradInst> for Operation

source§

fn from(inst: LSTMBlockCellGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<LSTMBlockCellInst> for Operation

source§

fn from(inst: LSTMBlockCellInst) -> Operation

Converts to this type from the input type.
source§

impl From<LatencyStatsDatasetInst> for Operation

source§

fn from(inst: LatencyStatsDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<LeakyReluGradInst> for Operation

source§

fn from(inst: LeakyReluGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<LeakyReluInst> for Operation

source§

fn from(inst: LeakyReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<LearnedUnigramCandidateSamplerInst> for Operation

source§

fn from(inst: LearnedUnigramCandidateSamplerInst) -> Operation

Converts to this type from the input type.
source§

impl From<LeftShiftInst> for Operation

source§

fn from(inst: LeftShiftInst) -> Operation

Converts to this type from the input type.
source§

impl From<LegacyParallelInterleaveDatasetV2Inst> for Operation

source§

fn from(inst: LegacyParallelInterleaveDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<LessEqualInst> for Operation

source§

fn from(inst: LessEqualInst) -> Operation

Converts to this type from the input type.
source§

impl From<LessInst> for Operation

source§

fn from(inst: LessInst) -> Operation

Converts to this type from the input type.
source§

impl From<LgammaInst> for Operation

source§

fn from(inst: LgammaInst) -> Operation

Converts to this type from the input type.
source§

impl From<LinSpaceInst> for Operation

source§

fn from(inst: LinSpaceInst) -> Operation

Converts to this type from the input type.
source§

impl From<ListDatasetInst> for Operation

source§

fn from(inst: ListDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ListDiffInst> for Operation

source§

fn from(inst: ListDiffInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadAllTPUEmbeddingParametersInst> for Operation

source§

fn from(inst: LoadAllTPUEmbeddingParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadAndRemapMatrixInst> for Operation

source§

fn from(inst: LoadAndRemapMatrixInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadDatasetInst> for Operation

source§

fn from(inst: LoadDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingADAMParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingADAMParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingAdadeltaParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingAdadeltaParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingAdagradMomentumParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingAdagradMomentumParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingAdagradParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingAdagradParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingCenteredRMSPropParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingCenteredRMSPropParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingFTRLParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingFTRLParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingFrequencyEstimatorParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingFrequencyEstimatorParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingMDLAdagradLightParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingMDLAdagradLightParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingMomentumParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingMomentumParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingProximalAdagradParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingProximalAdagradParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingProximalYogiParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingProximalYogiParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingRMSPropParametersInst> for Operation

source§

fn from(inst: LoadTPUEmbeddingRMSPropParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<LoadTPUEmbeddingStochasticGradientDescentParametersInst> for Operation

source§

fn from( inst: LoadTPUEmbeddingStochasticGradientDescentParametersInst ) -> Operation

Converts to this type from the input type.
source§

impl From<Log1pInst> for Operation

source§

fn from(inst: Log1pInst) -> Operation

Converts to this type from the input type.
source§

impl From<LogInst> for Operation

source§

fn from(inst: LogInst) -> Operation

Converts to this type from the input type.
source§

impl From<LogMatrixDeterminantInst> for Operation

source§

fn from(inst: LogMatrixDeterminantInst) -> Operation

Converts to this type from the input type.
source§

impl From<LogSoftmaxInst> for Operation

source§

fn from(inst: LogSoftmaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<LogUniformCandidateSamplerInst> for Operation

source§

fn from(inst: LogUniformCandidateSamplerInst) -> Operation

Converts to this type from the input type.
source§

impl From<LogicalAndInst> for Operation

source§

fn from(inst: LogicalAndInst) -> Operation

Converts to this type from the input type.
source§

impl From<LogicalNotInst> for Operation

source§

fn from(inst: LogicalNotInst) -> Operation

Converts to this type from the input type.
source§

impl From<LogicalOrInst> for Operation

source§

fn from(inst: LogicalOrInst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableExportInst> for Operation

source§

fn from(inst: LookupTableExportInst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableExportV2Inst> for Operation

source§

fn from(inst: LookupTableExportV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableFindInst> for Operation

source§

fn from(inst: LookupTableFindInst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableFindV2Inst> for Operation

source§

fn from(inst: LookupTableFindV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableImportInst> for Operation

source§

fn from(inst: LookupTableImportInst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableImportV2Inst> for Operation

source§

fn from(inst: LookupTableImportV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableInsertInst> for Operation

source§

fn from(inst: LookupTableInsertInst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableInsertV2Inst> for Operation

source§

fn from(inst: LookupTableInsertV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableRemoveV2Inst> for Operation

source§

fn from(inst: LookupTableRemoveV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableSizeInst> for Operation

source§

fn from(inst: LookupTableSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<LookupTableSizeV2Inst> for Operation

source§

fn from(inst: LookupTableSizeV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<LoopCondInst> for Operation

source§

fn from(inst: LoopCondInst) -> Operation

Converts to this type from the input type.
source§

impl From<LowerBoundInst> for Operation

source§

fn from(inst: LowerBoundInst) -> Operation

Converts to this type from the input type.
source§

impl From<LuInst> for Operation

source§

fn from(inst: LuInst) -> Operation

Converts to this type from the input type.
source§

impl From<MakeIteratorInst> for Operation

source§

fn from(inst: MakeIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<MakeUniqueInst> for Operation

source§

fn from(inst: MakeUniqueInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapAndBatchDatasetInst> for Operation

source§

fn from(inst: MapAndBatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapClearInst> for Operation

source§

fn from(inst: MapClearInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapDatasetInst> for Operation

source§

fn from(inst: MapDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapDefunInst> for Operation

source§

fn from(inst: MapDefunInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapIncompleteSizeInst> for Operation

source§

fn from(inst: MapIncompleteSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapPeekInst> for Operation

source§

fn from(inst: MapPeekInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapSizeInst> for Operation

source§

fn from(inst: MapSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapStageInst> for Operation

source§

fn from(inst: MapStageInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapUnstageInst> for Operation

source§

fn from(inst: MapUnstageInst) -> Operation

Converts to this type from the input type.
source§

impl From<MapUnstageNoKeyInst> for Operation

source§

fn from(inst: MapUnstageNoKeyInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatMulInst> for Operation

source§

fn from(inst: MatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatchingFilesDatasetInst> for Operation

source§

fn from(inst: MatchingFilesDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatchingFilesInst> for Operation

source§

fn from(inst: MatchingFilesInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixBandPartInst> for Operation

source§

fn from(inst: MatrixBandPartInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixDeterminantInst> for Operation

source§

fn from(inst: MatrixDeterminantInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixDiagInst> for Operation

source§

fn from(inst: MatrixDiagInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixDiagPartInst> for Operation

source§

fn from(inst: MatrixDiagPartInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixDiagPartV2Inst> for Operation

source§

fn from(inst: MatrixDiagPartV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixDiagPartV3Inst> for Operation

source§

fn from(inst: MatrixDiagPartV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixDiagV2Inst> for Operation

source§

fn from(inst: MatrixDiagV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixDiagV3Inst> for Operation

source§

fn from(inst: MatrixDiagV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixExponentialInst> for Operation

source§

fn from(inst: MatrixExponentialInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixInverseInst> for Operation

source§

fn from(inst: MatrixInverseInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixLogarithmInst> for Operation

source§

fn from(inst: MatrixLogarithmInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixSetDiagInst> for Operation

source§

fn from(inst: MatrixSetDiagInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixSetDiagV2Inst> for Operation

source§

fn from(inst: MatrixSetDiagV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixSetDiagV3Inst> for Operation

source§

fn from(inst: MatrixSetDiagV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixSolveInst> for Operation

source§

fn from(inst: MatrixSolveInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixSolveLsInst> for Operation

source§

fn from(inst: MatrixSolveLsInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixSquareRootInst> for Operation

source§

fn from(inst: MatrixSquareRootInst) -> Operation

Converts to this type from the input type.
source§

impl From<MatrixTriangularSolveInst> for Operation

source§

fn from(inst: MatrixTriangularSolveInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxInst> for Operation

source§

fn from(inst: MaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxIntraOpParallelismDatasetInst> for Operation

source§

fn from(inst: MaxIntraOpParallelismDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPool3DGradGradInst> for Operation

source§

fn from(inst: MaxPool3DGradGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPool3DGradInst> for Operation

source§

fn from(inst: MaxPool3DGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPool3DInst> for Operation

source§

fn from(inst: MaxPool3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolGradGradInst> for Operation

source§

fn from(inst: MaxPoolGradGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolGradGradV2Inst> for Operation

source§

fn from(inst: MaxPoolGradGradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolGradGradWithArgmaxInst> for Operation

source§

fn from(inst: MaxPoolGradGradWithArgmaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolGradInst> for Operation

source§

fn from(inst: MaxPoolGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolGradV2Inst> for Operation

source§

fn from(inst: MaxPoolGradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolGradWithArgmaxInst> for Operation

source§

fn from(inst: MaxPoolGradWithArgmaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolInst> for Operation

source§

fn from(inst: MaxPoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolV2Inst> for Operation

source§

fn from(inst: MaxPoolV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MaxPoolWithArgmaxInst> for Operation

source§

fn from(inst: MaxPoolWithArgmaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<MaximumInst> for Operation

source§

fn from(inst: MaximumInst) -> Operation

Converts to this type from the input type.
source§

impl From<MeanInst> for Operation

source§

fn from(inst: MeanInst) -> Operation

Converts to this type from the input type.
source§

impl From<MergeDedupDataInst> for Operation

source§

fn from(inst: MergeDedupDataInst) -> Operation

Converts to this type from the input type.
source§

impl From<MergeInst> for Operation

source§

fn from(inst: MergeInst) -> Operation

Converts to this type from the input type.
source§

impl From<MergeSummaryInst> for Operation

source§

fn from(inst: MergeSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<MergeV2CheckpointsInst> for Operation

source§

fn from(inst: MergeV2CheckpointsInst) -> Operation

Converts to this type from the input type.
source§

impl From<MfccInst> for Operation

source§

fn from(inst: MfccInst) -> Operation

Converts to this type from the input type.
source§

impl From<MinInst> for Operation

source§

fn from(inst: MinInst) -> Operation

Converts to this type from the input type.
source§

impl From<MinimumInst> for Operation

source§

fn from(inst: MinimumInst) -> Operation

Converts to this type from the input type.
source§

impl From<MirrorPadGradInst> for Operation

source§

fn from(inst: MirrorPadGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<MirrorPadInst> for Operation

source§

fn from(inst: MirrorPadInst) -> Operation

Converts to this type from the input type.
source§

impl From<MlirPassthroughOpInst> for Operation

source§

fn from(inst: MlirPassthroughOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<ModInst> for Operation

source§

fn from(inst: ModInst) -> Operation

Converts to this type from the input type.
source§

impl From<ModelDatasetInst> for Operation

source§

fn from(inst: ModelDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<MulInst> for Operation

source§

fn from(inst: MulInst) -> Operation

Converts to this type from the input type.
source§

impl From<MulNoNanInst> for Operation

source§

fn from(inst: MulNoNanInst) -> Operation

Converts to this type from the input type.
source§

impl From<MultiDeviceIteratorFromStringHandleInst> for Operation

source§

fn from(inst: MultiDeviceIteratorFromStringHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<MultiDeviceIteratorGetNextFromShardInst> for Operation

source§

fn from(inst: MultiDeviceIteratorGetNextFromShardInst) -> Operation

Converts to this type from the input type.
source§

impl From<MultiDeviceIteratorInitInst> for Operation

source§

fn from(inst: MultiDeviceIteratorInitInst) -> Operation

Converts to this type from the input type.
source§

impl From<MultiDeviceIteratorInst> for Operation

source§

fn from(inst: MultiDeviceIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<MultiDeviceIteratorToStringHandleInst> for Operation

source§

fn from(inst: MultiDeviceIteratorToStringHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<MultinomialInst> for Operation

source§

fn from(inst: MultinomialInst) -> Operation

Converts to this type from the input type.
source§

impl From<MutableDenseHashTableInst> for Operation

source§

fn from(inst: MutableDenseHashTableInst) -> Operation

Converts to this type from the input type.
source§

impl From<MutableDenseHashTableV2Inst> for Operation

source§

fn from(inst: MutableDenseHashTableV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MutableHashTableInst> for Operation

source§

fn from(inst: MutableHashTableInst) -> Operation

Converts to this type from the input type.
source§

impl From<MutableHashTableOfTensorsInst> for Operation

source§

fn from(inst: MutableHashTableOfTensorsInst) -> Operation

Converts to this type from the input type.
source§

impl From<MutableHashTableOfTensorsV2Inst> for Operation

source§

fn from(inst: MutableHashTableOfTensorsV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MutableHashTableV2Inst> for Operation

source§

fn from(inst: MutableHashTableV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<MutexLockInst> for Operation

source§

fn from(inst: MutexLockInst) -> Operation

Converts to this type from the input type.
source§

impl From<MutexV2Inst> for Operation

source§

fn from(inst: MutexV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<NcclAllReduceInst> for Operation

source§

fn from(inst: NcclAllReduceInst) -> Operation

Converts to this type from the input type.
source§

impl From<NcclBroadcastInst> for Operation

source§

fn from(inst: NcclBroadcastInst) -> Operation

Converts to this type from the input type.
source§

impl From<NcclReduceInst> for Operation

source§

fn from(inst: NcclReduceInst) -> Operation

Converts to this type from the input type.
source§

impl From<NdtriInst> for Operation

source§

fn from(inst: NdtriInst) -> Operation

Converts to this type from the input type.
source§

impl From<NearestNeighborsInst> for Operation

source§

fn from(inst: NearestNeighborsInst) -> Operation

Converts to this type from the input type.
source§

impl From<NegInst> for Operation

source§

fn from(inst: NegInst) -> Operation

Converts to this type from the input type.
source§

impl From<NegTrainInst> for Operation

source§

fn from(inst: NegTrainInst) -> Operation

Converts to this type from the input type.
source§

impl From<NextAfterInst> for Operation

source§

fn from(inst: NextAfterInst) -> Operation

Converts to this type from the input type.
source§

impl From<NextIterationInst> for Operation

source§

fn from(inst: NextIterationInst) -> Operation

Converts to this type from the input type.
source§

impl From<NoOpInst> for Operation

source§

fn from(inst: NoOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<NonDeterministicIntsInst> for Operation

source§

fn from(inst: NonDeterministicIntsInst) -> Operation

Converts to this type from the input type.
source§

impl From<NonMaxSuppressionInst> for Operation

source§

fn from(inst: NonMaxSuppressionInst) -> Operation

Converts to this type from the input type.
source§

impl From<NonMaxSuppressionV2Inst> for Operation

source§

fn from(inst: NonMaxSuppressionV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<NonMaxSuppressionV3Inst> for Operation

source§

fn from(inst: NonMaxSuppressionV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<NonMaxSuppressionV4Inst> for Operation

source§

fn from(inst: NonMaxSuppressionV4Inst) -> Operation

Converts to this type from the input type.
source§

impl From<NonMaxSuppressionV5Inst> for Operation

source§

fn from(inst: NonMaxSuppressionV5Inst) -> Operation

Converts to this type from the input type.
source§

impl From<NonMaxSuppressionWithOverlapsInst> for Operation

source§

fn from(inst: NonMaxSuppressionWithOverlapsInst) -> Operation

Converts to this type from the input type.
source§

impl From<NonSerializableDatasetInst> for Operation

source§

fn from(inst: NonSerializableDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<NotEqualInst> for Operation

source§

fn from(inst: NotEqualInst) -> Operation

Converts to this type from the input type.
source§

impl From<NthElementInst> for Operation

source§

fn from(inst: NthElementInst) -> Operation

Converts to this type from the input type.
source§

impl From<OneHotInst> for Operation

source§

fn from(inst: OneHotInst) -> Operation

Converts to this type from the input type.
source§

impl From<OneShotIteratorInst> for Operation

source§

fn from(inst: OneShotIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<OnesLikeInst> for Operation

source§

fn from(inst: OnesLikeInst) -> Operation

Converts to this type from the input type.
source§

impl From<Operation> for Output

source§

fn from(operation: Operation) -> Output

Creates an Output for index 0.

source§

impl From<OptimizeDatasetInst> for Operation

source§

fn from(inst: OptimizeDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<OptimizeDatasetV2Inst> for Operation

source§

fn from(inst: OptimizeDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<OptionalFromValueInst> for Operation

source§

fn from(inst: OptionalFromValueInst) -> Operation

Converts to this type from the input type.
source§

impl From<OptionalGetValueInst> for Operation

source§

fn from(inst: OptionalGetValueInst) -> Operation

Converts to this type from the input type.
source§

impl From<OptionalHasValueInst> for Operation

source§

fn from(inst: OptionalHasValueInst) -> Operation

Converts to this type from the input type.
source§

impl From<OptionalNoneInst> for Operation

source§

fn from(inst: OptionalNoneInst) -> Operation

Converts to this type from the input type.
source§

impl From<OptionsDatasetInst> for Operation

source§

fn from(inst: OptionsDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<OrderedMapClearInst> for Operation

source§

fn from(inst: OrderedMapClearInst) -> Operation

Converts to this type from the input type.
source§

impl From<OrderedMapIncompleteSizeInst> for Operation

source§

fn from(inst: OrderedMapIncompleteSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<OrderedMapPeekInst> for Operation

source§

fn from(inst: OrderedMapPeekInst) -> Operation

Converts to this type from the input type.
source§

impl From<OrderedMapSizeInst> for Operation

source§

fn from(inst: OrderedMapSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<OrderedMapStageInst> for Operation

source§

fn from(inst: OrderedMapStageInst) -> Operation

Converts to this type from the input type.
source§

impl From<OrderedMapUnstageInst> for Operation

source§

fn from(inst: OrderedMapUnstageInst) -> Operation

Converts to this type from the input type.
source§

impl From<OrderedMapUnstageNoKeyInst> for Operation

source§

fn from(inst: OrderedMapUnstageNoKeyInst) -> Operation

Converts to this type from the input type.
source§

impl From<OutfeedDequeueInst> for Operation

source§

fn from(inst: OutfeedDequeueInst) -> Operation

Converts to this type from the input type.
source§

impl From<OutfeedDequeueTupleInst> for Operation

source§

fn from(inst: OutfeedDequeueTupleInst) -> Operation

Converts to this type from the input type.
source§

impl From<OutfeedDequeueTupleV2Inst> for Operation

source§

fn from(inst: OutfeedDequeueTupleV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<OutfeedDequeueV2Inst> for Operation

source§

fn from(inst: OutfeedDequeueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<OutfeedEnqueueInst> for Operation

source§

fn from(inst: OutfeedEnqueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<OutfeedEnqueueTupleInst> for Operation

source§

fn from(inst: OutfeedEnqueueTupleInst) -> Operation

Converts to this type from the input type.
source§

impl From<PackInst> for Operation

source§

fn from(inst: PackInst) -> Operation

Converts to this type from the input type.
source§

impl From<PadInst> for Operation

source§

fn from(inst: PadInst) -> Operation

Converts to this type from the input type.
source§

impl From<PadV2Inst> for Operation

source§

fn from(inst: PadV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<PaddedBatchDatasetInst> for Operation

source§

fn from(inst: PaddedBatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<PaddedBatchDatasetV2Inst> for Operation

source§

fn from(inst: PaddedBatchDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<PaddingFIFOQueueInst> for Operation

source§

fn from(inst: PaddingFIFOQueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<PaddingFIFOQueueV2Inst> for Operation

source§

fn from(inst: PaddingFIFOQueueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelBatchDatasetInst> for Operation

source§

fn from(inst: ParallelBatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelConcatInst> for Operation

source§

fn from(inst: ParallelConcatInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelDynamicStitchInst> for Operation

source§

fn from(inst: ParallelDynamicStitchInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelFilterDatasetInst> for Operation

source§

fn from(inst: ParallelFilterDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelInterleaveDatasetInst> for Operation

source§

fn from(inst: ParallelInterleaveDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelInterleaveDatasetV2Inst> for Operation

source§

fn from(inst: ParallelInterleaveDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelInterleaveDatasetV3Inst> for Operation

source§

fn from(inst: ParallelInterleaveDatasetV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelInterleaveDatasetV4Inst> for Operation

source§

fn from(inst: ParallelInterleaveDatasetV4Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelMapDatasetInst> for Operation

source§

fn from(inst: ParallelMapDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParallelMapDatasetV2Inst> for Operation

source§

fn from(inst: ParallelMapDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParameterizedTruncatedNormalInst> for Operation

source§

fn from(inst: ParameterizedTruncatedNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseExampleDatasetInst> for Operation

source§

fn from(inst: ParseExampleDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseExampleDatasetV2Inst> for Operation

source§

fn from(inst: ParseExampleDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseExampleInst> for Operation

source§

fn from(inst: ParseExampleInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseExampleV2Inst> for Operation

source§

fn from(inst: ParseExampleV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseSequenceExampleInst> for Operation

source§

fn from(inst: ParseSequenceExampleInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseSequenceExampleV2Inst> for Operation

source§

fn from(inst: ParseSequenceExampleV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseSingleExampleInst> for Operation

source§

fn from(inst: ParseSingleExampleInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseSingleSequenceExampleInst> for Operation

source§

fn from(inst: ParseSingleSequenceExampleInst) -> Operation

Converts to this type from the input type.
source§

impl From<ParseTensorInst> for Operation

source§

fn from(inst: ParseTensorInst) -> Operation

Converts to this type from the input type.
source§

impl From<PartitionedCallInst> for Operation

source§

fn from(inst: PartitionedCallInst) -> Operation

Converts to this type from the input type.
source§

impl From<PlaceholderInst> for Operation

source§

fn from(inst: PlaceholderInst) -> Operation

Converts to this type from the input type.
source§

impl From<PlaceholderV2Inst> for Operation

source§

fn from(inst: PlaceholderV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<PlaceholderWithDefaultInst> for Operation

source§

fn from(inst: PlaceholderWithDefaultInst) -> Operation

Converts to this type from the input type.
source§

impl From<PolygammaInst> for Operation

source§

fn from(inst: PolygammaInst) -> Operation

Converts to this type from the input type.
source§

impl From<PopulationCountInst> for Operation

source§

fn from(inst: PopulationCountInst) -> Operation

Converts to this type from the input type.
source§

impl From<PowInst> for Operation

source§

fn from(inst: PowInst) -> Operation

Converts to this type from the input type.
source§

impl From<PrefetchDatasetInst> for Operation

source§

fn from(inst: PrefetchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<PrelinearizeInst> for Operation

source§

fn from(inst: PrelinearizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<PrelinearizeTupleInst> for Operation

source§

fn from(inst: PrelinearizeTupleInst) -> Operation

Converts to this type from the input type.
source§

impl From<PreventGradientInst> for Operation

source§

fn from(inst: PreventGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<PrintInst> for Operation

source§

fn from(inst: PrintInst) -> Operation

Converts to this type from the input type.
source§

impl From<PrintV2Inst> for Operation

source§

fn from(inst: PrintV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<PriorityQueueInst> for Operation

source§

fn from(inst: PriorityQueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<PriorityQueueV2Inst> for Operation

source§

fn from(inst: PriorityQueueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<PrivateThreadPoolDatasetInst> for Operation

source§

fn from(inst: PrivateThreadPoolDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ProdInst> for Operation

source§

fn from(inst: ProdInst) -> Operation

Converts to this type from the input type.
source§

impl From<PyFuncInst> for Operation

source§

fn from(inst: PyFuncInst) -> Operation

Converts to this type from the input type.
source§

impl From<PyFuncStatelessInst> for Operation

source§

fn from(inst: PyFuncStatelessInst) -> Operation

Converts to this type from the input type.
source§

impl From<QrInst> for Operation

source§

fn from(inst: QrInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizeAndDequantizeInst> for Operation

source§

fn from(inst: QuantizeAndDequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizeAndDequantizeV2Inst> for Operation

source§

fn from(inst: QuantizeAndDequantizeV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizeAndDequantizeV3Inst> for Operation

source§

fn from(inst: QuantizeAndDequantizeV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizeAndDequantizeV4GradInst> for Operation

source§

fn from(inst: QuantizeAndDequantizeV4GradInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizeAndDequantizeV4Inst> for Operation

source§

fn from(inst: QuantizeAndDequantizeV4Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizeDownAndShrinkRangeInst> for Operation

source§

fn from(inst: QuantizeDownAndShrinkRangeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizeV2Inst> for Operation

source§

fn from(inst: QuantizeV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedAddInst> for Operation

source§

fn from(inst: QuantizedAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedAvgPoolInst> for Operation

source§

fn from(inst: QuantizedAvgPoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedBatchNormWithGlobalNormalizationInst> for Operation

source§

fn from(inst: QuantizedBatchNormWithGlobalNormalizationInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedBiasAddInst> for Operation

source§

fn from(inst: QuantizedBiasAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConcatInst> for Operation

source§

fn from(inst: QuantizedConcatInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DAndReluAndRequantizeInst> for Operation

source§

fn from(inst: QuantizedConv2DAndReluAndRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DAndReluInst> for Operation

source§

fn from(inst: QuantizedConv2DAndReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DAndRequantizeInst> for Operation

source§

fn from(inst: QuantizedConv2DAndRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DInst> for Operation

source§

fn from(inst: QuantizedConv2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DPerChannelInst> for Operation

source§

fn from(inst: QuantizedConv2DPerChannelInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DWithBiasAndReluAndRequantizeInst> for Operation

source§

fn from(inst: QuantizedConv2DWithBiasAndReluAndRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DWithBiasAndReluInst> for Operation

source§

fn from(inst: QuantizedConv2DWithBiasAndReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DWithBiasAndRequantizeInst> for Operation

source§

fn from(inst: QuantizedConv2DWithBiasAndRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DWithBiasInst> for Operation

source§

fn from(inst: QuantizedConv2DWithBiasInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DWithBiasSignedSumAndReluAndRequantizeInst> for Operation

source§

fn from( inst: QuantizedConv2DWithBiasSignedSumAndReluAndRequantizeInst ) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DWithBiasSumAndReluAndRequantizeInst> for Operation

source§

fn from(inst: QuantizedConv2DWithBiasSumAndReluAndRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedConv2DWithBiasSumAndReluInst> for Operation

source§

fn from(inst: QuantizedConv2DWithBiasSumAndReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedDepthwiseConv2DInst> for Operation

source§

fn from(inst: QuantizedDepthwiseConv2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeInst> for Operation

source§

fn from( inst: QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeInst ) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedDepthwiseConv2DWithBiasAndReluInst> for Operation

source§

fn from(inst: QuantizedDepthwiseConv2DWithBiasAndReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedDepthwiseConv2DWithBiasInst> for Operation

source§

fn from(inst: QuantizedDepthwiseConv2DWithBiasInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedInstanceNormInst> for Operation

source§

fn from(inst: QuantizedInstanceNormInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMatMulInst> for Operation

source§

fn from(inst: QuantizedMatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMatMulWithBiasAndDequantizeInst> for Operation

source§

fn from(inst: QuantizedMatMulWithBiasAndDequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMatMulWithBiasAndReluAndRequantizeInst> for Operation

source§

fn from(inst: QuantizedMatMulWithBiasAndReluAndRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMatMulWithBiasAndReluInst> for Operation

source§

fn from(inst: QuantizedMatMulWithBiasAndReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMatMulWithBiasAndRequantizeInst> for Operation

source§

fn from(inst: QuantizedMatMulWithBiasAndRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMatMulWithBiasInst> for Operation

source§

fn from(inst: QuantizedMatMulWithBiasInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMaxPoolInst> for Operation

source§

fn from(inst: QuantizedMaxPoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedMulInst> for Operation

source§

fn from(inst: QuantizedMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedRelu6Inst> for Operation

source§

fn from(inst: QuantizedRelu6Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedReluInst> for Operation

source§

fn from(inst: QuantizedReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedReluXInst> for Operation

source§

fn from(inst: QuantizedReluXInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedReshapeInst> for Operation

source§

fn from(inst: QuantizedReshapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QuantizedResizeBilinearInst> for Operation

source§

fn from(inst: QuantizedResizeBilinearInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueCloseInst> for Operation

source§

fn from(inst: QueueCloseInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueCloseV2Inst> for Operation

source§

fn from(inst: QueueCloseV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueDequeueInst> for Operation

source§

fn from(inst: QueueDequeueInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueDequeueManyInst> for Operation

source§

fn from(inst: QueueDequeueManyInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueDequeueManyV2Inst> for Operation

source§

fn from(inst: QueueDequeueManyV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueDequeueUpToInst> for Operation

source§

fn from(inst: QueueDequeueUpToInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueDequeueUpToV2Inst> for Operation

source§

fn from(inst: QueueDequeueUpToV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueDequeueV2Inst> for Operation

source§

fn from(inst: QueueDequeueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueEnqueueInst> for Operation

source§

fn from(inst: QueueEnqueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueEnqueueManyInst> for Operation

source§

fn from(inst: QueueEnqueueManyInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueEnqueueManyV2Inst> for Operation

source§

fn from(inst: QueueEnqueueManyV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueEnqueueV2Inst> for Operation

source§

fn from(inst: QueueEnqueueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueIsClosedInst> for Operation

source§

fn from(inst: QueueIsClosedInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueIsClosedV2Inst> for Operation

source§

fn from(inst: QueueIsClosedV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueSizeInst> for Operation

source§

fn from(inst: QueueSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<QueueSizeV2Inst> for Operation

source§

fn from(inst: QueueSizeV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RFFT2DInst> for Operation

source§

fn from(inst: RFFT2DInst) -> Operation

Converts to this type from the input type.
source§

impl From<RFFT3DInst> for Operation

source§

fn from(inst: RFFT3DInst) -> Operation

Converts to this type from the input type.
source§

impl From<RFFTInst> for Operation

source§

fn from(inst: RFFTInst) -> Operation

Converts to this type from the input type.
source§

impl From<RGBToHSVInst> for Operation

source§

fn from(inst: RGBToHSVInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedBincountInst> for Operation

source§

fn from(inst: RaggedBincountInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedCountSparseOutputInst> for Operation

source§

fn from(inst: RaggedCountSparseOutputInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedCrossInst> for Operation

source§

fn from(inst: RaggedCrossInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedFillEmptyRowsGradInst> for Operation

source§

fn from(inst: RaggedFillEmptyRowsGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedFillEmptyRowsInst> for Operation

source§

fn from(inst: RaggedFillEmptyRowsInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedGatherInst> for Operation

source§

fn from(inst: RaggedGatherInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedRangeInst> for Operation

source§

fn from(inst: RaggedRangeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedTensorFromVariantInst> for Operation

source§

fn from(inst: RaggedTensorFromVariantInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedTensorToSparseInst> for Operation

source§

fn from(inst: RaggedTensorToSparseInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedTensorToTensorInst> for Operation

source§

fn from(inst: RaggedTensorToTensorInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedTensorToVariantGradientInst> for Operation

source§

fn from(inst: RaggedTensorToVariantGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<RaggedTensorToVariantInst> for Operation

source§

fn from(inst: RaggedTensorToVariantInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomCropInst> for Operation

source§

fn from(inst: RandomCropInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomDatasetInst> for Operation

source§

fn from(inst: RandomDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomDatasetV2Inst> for Operation

source§

fn from(inst: RandomDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomGammaGradInst> for Operation

source§

fn from(inst: RandomGammaGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomGammaInst> for Operation

source§

fn from(inst: RandomGammaInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomIndexShuffleInst> for Operation

source§

fn from(inst: RandomIndexShuffleInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomPoissonInst> for Operation

source§

fn from(inst: RandomPoissonInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomPoissonV2Inst> for Operation

source§

fn from(inst: RandomPoissonV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomShuffleInst> for Operation

source§

fn from(inst: RandomShuffleInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomShuffleQueueInst> for Operation

source§

fn from(inst: RandomShuffleQueueInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomShuffleQueueV2Inst> for Operation

source§

fn from(inst: RandomShuffleQueueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomStandardNormalInst> for Operation

source§

fn from(inst: RandomStandardNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomUniformInst> for Operation

source§

fn from(inst: RandomUniformInst) -> Operation

Converts to this type from the input type.
source§

impl From<RandomUniformIntInst> for Operation

source§

fn from(inst: RandomUniformIntInst) -> Operation

Converts to this type from the input type.
source§

impl From<RangeDatasetInst> for Operation

source§

fn from(inst: RangeDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<RangeInst> for Operation

source§

fn from(inst: RangeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RankInst> for Operation

source§

fn from(inst: RankInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReadFileInst> for Operation

source§

fn from(inst: ReadFileInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReadVariableOpInst> for Operation

source§

fn from(inst: ReadVariableOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReadVariableXlaSplitNDInst> for Operation

source§

fn from(inst: ReadVariableXlaSplitNDInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderNumRecordsProducedInst> for Operation

source§

fn from(inst: ReaderNumRecordsProducedInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderNumRecordsProducedV2Inst> for Operation

source§

fn from(inst: ReaderNumRecordsProducedV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderNumWorkUnitsCompletedInst> for Operation

source§

fn from(inst: ReaderNumWorkUnitsCompletedInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderNumWorkUnitsCompletedV2Inst> for Operation

source§

fn from(inst: ReaderNumWorkUnitsCompletedV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderReadInst> for Operation

source§

fn from(inst: ReaderReadInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderReadUpToInst> for Operation

source§

fn from(inst: ReaderReadUpToInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderReadUpToV2Inst> for Operation

source§

fn from(inst: ReaderReadUpToV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderReadV2Inst> for Operation

source§

fn from(inst: ReaderReadV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderResetInst> for Operation

source§

fn from(inst: ReaderResetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderResetV2Inst> for Operation

source§

fn from(inst: ReaderResetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderRestoreStateInst> for Operation

source§

fn from(inst: ReaderRestoreStateInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderRestoreStateV2Inst> for Operation

source§

fn from(inst: ReaderRestoreStateV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderSerializeStateInst> for Operation

source§

fn from(inst: ReaderSerializeStateInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReaderSerializeStateV2Inst> for Operation

source§

fn from(inst: ReaderSerializeStateV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RealDivInst> for Operation

source§

fn from(inst: RealDivInst) -> Operation

Converts to this type from the input type.
source§

impl From<RealInst> for Operation

source§

fn from(inst: RealInst) -> Operation

Converts to this type from the input type.
source§

impl From<RebatchDatasetInst> for Operation

source§

fn from(inst: RebatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<RebatchDatasetV2Inst> for Operation

source§

fn from(inst: RebatchDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReciprocalGradInst> for Operation

source§

fn from(inst: ReciprocalGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReciprocalInst> for Operation

source§

fn from(inst: ReciprocalInst) -> Operation

Converts to this type from the input type.
source§

impl From<RecordInputInst> for Operation

source§

fn from(inst: RecordInputInst) -> Operation

Converts to this type from the input type.
source§

impl From<RecvInst> for Operation

source§

fn from(inst: RecvInst) -> Operation

Converts to this type from the input type.
source§

impl From<RecvTPUEmbeddingActivationsInst> for Operation

source§

fn from(inst: RecvTPUEmbeddingActivationsInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReduceDatasetInst> for Operation

source§

fn from(inst: ReduceDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReduceJoinInst> for Operation

source§

fn from(inst: ReduceJoinInst) -> Operation

Converts to this type from the input type.
source§

impl From<RefEnterInst> for Operation

source§

fn from(inst: RefEnterInst) -> Operation

Converts to this type from the input type.
source§

impl From<RefExitInst> for Operation

source§

fn from(inst: RefExitInst) -> Operation

Converts to this type from the input type.
source§

impl From<RefIdentityInst> for Operation

source§

fn from(inst: RefIdentityInst) -> Operation

Converts to this type from the input type.
source§

impl From<RefMergeInst> for Operation

source§

fn from(inst: RefMergeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RefNextIterationInst> for Operation

source§

fn from(inst: RefNextIterationInst) -> Operation

Converts to this type from the input type.
source§

impl From<RefSelectInst> for Operation

source§

fn from(inst: RefSelectInst) -> Operation

Converts to this type from the input type.
source§

impl From<RefSwitchInst> for Operation

source§

fn from(inst: RefSwitchInst) -> Operation

Converts to this type from the input type.
source§

impl From<RegexFullMatchInst> for Operation

source§

fn from(inst: RegexFullMatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<RegexReplaceInst> for Operation

source§

fn from(inst: RegexReplaceInst) -> Operation

Converts to this type from the input type.
source§

impl From<RegisterDatasetInst> for Operation

source§

fn from(inst: RegisterDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<RegisterDatasetV2Inst> for Operation

source§

fn from(inst: RegisterDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RelayoutGradInst> for Operation

source§

fn from(inst: RelayoutGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<RelayoutInst> for Operation

source§

fn from(inst: RelayoutInst) -> Operation

Converts to this type from the input type.
source§

impl From<Relu6GradInst> for Operation

source§

fn from(inst: Relu6GradInst) -> Operation

Converts to this type from the input type.
source§

impl From<Relu6Inst> for Operation

source§

fn from(inst: Relu6Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ReluGradInst> for Operation

source§

fn from(inst: ReluGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReluInst> for Operation

source§

fn from(inst: ReluInst) -> Operation

Converts to this type from the input type.
source§

impl From<RemoteCallInst> for Operation

source§

fn from(inst: RemoteCallInst) -> Operation

Converts to this type from the input type.
source§

impl From<RepeatDatasetInst> for Operation

source§

fn from(inst: RepeatDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<RequantizationRangeInst> for Operation

source§

fn from(inst: RequantizationRangeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RequantizationRangePerChannelInst> for Operation

source§

fn from(inst: RequantizationRangePerChannelInst) -> Operation

Converts to this type from the input type.
source§

impl From<RequantizeInst> for Operation

source§

fn from(inst: RequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RequantizePerChannelInst> for Operation

source§

fn from(inst: RequantizePerChannelInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReshapeInst> for Operation

source§

fn from(inst: ReshapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResizeAreaInst> for Operation

source§

fn from(inst: ResizeAreaInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResizeBicubicGradInst> for Operation

source§

fn from(inst: ResizeBicubicGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResizeBicubicInst> for Operation

source§

fn from(inst: ResizeBicubicInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResizeBilinearGradInst> for Operation

source§

fn from(inst: ResizeBilinearGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResizeBilinearInst> for Operation

source§

fn from(inst: ResizeBilinearInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResizeNearestNeighborGradInst> for Operation

source§

fn from(inst: ResizeNearestNeighborGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResizeNearestNeighborInst> for Operation

source§

fn from(inst: ResizeNearestNeighborInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceAccumulatorApplyGradientInst> for Operation

source§

fn from(inst: ResourceAccumulatorApplyGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceAccumulatorNumAccumulatedInst> for Operation

source§

fn from(inst: ResourceAccumulatorNumAccumulatedInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceAccumulatorSetGlobalStepInst> for Operation

source§

fn from(inst: ResourceAccumulatorSetGlobalStepInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceAccumulatorTakeGradientInst> for Operation

source§

fn from(inst: ResourceAccumulatorTakeGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAdaMaxInst> for Operation

source§

fn from(inst: ResourceApplyAdaMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAdadeltaInst> for Operation

source§

fn from(inst: ResourceApplyAdadeltaInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAdagradDAInst> for Operation

source§

fn from(inst: ResourceApplyAdagradDAInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAdagradInst> for Operation

source§

fn from(inst: ResourceApplyAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAdagradV2Inst> for Operation

source§

fn from(inst: ResourceApplyAdagradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAdamInst> for Operation

source§

fn from(inst: ResourceApplyAdamInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAdamWithAmsgradInst> for Operation

source§

fn from(inst: ResourceApplyAdamWithAmsgradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyAddSignInst> for Operation

source§

fn from(inst: ResourceApplyAddSignInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyCenteredRMSPropInst> for Operation

source§

fn from(inst: ResourceApplyCenteredRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyFtrlInst> for Operation

source§

fn from(inst: ResourceApplyFtrlInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyFtrlV2Inst> for Operation

source§

fn from(inst: ResourceApplyFtrlV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyGradientDescentInst> for Operation

source§

fn from(inst: ResourceApplyGradientDescentInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyKerasMomentumInst> for Operation

source§

fn from(inst: ResourceApplyKerasMomentumInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyMomentumInst> for Operation

source§

fn from(inst: ResourceApplyMomentumInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyPowerSignInst> for Operation

source§

fn from(inst: ResourceApplyPowerSignInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyProximalAdagradInst> for Operation

source§

fn from(inst: ResourceApplyProximalAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyProximalGradientDescentInst> for Operation

source§

fn from(inst: ResourceApplyProximalGradientDescentInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceApplyRMSPropInst> for Operation

source§

fn from(inst: ResourceApplyRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceConditionalAccumulatorInst> for Operation

source§

fn from(inst: ResourceConditionalAccumulatorInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceCountUpToInst> for Operation

source§

fn from(inst: ResourceCountUpToInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceGatherInst> for Operation

source§

fn from(inst: ResourceGatherInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceGatherNdInst> for Operation

source§

fn from(inst: ResourceGatherNdInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterAddInst> for Operation

source§

fn from(inst: ResourceScatterAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterDivInst> for Operation

source§

fn from(inst: ResourceScatterDivInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterMaxInst> for Operation

source§

fn from(inst: ResourceScatterMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterMinInst> for Operation

source§

fn from(inst: ResourceScatterMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterMulInst> for Operation

source§

fn from(inst: ResourceScatterMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterNdAddInst> for Operation

source§

fn from(inst: ResourceScatterNdAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterNdMaxInst> for Operation

source§

fn from(inst: ResourceScatterNdMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterNdMinInst> for Operation

source§

fn from(inst: ResourceScatterNdMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterNdSubInst> for Operation

source§

fn from(inst: ResourceScatterNdSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterNdUpdateInst> for Operation

source§

fn from(inst: ResourceScatterNdUpdateInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterSubInst> for Operation

source§

fn from(inst: ResourceScatterSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceScatterUpdateInst> for Operation

source§

fn from(inst: ResourceScatterUpdateInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyAdadeltaInst> for Operation

source§

fn from(inst: ResourceSparseApplyAdadeltaInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyAdagradDAInst> for Operation

source§

fn from(inst: ResourceSparseApplyAdagradDAInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyAdagradInst> for Operation

source§

fn from(inst: ResourceSparseApplyAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyAdagradV2Inst> for Operation

source§

fn from(inst: ResourceSparseApplyAdagradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyCenteredRMSPropInst> for Operation

source§

fn from(inst: ResourceSparseApplyCenteredRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyFtrlInst> for Operation

source§

fn from(inst: ResourceSparseApplyFtrlInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyFtrlV2Inst> for Operation

source§

fn from(inst: ResourceSparseApplyFtrlV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyKerasMomentumInst> for Operation

source§

fn from(inst: ResourceSparseApplyKerasMomentumInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyMomentumInst> for Operation

source§

fn from(inst: ResourceSparseApplyMomentumInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyProximalAdagradInst> for Operation

source§

fn from(inst: ResourceSparseApplyProximalAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyProximalGradientDescentInst> for Operation

source§

fn from(inst: ResourceSparseApplyProximalGradientDescentInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceSparseApplyRMSPropInst> for Operation

source§

fn from(inst: ResourceSparseApplyRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<ResourceStridedSliceAssignInst> for Operation

source§

fn from(inst: ResourceStridedSliceAssignInst) -> Operation

Converts to this type from the input type.
source§

impl From<RestoreInst> for Operation

source§

fn from(inst: RestoreInst) -> Operation

Converts to this type from the input type.
source§

impl From<RestoreSliceInst> for Operation

source§

fn from(inst: RestoreSliceInst) -> Operation

Converts to this type from the input type.
source§

impl From<RestoreV2Inst> for Operation

source§

fn from(inst: RestoreV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveAllTPUEmbeddingParametersInst> for Operation

source§

fn from(inst: RetrieveAllTPUEmbeddingParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingADAMParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingADAMParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingAdadeltaParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingAdadeltaParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingAdagradMomentumParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingAdagradMomentumParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingAdagradParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingAdagradParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingCenteredRMSPropParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingCenteredRMSPropParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingFTRLParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingFTRLParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingFrequencyEstimatorParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingFrequencyEstimatorParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingMDLAdagradLightParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingMDLAdagradLightParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingMomentumParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingMomentumParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingProximalAdagradParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingProximalAdagradParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingProximalYogiParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingProximalYogiParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingRMSPropParametersInst> for Operation

source§

fn from(inst: RetrieveTPUEmbeddingRMSPropParametersInst) -> Operation

Converts to this type from the input type.
source§

impl From<RetrieveTPUEmbeddingStochasticGradientDescentParametersInst> for Operation

source§

fn from( inst: RetrieveTPUEmbeddingStochasticGradientDescentParametersInst ) -> Operation

Converts to this type from the input type.
source§

impl From<ReverseInst> for Operation

source§

fn from(inst: ReverseInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReverseSequenceInst> for Operation

source§

fn from(inst: ReverseSequenceInst) -> Operation

Converts to this type from the input type.
source§

impl From<ReverseV2Inst> for Operation

source§

fn from(inst: ReverseV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<RewriteDatasetInst> for Operation

source§

fn from(inst: RewriteDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<RightShiftInst> for Operation

source§

fn from(inst: RightShiftInst) -> Operation

Converts to this type from the input type.
source§

impl From<RintInst> for Operation

source§

fn from(inst: RintInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscAbsInst> for Operation

source§

fn from(inst: RiscAbsInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscAddInst> for Operation

source§

fn from(inst: RiscAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscBinaryArithmeticInst> for Operation

source§

fn from(inst: RiscBinaryArithmeticInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscBinaryComparisonInst> for Operation

source§

fn from(inst: RiscBinaryComparisonInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscBitcastInst> for Operation

source§

fn from(inst: RiscBitcastInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscBroadcastInst> for Operation

source§

fn from(inst: RiscBroadcastInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscCastInst> for Operation

source§

fn from(inst: RiscCastInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscCeilInst> for Operation

source§

fn from(inst: RiscCeilInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscCholeskyInst> for Operation

source§

fn from(inst: RiscCholeskyInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscConcatInst> for Operation

source§

fn from(inst: RiscConcatInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscConditionInst> for Operation

source§

fn from(inst: RiscConditionInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscConvInst> for Operation

source§

fn from(inst: RiscConvInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscCosInst> for Operation

source§

fn from(inst: RiscCosInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscDivInst> for Operation

source§

fn from(inst: RiscDivInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscDotInst> for Operation

source§

fn from(inst: RiscDotInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscExpInst> for Operation

source§

fn from(inst: RiscExpInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscFftInst> for Operation

source§

fn from(inst: RiscFftInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscFloorInst> for Operation

source§

fn from(inst: RiscFloorInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscGatherInst> for Operation

source§

fn from(inst: RiscGatherInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscImagInst> for Operation

source§

fn from(inst: RiscImagInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscIsFiniteInst> for Operation

source§

fn from(inst: RiscIsFiniteInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscLogInst> for Operation

source§

fn from(inst: RiscLogInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscLogicalAndInst> for Operation

source§

fn from(inst: RiscLogicalAndInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscLogicalNotInst> for Operation

source§

fn from(inst: RiscLogicalNotInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscLogicalOrInst> for Operation

source§

fn from(inst: RiscLogicalOrInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscMaxInst> for Operation

source§

fn from(inst: RiscMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscMinInst> for Operation

source§

fn from(inst: RiscMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscMulInst> for Operation

source§

fn from(inst: RiscMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscNegInst> for Operation

source§

fn from(inst: RiscNegInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscPadInst> for Operation

source§

fn from(inst: RiscPadInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscPoolInst> for Operation

source§

fn from(inst: RiscPoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscPowInst> for Operation

source§

fn from(inst: RiscPowInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscRandomUniformInst> for Operation

source§

fn from(inst: RiscRandomUniformInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscRealInst> for Operation

source§

fn from(inst: RiscRealInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscReduceInst> for Operation

source§

fn from(inst: RiscReduceInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscRemInst> for Operation

source§

fn from(inst: RiscRemInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscReshapeInst> for Operation

source§

fn from(inst: RiscReshapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscReverseInst> for Operation

source§

fn from(inst: RiscReverseInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscScatterInst> for Operation

source§

fn from(inst: RiscScatterInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscShapeInst> for Operation

source§

fn from(inst: RiscShapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscSignInst> for Operation

source§

fn from(inst: RiscSignInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscSliceInst> for Operation

source§

fn from(inst: RiscSliceInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscSortInst> for Operation

source§

fn from(inst: RiscSortInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscSqueezeInst> for Operation

source§

fn from(inst: RiscSqueezeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscSubInst> for Operation

source§

fn from(inst: RiscSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscTransposeInst> for Operation

source§

fn from(inst: RiscTransposeInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscTriangularSolveInst> for Operation

source§

fn from(inst: RiscTriangularSolveInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscUnaryInst> for Operation

source§

fn from(inst: RiscUnaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<RiscWhileInst> for Operation

source§

fn from(inst: RiscWhileInst) -> Operation

Converts to this type from the input type.
source§

impl From<RngReadAndSkipInst> for Operation

source§

fn from(inst: RngReadAndSkipInst) -> Operation

Converts to this type from the input type.
source§

impl From<RngSkipInst> for Operation

source§

fn from(inst: RngSkipInst) -> Operation

Converts to this type from the input type.
source§

impl From<RollInst> for Operation

source§

fn from(inst: RollInst) -> Operation

Converts to this type from the input type.
source§

impl From<RoundInst> for Operation

source§

fn from(inst: RoundInst) -> Operation

Converts to this type from the input type.
source§

impl From<RsqrtGradInst> for Operation

source§

fn from(inst: RsqrtGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<RsqrtInst> for Operation

source§

fn from(inst: RsqrtInst) -> Operation

Converts to this type from the input type.
source§

impl From<SampleDistortedBoundingBoxInst> for Operation

source§

fn from(inst: SampleDistortedBoundingBoxInst) -> Operation

Converts to this type from the input type.
source§

impl From<SampleDistortedBoundingBoxV2Inst> for Operation

source§

fn from(inst: SampleDistortedBoundingBoxV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SamplingDatasetInst> for Operation

source§

fn from(inst: SamplingDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SaveDatasetInst> for Operation

source§

fn from(inst: SaveDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SaveDatasetV2Inst> for Operation

source§

fn from(inst: SaveDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SaveInst> for Operation

source§

fn from(inst: SaveInst) -> Operation

Converts to this type from the input type.
source§

impl From<SaveSlicesInst> for Operation

source§

fn from(inst: SaveSlicesInst) -> Operation

Converts to this type from the input type.
source§

impl From<SaveV2Inst> for Operation

source§

fn from(inst: SaveV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ScalarSummaryInst> for Operation

source§

fn from(inst: ScalarSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScaleAndTranslateGradInst> for Operation

source§

fn from(inst: ScaleAndTranslateGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScaleAndTranslateInst> for Operation

source§

fn from(inst: ScaleAndTranslateInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScanDatasetInst> for Operation

source§

fn from(inst: ScanDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterAddInst> for Operation

source§

fn from(inst: ScatterAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterDivInst> for Operation

source§

fn from(inst: ScatterDivInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterMaxInst> for Operation

source§

fn from(inst: ScatterMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterMinInst> for Operation

source§

fn from(inst: ScatterMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterMulInst> for Operation

source§

fn from(inst: ScatterMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterNdAddInst> for Operation

source§

fn from(inst: ScatterNdAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterNdInst> for Operation

source§

fn from(inst: ScatterNdInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterNdMaxInst> for Operation

source§

fn from(inst: ScatterNdMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterNdMinInst> for Operation

source§

fn from(inst: ScatterNdMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterNdNonAliasingAddInst> for Operation

source§

fn from(inst: ScatterNdNonAliasingAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterNdSubInst> for Operation

source§

fn from(inst: ScatterNdSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterNdUpdateInst> for Operation

source§

fn from(inst: ScatterNdUpdateInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterSubInst> for Operation

source§

fn from(inst: ScatterSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<ScatterUpdateInst> for Operation

source§

fn from(inst: ScatterUpdateInst) -> Operation

Converts to this type from the input type.
source§

impl From<SdcaFprintInst> for Operation

source§

fn from(inst: SdcaFprintInst) -> Operation

Converts to this type from the input type.
source§

impl From<SdcaOptimizerInst> for Operation

source§

fn from(inst: SdcaOptimizerInst) -> Operation

Converts to this type from the input type.
source§

impl From<SdcaOptimizerV2Inst> for Operation

source§

fn from(inst: SdcaOptimizerV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SdcaShrinkL1Inst> for Operation

source§

fn from(inst: SdcaShrinkL1Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentMaxInst> for Operation

source§

fn from(inst: SegmentMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentMaxV2Inst> for Operation

source§

fn from(inst: SegmentMaxV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentMeanInst> for Operation

source§

fn from(inst: SegmentMeanInst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentMinInst> for Operation

source§

fn from(inst: SegmentMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentMinV2Inst> for Operation

source§

fn from(inst: SegmentMinV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentProdInst> for Operation

source§

fn from(inst: SegmentProdInst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentProdV2Inst> for Operation

source§

fn from(inst: SegmentProdV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentSumInst> for Operation

source§

fn from(inst: SegmentSumInst) -> Operation

Converts to this type from the input type.
source§

impl From<SegmentSumV2Inst> for Operation

source§

fn from(inst: SegmentSumV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SelectInst> for Operation

source§

fn from(inst: SelectInst) -> Operation

Converts to this type from the input type.
source§

impl From<SelectV2Inst> for Operation

source§

fn from(inst: SelectV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SelfAdjointEigInst> for Operation

source§

fn from(inst: SelfAdjointEigInst) -> Operation

Converts to this type from the input type.
source§

impl From<SelfAdjointEigV2Inst> for Operation

source§

fn from(inst: SelfAdjointEigV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SeluGradInst> for Operation

source§

fn from(inst: SeluGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SeluInst> for Operation

source§

fn from(inst: SeluInst) -> Operation

Converts to this type from the input type.
source§

impl From<SendInst> for Operation

source§

fn from(inst: SendInst) -> Operation

Converts to this type from the input type.
source§

impl From<SendTPUEmbeddingGradientsInst> for Operation

source§

fn from(inst: SendTPUEmbeddingGradientsInst) -> Operation

Converts to this type from the input type.
source§

impl From<SerializeIteratorInst> for Operation

source§

fn from(inst: SerializeIteratorInst) -> Operation

Converts to this type from the input type.
source§

impl From<SerializeManySparseInst> for Operation

source§

fn from(inst: SerializeManySparseInst) -> Operation

Converts to this type from the input type.
source§

impl From<SerializeSparseInst> for Operation

source§

fn from(inst: SerializeSparseInst) -> Operation

Converts to this type from the input type.
source§

impl From<SerializeTensorInst> for Operation

source§

fn from(inst: SerializeTensorInst) -> Operation

Converts to this type from the input type.
source§

impl From<SetSizeInst> for Operation

source§

fn from(inst: SetSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<SetStatsAggregatorDatasetInst> for Operation

source§

fn from(inst: SetStatsAggregatorDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShapeInst> for Operation

source§

fn from(inst: ShapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShapeNInst> for Operation

source§

fn from(inst: ShapeNInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShardDatasetInst> for Operation

source§

fn from(inst: ShardDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShardedFilenameInst> for Operation

source§

fn from(inst: ShardedFilenameInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShardedFilespecInst> for Operation

source§

fn from(inst: ShardedFilespecInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShuffleAndRepeatDatasetInst> for Operation

source§

fn from(inst: ShuffleAndRepeatDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShuffleAndRepeatDatasetV2Inst> for Operation

source§

fn from(inst: ShuffleAndRepeatDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ShuffleDatasetInst> for Operation

source§

fn from(inst: ShuffleDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShuffleDatasetV2Inst> for Operation

source§

fn from(inst: ShuffleDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ShuffleDatasetV3Inst> for Operation

source§

fn from(inst: ShuffleDatasetV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ShutdownDistributedTPUInst> for Operation

source§

fn from(inst: ShutdownDistributedTPUInst) -> Operation

Converts to this type from the input type.
source§

impl From<ShutdownTPUSystemInst> for Operation

source§

fn from(inst: ShutdownTPUSystemInst) -> Operation

Converts to this type from the input type.
source§

impl From<SigmoidGradInst> for Operation

source§

fn from(inst: SigmoidGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SigmoidInst> for Operation

source§

fn from(inst: SigmoidInst) -> Operation

Converts to this type from the input type.
source§

impl From<SignInst> for Operation

source§

fn from(inst: SignInst) -> Operation

Converts to this type from the input type.
source§

impl From<SinInst> for Operation

source§

fn from(inst: SinInst) -> Operation

Converts to this type from the input type.
source§

impl From<SinhInst> for Operation

source§

fn from(inst: SinhInst) -> Operation

Converts to this type from the input type.
source§

impl From<SizeInst> for Operation

source§

fn from(inst: SizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<SkipDatasetInst> for Operation

source§

fn from(inst: SkipDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SkipgramInst> for Operation

source§

fn from(inst: SkipgramInst) -> Operation

Converts to this type from the input type.
source§

impl From<SleepDatasetInst> for Operation

source§

fn from(inst: SleepDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SliceInst> for Operation

source§

fn from(inst: SliceInst) -> Operation

Converts to this type from the input type.
source§

impl From<SlidingWindowDatasetInst> for Operation

source§

fn from(inst: SlidingWindowDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SnapshotChunkDatasetInst> for Operation

source§

fn from(inst: SnapshotChunkDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SnapshotDatasetInst> for Operation

source§

fn from(inst: SnapshotDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SnapshotDatasetReaderInst> for Operation

source§

fn from(inst: SnapshotDatasetReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<SnapshotDatasetV2Inst> for Operation

source§

fn from(inst: SnapshotDatasetV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SnapshotInst> for Operation

source§

fn from(inst: SnapshotInst) -> Operation

Converts to this type from the input type.
source§

impl From<SnapshotNestedDatasetReaderInst> for Operation

source§

fn from(inst: SnapshotNestedDatasetReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<SobolSampleInst> for Operation

source§

fn from(inst: SobolSampleInst) -> Operation

Converts to this type from the input type.
source§

impl From<SoftmaxCrossEntropyWithLogitsInst> for Operation

source§

fn from(inst: SoftmaxCrossEntropyWithLogitsInst) -> Operation

Converts to this type from the input type.
source§

impl From<SoftmaxInst> for Operation

source§

fn from(inst: SoftmaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<SoftplusGradInst> for Operation

source§

fn from(inst: SoftplusGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SoftplusInst> for Operation

source§

fn from(inst: SoftplusInst) -> Operation

Converts to this type from the input type.
source§

impl From<SoftsignGradInst> for Operation

source§

fn from(inst: SoftsignGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SoftsignInst> for Operation

source§

fn from(inst: SoftsignInst) -> Operation

Converts to this type from the input type.
source§

impl From<SpaceToBatchInst> for Operation

source§

fn from(inst: SpaceToBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<SpaceToBatchNDInst> for Operation

source§

fn from(inst: SpaceToBatchNDInst) -> Operation

Converts to this type from the input type.
source§

impl From<SpaceToDepthInst> for Operation

source§

fn from(inst: SpaceToDepthInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseAccumulatorApplyGradientInst> for Operation

source§

fn from(inst: SparseAccumulatorApplyGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseAccumulatorTakeGradientInst> for Operation

source§

fn from(inst: SparseAccumulatorTakeGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseAddGradInst> for Operation

source§

fn from(inst: SparseAddGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseAddInst> for Operation

source§

fn from(inst: SparseAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyAdadeltaInst> for Operation

source§

fn from(inst: SparseApplyAdadeltaInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyAdagradDAInst> for Operation

source§

fn from(inst: SparseApplyAdagradDAInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyAdagradInst> for Operation

source§

fn from(inst: SparseApplyAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyAdagradV2Inst> for Operation

source§

fn from(inst: SparseApplyAdagradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyCenteredRMSPropInst> for Operation

source§

fn from(inst: SparseApplyCenteredRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyFtrlInst> for Operation

source§

fn from(inst: SparseApplyFtrlInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyFtrlV2Inst> for Operation

source§

fn from(inst: SparseApplyFtrlV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyMomentumInst> for Operation

source§

fn from(inst: SparseApplyMomentumInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyProximalAdagradInst> for Operation

source§

fn from(inst: SparseApplyProximalAdagradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyProximalGradientDescentInst> for Operation

source§

fn from(inst: SparseApplyProximalGradientDescentInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseApplyRMSPropInst> for Operation

source§

fn from(inst: SparseApplyRMSPropInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseBincountInst> for Operation

source§

fn from(inst: SparseBincountInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseConcatInst> for Operation

source§

fn from(inst: SparseConcatInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseConditionalAccumulatorInst> for Operation

source§

fn from(inst: SparseConditionalAccumulatorInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseCountSparseOutputInst> for Operation

source§

fn from(inst: SparseCountSparseOutputInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseCrossHashedInst> for Operation

source§

fn from(inst: SparseCrossHashedInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseCrossInst> for Operation

source§

fn from(inst: SparseCrossInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseCrossV2Inst> for Operation

source§

fn from(inst: SparseCrossV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseDenseCwiseAddInst> for Operation

source§

fn from(inst: SparseDenseCwiseAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseDenseCwiseDivInst> for Operation

source§

fn from(inst: SparseDenseCwiseDivInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseDenseCwiseMulInst> for Operation

source§

fn from(inst: SparseDenseCwiseMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseFillEmptyRowsGradInst> for Operation

source§

fn from(inst: SparseFillEmptyRowsGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseFillEmptyRowsInst> for Operation

source§

fn from(inst: SparseFillEmptyRowsInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatMulInst> for Operation

source§

fn from(inst: SparseMatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixAddInst> for Operation

source§

fn from(inst: SparseMatrixAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixMatMulInst> for Operation

source§

fn from(inst: SparseMatrixMatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixMulInst> for Operation

source§

fn from(inst: SparseMatrixMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixNNZInst> for Operation

source§

fn from(inst: SparseMatrixNNZInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixOrderingAMDInst> for Operation

source§

fn from(inst: SparseMatrixOrderingAMDInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixSoftmaxGradInst> for Operation

source§

fn from(inst: SparseMatrixSoftmaxGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixSoftmaxInst> for Operation

source§

fn from(inst: SparseMatrixSoftmaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixSparseCholeskyInst> for Operation

source§

fn from(inst: SparseMatrixSparseCholeskyInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixSparseMatMulInst> for Operation

source§

fn from(inst: SparseMatrixSparseMatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixTransposeInst> for Operation

source§

fn from(inst: SparseMatrixTransposeInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseMatrixZerosInst> for Operation

source§

fn from(inst: SparseMatrixZerosInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseReduceMaxInst> for Operation

source§

fn from(inst: SparseReduceMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseReduceMaxSparseInst> for Operation

source§

fn from(inst: SparseReduceMaxSparseInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseReduceSumInst> for Operation

source§

fn from(inst: SparseReduceSumInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseReduceSumSparseInst> for Operation

source§

fn from(inst: SparseReduceSumSparseInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseReorderInst> for Operation

source§

fn from(inst: SparseReorderInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseReshapeInst> for Operation

source§

fn from(inst: SparseReshapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentMeanGradInst> for Operation

source§

fn from(inst: SparseSegmentMeanGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentMeanInst> for Operation

source§

fn from(inst: SparseSegmentMeanInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentMeanWithNumSegmentsInst> for Operation

source§

fn from(inst: SparseSegmentMeanWithNumSegmentsInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentSqrtNGradInst> for Operation

source§

fn from(inst: SparseSegmentSqrtNGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentSqrtNInst> for Operation

source§

fn from(inst: SparseSegmentSqrtNInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentSqrtNWithNumSegmentsInst> for Operation

source§

fn from(inst: SparseSegmentSqrtNWithNumSegmentsInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentSumGradInst> for Operation

source§

fn from(inst: SparseSegmentSumGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentSumInst> for Operation

source§

fn from(inst: SparseSegmentSumInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSegmentSumWithNumSegmentsInst> for Operation

source§

fn from(inst: SparseSegmentSumWithNumSegmentsInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSliceGradInst> for Operation

source§

fn from(inst: SparseSliceGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSliceInst> for Operation

source§

fn from(inst: SparseSliceInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSoftmaxCrossEntropyWithLogitsInst> for Operation

source§

fn from(inst: SparseSoftmaxCrossEntropyWithLogitsInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSoftmaxInst> for Operation

source§

fn from(inst: SparseSoftmaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSparseMaximumInst> for Operation

source§

fn from(inst: SparseSparseMaximumInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSparseMinimumInst> for Operation

source§

fn from(inst: SparseSparseMinimumInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseSplitInst> for Operation

source§

fn from(inst: SparseSplitInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseTensorDenseAddInst> for Operation

source§

fn from(inst: SparseTensorDenseAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseTensorDenseMatMulInst> for Operation

source§

fn from(inst: SparseTensorDenseMatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseTensorSliceDatasetInst> for Operation

source§

fn from(inst: SparseTensorSliceDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseTensorToCSRSparseMatrixInst> for Operation

source§

fn from(inst: SparseTensorToCSRSparseMatrixInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseToDenseInst> for Operation

source§

fn from(inst: SparseToDenseInst) -> Operation

Converts to this type from the input type.
source§

impl From<SparseToSparseSetOperationInst> for Operation

source§

fn from(inst: SparseToSparseSetOperationInst) -> Operation

Converts to this type from the input type.
source§

impl From<SpenceInst> for Operation

source§

fn from(inst: SpenceInst) -> Operation

Converts to this type from the input type.
source§

impl From<SplitDedupDataInst> for Operation

source§

fn from(inst: SplitDedupDataInst) -> Operation

Converts to this type from the input type.
source§

impl From<SplitInst> for Operation

source§

fn from(inst: SplitInst) -> Operation

Converts to this type from the input type.
source§

impl From<SplitVInst> for Operation

source§

fn from(inst: SplitVInst) -> Operation

Converts to this type from the input type.
source§

impl From<SqlDatasetInst> for Operation

source§

fn from(inst: SqlDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<SqrtGradInst> for Operation

source§

fn from(inst: SqrtGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<SqrtInst> for Operation

source§

fn from(inst: SqrtInst) -> Operation

Converts to this type from the input type.
source§

impl From<SquareInst> for Operation

source§

fn from(inst: SquareInst) -> Operation

Converts to this type from the input type.
source§

impl From<SquaredDifferenceInst> for Operation

source§

fn from(inst: SquaredDifferenceInst) -> Operation

Converts to this type from the input type.
source§

impl From<SqueezeInst> for Operation

source§

fn from(inst: SqueezeInst) -> Operation

Converts to this type from the input type.
source§

impl From<StackCloseInst> for Operation

source§

fn from(inst: StackCloseInst) -> Operation

Converts to this type from the input type.
source§

impl From<StackCloseV2Inst> for Operation

source§

fn from(inst: StackCloseV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StackInst> for Operation

source§

fn from(inst: StackInst) -> Operation

Converts to this type from the input type.
source§

impl From<StackPopInst> for Operation

source§

fn from(inst: StackPopInst) -> Operation

Converts to this type from the input type.
source§

impl From<StackPopV2Inst> for Operation

source§

fn from(inst: StackPopV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StackPushInst> for Operation

source§

fn from(inst: StackPushInst) -> Operation

Converts to this type from the input type.
source§

impl From<StackPushV2Inst> for Operation

source§

fn from(inst: StackPushV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StackV2Inst> for Operation

source§

fn from(inst: StackV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StageClearInst> for Operation

source§

fn from(inst: StageClearInst) -> Operation

Converts to this type from the input type.
source§

impl From<StageInst> for Operation

source§

fn from(inst: StageInst) -> Operation

Converts to this type from the input type.
source§

impl From<StagePeekInst> for Operation

source§

fn from(inst: StagePeekInst) -> Operation

Converts to this type from the input type.
source§

impl From<StageSizeInst> for Operation

source§

fn from(inst: StageSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulPartitionedCallInst> for Operation

source§

fn from(inst: StatefulPartitionedCallInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulRandomBinomialInst> for Operation

source§

fn from(inst: StatefulRandomBinomialInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulStandardNormalInst> for Operation

source§

fn from(inst: StatefulStandardNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulStandardNormalV2Inst> for Operation

source§

fn from(inst: StatefulStandardNormalV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulTruncatedNormalInst> for Operation

source§

fn from(inst: StatefulTruncatedNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulUniformFullIntInst> for Operation

source§

fn from(inst: StatefulUniformFullIntInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulUniformInst> for Operation

source§

fn from(inst: StatefulUniformInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatefulUniformIntInst> for Operation

source§

fn from(inst: StatefulUniformIntInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessCaseInst> for Operation

source§

fn from(inst: StatelessCaseInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessIfInst> for Operation

source§

fn from(inst: StatelessIfInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessMultinomialInst> for Operation

source§

fn from(inst: StatelessMultinomialInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessParameterizedTruncatedNormalInst> for Operation

source§

fn from(inst: StatelessParameterizedTruncatedNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomBinomialInst> for Operation

source§

fn from(inst: StatelessRandomBinomialInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomGammaV2Inst> for Operation

source§

fn from(inst: StatelessRandomGammaV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomGammaV3Inst> for Operation

source§

fn from(inst: StatelessRandomGammaV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomGetAlgInst> for Operation

source§

fn from(inst: StatelessRandomGetAlgInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomGetKeyCounterAlgInst> for Operation

source§

fn from(inst: StatelessRandomGetKeyCounterAlgInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomGetKeyCounterInst> for Operation

source§

fn from(inst: StatelessRandomGetKeyCounterInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomNormalInst> for Operation

source§

fn from(inst: StatelessRandomNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomNormalV2Inst> for Operation

source§

fn from(inst: StatelessRandomNormalV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomPoissonInst> for Operation

source§

fn from(inst: StatelessRandomPoissonInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomUniformFullIntInst> for Operation

source§

fn from(inst: StatelessRandomUniformFullIntInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomUniformFullIntV2Inst> for Operation

source§

fn from(inst: StatelessRandomUniformFullIntV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomUniformInst> for Operation

source§

fn from(inst: StatelessRandomUniformInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomUniformIntInst> for Operation

source§

fn from(inst: StatelessRandomUniformIntInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomUniformIntV2Inst> for Operation

source§

fn from(inst: StatelessRandomUniformIntV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessRandomUniformV2Inst> for Operation

source§

fn from(inst: StatelessRandomUniformV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessSampleDistortedBoundingBoxInst> for Operation

source§

fn from(inst: StatelessSampleDistortedBoundingBoxInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessShuffleInst> for Operation

source§

fn from(inst: StatelessShuffleInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessTruncatedNormalInst> for Operation

source§

fn from(inst: StatelessTruncatedNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessTruncatedNormalV2Inst> for Operation

source§

fn from(inst: StatelessTruncatedNormalV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatelessWhileInst> for Operation

source§

fn from(inst: StatelessWhileInst) -> Operation

Converts to this type from the input type.
source§

impl From<StaticRegexFullMatchInst> for Operation

source§

fn from(inst: StaticRegexFullMatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<StaticRegexReplaceInst> for Operation

source§

fn from(inst: StaticRegexReplaceInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatsAggregatorHandleInst> for Operation

source§

fn from(inst: StatsAggregatorHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatsAggregatorHandleV2Inst> for Operation

source§

fn from(inst: StatsAggregatorHandleV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StatsAggregatorSetSummaryWriterInst> for Operation

source§

fn from(inst: StatsAggregatorSetSummaryWriterInst) -> Operation

Converts to this type from the input type.
source§

impl From<StatsAggregatorSummaryInst> for Operation

source§

fn from(inst: StatsAggregatorSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<StochasticCastToIntInst> for Operation

source§

fn from(inst: StochasticCastToIntInst) -> Operation

Converts to this type from the input type.
source§

impl From<StopGradientInst> for Operation

source§

fn from(inst: StopGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<StridedSliceAssignInst> for Operation

source§

fn from(inst: StridedSliceAssignInst) -> Operation

Converts to this type from the input type.
source§

impl From<StridedSliceGradInst> for Operation

source§

fn from(inst: StridedSliceGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<StridedSliceInst> for Operation

source§

fn from(inst: StridedSliceInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringFormatInst> for Operation

source§

fn from(inst: StringFormatInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringJoinInst> for Operation

source§

fn from(inst: StringJoinInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringLengthInst> for Operation

source§

fn from(inst: StringLengthInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringLowerInst> for Operation

source§

fn from(inst: StringLowerInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringNGramsInst> for Operation

source§

fn from(inst: StringNGramsInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringSplitInst> for Operation

source§

fn from(inst: StringSplitInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringSplitV2Inst> for Operation

source§

fn from(inst: StringSplitV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<StringStripInst> for Operation

source§

fn from(inst: StringStripInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringToHashBucketFastInst> for Operation

source§

fn from(inst: StringToHashBucketFastInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringToHashBucketInst> for Operation

source§

fn from(inst: StringToHashBucketInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringToHashBucketStrongInst> for Operation

source§

fn from(inst: StringToHashBucketStrongInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringToNumberInst> for Operation

source§

fn from(inst: StringToNumberInst) -> Operation

Converts to this type from the input type.
source§

impl From<StringUpperInst> for Operation

source§

fn from(inst: StringUpperInst) -> Operation

Converts to this type from the input type.
source§

impl From<SubInst> for Operation

source§

fn from(inst: SubInst) -> Operation

Converts to this type from the input type.
source§

impl From<SubstrInst> for Operation

source§

fn from(inst: SubstrInst) -> Operation

Converts to this type from the input type.
source§

impl From<SumInst> for Operation

source§

fn from(inst: SumInst) -> Operation

Converts to this type from the input type.
source§

impl From<SummaryWriterInst> for Operation

source§

fn from(inst: SummaryWriterInst) -> Operation

Converts to this type from the input type.
source§

impl From<SvdInst> for Operation

source§

fn from(inst: SvdInst) -> Operation

Converts to this type from the input type.
source§

impl From<SwitchInst> for Operation

source§

fn from(inst: SwitchInst) -> Operation

Converts to this type from the input type.
source§

impl From<SymbolicGradientInst> for Operation

source§

fn from(inst: SymbolicGradientInst) -> Operation

Converts to this type from the input type.
source§

impl From<SyncDeviceInst> for Operation

source§

fn from(inst: SyncDeviceInst) -> Operation

Converts to this type from the input type.
source§

impl From<TFRecordDatasetInst> for Operation

source§

fn from(inst: TFRecordDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<TFRecordReaderInst> for Operation

source§

fn from(inst: TFRecordReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<TFRecordReaderV2Inst> for Operation

source§

fn from(inst: TFRecordReaderV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUCompilationResultInst> for Operation

source§

fn from(inst: TPUCompilationResultInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUCompileInst> for Operation

source§

fn from(inst: TPUCompileInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUCompileSucceededAssertInst> for Operation

source§

fn from(inst: TPUCompileSucceededAssertInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUEmbeddingActivationsInst> for Operation

source§

fn from(inst: TPUEmbeddingActivationsInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUExecuteAndUpdateVariablesInst> for Operation

source§

fn from(inst: TPUExecuteAndUpdateVariablesInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUExecuteInst> for Operation

source§

fn from(inst: TPUExecuteInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUOrdinalSelectorInst> for Operation

source§

fn from(inst: TPUOrdinalSelectorInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUPartitionedCallInst> for Operation

source§

fn from(inst: TPUPartitionedCallInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUPartitionedInputInst> for Operation

source§

fn from(inst: TPUPartitionedInputInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUPartitionedInputV2Inst> for Operation

source§

fn from(inst: TPUPartitionedInputV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUPartitionedOutputInst> for Operation

source§

fn from(inst: TPUPartitionedOutputInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUPartitionedOutputV2Inst> for Operation

source§

fn from(inst: TPUPartitionedOutputV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUReplicateMetadataInst> for Operation

source§

fn from(inst: TPUReplicateMetadataInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUReplicatedInputInst> for Operation

source§

fn from(inst: TPUReplicatedInputInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUReplicatedOutputInst> for Operation

source§

fn from(inst: TPUReplicatedOutputInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPUReshardVariablesInst> for Operation

source§

fn from(inst: TPUReshardVariablesInst) -> Operation

Converts to this type from the input type.
source§

impl From<TPURoundRobinInst> for Operation

source§

fn from(inst: TPURoundRobinInst) -> Operation

Converts to this type from the input type.
source§

impl From<TakeDatasetInst> for Operation

source§

fn from(inst: TakeDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<TakeManySparseFromTensorsMapInst> for Operation

source§

fn from(inst: TakeManySparseFromTensorsMapInst) -> Operation

Converts to this type from the input type.
source§

impl From<TakeWhileDatasetInst> for Operation

source§

fn from(inst: TakeWhileDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<TanInst> for Operation

source§

fn from(inst: TanInst) -> Operation

Converts to this type from the input type.
source§

impl From<TanhGradInst> for Operation

source§

fn from(inst: TanhGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<TanhInst> for Operation

source§

fn from(inst: TanhInst) -> Operation

Converts to this type from the input type.
source§

impl From<TemporaryVariableInst> for Operation

source§

fn from(inst: TemporaryVariableInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayCloseInst> for Operation

source§

fn from(inst: TensorArrayCloseInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayCloseV2Inst> for Operation

source§

fn from(inst: TensorArrayCloseV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayCloseV3Inst> for Operation

source§

fn from(inst: TensorArrayCloseV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayConcatInst> for Operation

source§

fn from(inst: TensorArrayConcatInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayConcatV2Inst> for Operation

source§

fn from(inst: TensorArrayConcatV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayConcatV3Inst> for Operation

source§

fn from(inst: TensorArrayConcatV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayGatherInst> for Operation

source§

fn from(inst: TensorArrayGatherInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayGatherV2Inst> for Operation

source§

fn from(inst: TensorArrayGatherV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayGatherV3Inst> for Operation

source§

fn from(inst: TensorArrayGatherV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayGradInst> for Operation

source§

fn from(inst: TensorArrayGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayGradV2Inst> for Operation

source§

fn from(inst: TensorArrayGradV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayGradV3Inst> for Operation

source§

fn from(inst: TensorArrayGradV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayGradWithShapeInst> for Operation

source§

fn from(inst: TensorArrayGradWithShapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayInst> for Operation

source§

fn from(inst: TensorArrayInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayPackInst> for Operation

source§

fn from(inst: TensorArrayPackInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayReadInst> for Operation

source§

fn from(inst: TensorArrayReadInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayReadV2Inst> for Operation

source§

fn from(inst: TensorArrayReadV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayReadV3Inst> for Operation

source§

fn from(inst: TensorArrayReadV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayScatterInst> for Operation

source§

fn from(inst: TensorArrayScatterInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayScatterV2Inst> for Operation

source§

fn from(inst: TensorArrayScatterV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayScatterV3Inst> for Operation

source§

fn from(inst: TensorArrayScatterV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArraySizeInst> for Operation

source§

fn from(inst: TensorArraySizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArraySizeV2Inst> for Operation

source§

fn from(inst: TensorArraySizeV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArraySizeV3Inst> for Operation

source§

fn from(inst: TensorArraySizeV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArraySplitInst> for Operation

source§

fn from(inst: TensorArraySplitInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArraySplitV2Inst> for Operation

source§

fn from(inst: TensorArraySplitV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArraySplitV3Inst> for Operation

source§

fn from(inst: TensorArraySplitV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayUnpackInst> for Operation

source§

fn from(inst: TensorArrayUnpackInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayV2Inst> for Operation

source§

fn from(inst: TensorArrayV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayV3Inst> for Operation

source§

fn from(inst: TensorArrayV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayWriteInst> for Operation

source§

fn from(inst: TensorArrayWriteInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayWriteV2Inst> for Operation

source§

fn from(inst: TensorArrayWriteV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorArrayWriteV3Inst> for Operation

source§

fn from(inst: TensorArrayWriteV3Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorDatasetInst> for Operation

source§

fn from(inst: TensorDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListConcatInst> for Operation

source§

fn from(inst: TensorListConcatInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListConcatListsInst> for Operation

source§

fn from(inst: TensorListConcatListsInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListConcatV2Inst> for Operation

source§

fn from(inst: TensorListConcatV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListElementShapeInst> for Operation

source§

fn from(inst: TensorListElementShapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListFromTensorInst> for Operation

source§

fn from(inst: TensorListFromTensorInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListGatherInst> for Operation

source§

fn from(inst: TensorListGatherInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListGetItemInst> for Operation

source§

fn from(inst: TensorListGetItemInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListLengthInst> for Operation

source§

fn from(inst: TensorListLengthInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListPopBackInst> for Operation

source§

fn from(inst: TensorListPopBackInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListPushBackBatchInst> for Operation

source§

fn from(inst: TensorListPushBackBatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListPushBackInst> for Operation

source§

fn from(inst: TensorListPushBackInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListReserveInst> for Operation

source§

fn from(inst: TensorListReserveInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListResizeInst> for Operation

source§

fn from(inst: TensorListResizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListScatterInst> for Operation

source§

fn from(inst: TensorListScatterInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListScatterIntoExistingListInst> for Operation

source§

fn from(inst: TensorListScatterIntoExistingListInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListScatterV2Inst> for Operation

source§

fn from(inst: TensorListScatterV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListSetItemInst> for Operation

source§

fn from(inst: TensorListSetItemInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListSplitInst> for Operation

source§

fn from(inst: TensorListSplitInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorListStackInst> for Operation

source§

fn from(inst: TensorListStackInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorMapEraseInst> for Operation

source§

fn from(inst: TensorMapEraseInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorMapHasKeyInst> for Operation

source§

fn from(inst: TensorMapHasKeyInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorMapInsertInst> for Operation

source§

fn from(inst: TensorMapInsertInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorMapLookupInst> for Operation

source§

fn from(inst: TensorMapLookupInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorMapSizeInst> for Operation

source§

fn from(inst: TensorMapSizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorMapStackKeysInst> for Operation

source§

fn from(inst: TensorMapStackKeysInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorScatterAddInst> for Operation

source§

fn from(inst: TensorScatterAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorScatterMaxInst> for Operation

source§

fn from(inst: TensorScatterMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorScatterMinInst> for Operation

source§

fn from(inst: TensorScatterMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorScatterSubInst> for Operation

source§

fn from(inst: TensorScatterSubInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorScatterUpdateInst> for Operation

source§

fn from(inst: TensorScatterUpdateInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorSliceDatasetInst> for Operation

source§

fn from(inst: TensorSliceDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorStridedSliceUpdateInst> for Operation

source§

fn from(inst: TensorStridedSliceUpdateInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorSummaryInst> for Operation

source§

fn from(inst: TensorSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<TensorSummaryV2Inst> for Operation

source§

fn from(inst: TensorSummaryV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TextLineDatasetInst> for Operation

source§

fn from(inst: TextLineDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<TextLineReaderInst> for Operation

source§

fn from(inst: TextLineReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<TextLineReaderV2Inst> for Operation

source§

fn from(inst: TextLineReaderV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<ThreadPoolDatasetInst> for Operation

source§

fn from(inst: ThreadPoolDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<ThreadPoolHandleInst> for Operation

source§

fn from(inst: ThreadPoolHandleInst) -> Operation

Converts to this type from the input type.
source§

impl From<ThreadUnsafeUnigramCandidateSamplerInst> for Operation

source§

fn from(inst: ThreadUnsafeUnigramCandidateSamplerInst) -> Operation

Converts to this type from the input type.
source§

impl From<TileGradInst> for Operation

source§

fn from(inst: TileGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<TileInst> for Operation

source§

fn from(inst: TileInst) -> Operation

Converts to this type from the input type.
source§

impl From<TimestampInst> for Operation

source§

fn from(inst: TimestampInst) -> Operation

Converts to this type from the input type.
source§

impl From<ToBoolInst> for Operation

source§

fn from(inst: ToBoolInst) -> Operation

Converts to this type from the input type.
source§

impl From<TopKInst> for Operation

source§

fn from(inst: TopKInst) -> Operation

Converts to this type from the input type.
source§

impl From<TopKUniqueInst> for Operation

source§

fn from(inst: TopKUniqueInst) -> Operation

Converts to this type from the input type.
source§

impl From<TopKV2Inst> for Operation

source§

fn from(inst: TopKV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<TopKWithUniqueInst> for Operation

source§

fn from(inst: TopKWithUniqueInst) -> Operation

Converts to this type from the input type.
source§

impl From<TpuHandleToProtoKeyInst> for Operation

source§

fn from(inst: TpuHandleToProtoKeyInst) -> Operation

Converts to this type from the input type.
source§

impl From<TransposeInst> for Operation

source§

fn from(inst: TransposeInst) -> Operation

Converts to this type from the input type.
source§

impl From<TridiagonalMatMulInst> for Operation

source§

fn from(inst: TridiagonalMatMulInst) -> Operation

Converts to this type from the input type.
source§

impl From<TridiagonalSolveInst> for Operation

source§

fn from(inst: TridiagonalSolveInst) -> Operation

Converts to this type from the input type.
source§

impl From<TruncateDivInst> for Operation

source§

fn from(inst: TruncateDivInst) -> Operation

Converts to this type from the input type.
source§

impl From<TruncateModInst> for Operation

source§

fn from(inst: TruncateModInst) -> Operation

Converts to this type from the input type.
source§

impl From<TruncatedNormalInst> for Operation

source§

fn from(inst: TruncatedNormalInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnbatchDatasetInst> for Operation

source§

fn from(inst: UnbatchDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnbatchGradInst> for Operation

source§

fn from(inst: UnbatchGradInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnbatchInst> for Operation

source§

fn from(inst: UnbatchInst) -> Operation

Converts to this type from the input type.
source§

impl From<UncompressElementInst> for Operation

source§

fn from(inst: UncompressElementInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnicodeDecodeInst> for Operation

source§

fn from(inst: UnicodeDecodeInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnicodeDecodeWithOffsetsInst> for Operation

source§

fn from(inst: UnicodeDecodeWithOffsetsInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnicodeEncodeInst> for Operation

source§

fn from(inst: UnicodeEncodeInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnicodeScriptInst> for Operation

source§

fn from(inst: UnicodeScriptInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnicodeTranscodeInst> for Operation

source§

fn from(inst: UnicodeTranscodeInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformCandidateSamplerInst> for Operation

source§

fn from(inst: UniformCandidateSamplerInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformDequantizeInst> for Operation

source§

fn from(inst: UniformDequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformQuantizeInst> for Operation

source§

fn from(inst: UniformQuantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformQuantizedAddInst> for Operation

source§

fn from(inst: UniformQuantizedAddInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformQuantizedClipByValueInst> for Operation

source§

fn from(inst: UniformQuantizedClipByValueInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformQuantizedConvolutionHybridInst> for Operation

source§

fn from(inst: UniformQuantizedConvolutionHybridInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformQuantizedConvolutionInst> for Operation

source§

fn from(inst: UniformQuantizedConvolutionInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformQuantizedDotHybridInst> for Operation

source§

fn from(inst: UniformQuantizedDotHybridInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformQuantizedDotInst> for Operation

source§

fn from(inst: UniformQuantizedDotInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniformRequantizeInst> for Operation

source§

fn from(inst: UniformRequantizeInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniqueDatasetInst> for Operation

source§

fn from(inst: UniqueDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniqueInst> for Operation

source§

fn from(inst: UniqueInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniqueV2Inst> for Operation

source§

fn from(inst: UniqueV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<UniqueWithCountsInst> for Operation

source§

fn from(inst: UniqueWithCountsInst) -> Operation

Converts to this type from the input type.
source§

impl From<UniqueWithCountsV2Inst> for Operation

source§

fn from(inst: UniqueWithCountsV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<UnpackInst> for Operation

source§

fn from(inst: UnpackInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnravelIndexInst> for Operation

source§

fn from(inst: UnravelIndexInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnsortedSegmentJoinInst> for Operation

source§

fn from(inst: UnsortedSegmentJoinInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnsortedSegmentMaxInst> for Operation

source§

fn from(inst: UnsortedSegmentMaxInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnsortedSegmentMinInst> for Operation

source§

fn from(inst: UnsortedSegmentMinInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnsortedSegmentProdInst> for Operation

source§

fn from(inst: UnsortedSegmentProdInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnsortedSegmentSumInst> for Operation

source§

fn from(inst: UnsortedSegmentSumInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnstageInst> for Operation

source§

fn from(inst: UnstageInst) -> Operation

Converts to this type from the input type.
source§

impl From<UnwrapDatasetVariantInst> for Operation

source§

fn from(inst: UnwrapDatasetVariantInst) -> Operation

Converts to this type from the input type.
source§

impl From<UpperBoundInst> for Operation

source§

fn from(inst: UpperBoundInst) -> Operation

Converts to this type from the input type.
source§

impl From<VarHandleOpInst> for Operation

source§

fn from(inst: VarHandleOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<VarIsInitializedOpInst> for Operation

source§

fn from(inst: VarIsInitializedOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<VariableInst> for Operation

source§

fn from(inst: VariableInst) -> Operation

Converts to this type from the input type.
source§

impl From<VariableShapeInst> for Operation

source§

fn from(inst: VariableShapeInst) -> Operation

Converts to this type from the input type.
source§

impl From<VariableV2Inst> for Operation

source§

fn from(inst: VariableV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<WhereInst> for Operation

source§

fn from(inst: WhereInst) -> Operation

Converts to this type from the input type.
source§

impl From<WhileInst> for Operation

source§

fn from(inst: WhileInst) -> Operation

Converts to this type from the input type.
source§

impl From<WholeFileReaderInst> for Operation

source§

fn from(inst: WholeFileReaderInst) -> Operation

Converts to this type from the input type.
source§

impl From<WholeFileReaderV2Inst> for Operation

source§

fn from(inst: WholeFileReaderV2Inst) -> Operation

Converts to this type from the input type.
source§

impl From<WindowDatasetInst> for Operation

source§

fn from(inst: WindowDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl From<WindowOpInst> for Operation

source§

fn from(inst: WindowOpInst) -> Operation

Converts to this type from the input type.
source§

impl From<WorkerHeartbeatInst> for Operation

source§

fn from(inst: WorkerHeartbeatInst) -> Operation

Converts to this type from the input type.
source§

impl From<WrapDatasetVariantInst> for Operation

source§

fn from(inst: WrapDatasetVariantInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteAudioSummaryInst> for Operation

source§

fn from(inst: WriteAudioSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteFileInst> for Operation

source§

fn from(inst: WriteFileInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteGraphSummaryInst> for Operation

source§

fn from(inst: WriteGraphSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteHistogramSummaryInst> for Operation

source§

fn from(inst: WriteHistogramSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteImageSummaryInst> for Operation

source§

fn from(inst: WriteImageSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteRawProtoSummaryInst> for Operation

source§

fn from(inst: WriteRawProtoSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteScalarSummaryInst> for Operation

source§

fn from(inst: WriteScalarSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<WriteSummaryInst> for Operation

source§

fn from(inst: WriteSummaryInst) -> Operation

Converts to this type from the input type.
source§

impl From<XdivyInst> for Operation

source§

fn from(inst: XdivyInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaConcatNDInst> for Operation

source§

fn from(inst: XlaConcatNDInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaHostComputeInst> for Operation

source§

fn from(inst: XlaHostComputeInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaRecvFromHostInst> for Operation

source§

fn from(inst: XlaRecvFromHostInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaRecvTPUEmbeddingActivationsInst> for Operation

source§

fn from(inst: XlaRecvTPUEmbeddingActivationsInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaRecvTPUEmbeddingDeduplicationDataInst> for Operation

source§

fn from(inst: XlaRecvTPUEmbeddingDeduplicationDataInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaSendTPUEmbeddingGradientsInst> for Operation

source§

fn from(inst: XlaSendTPUEmbeddingGradientsInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaSendToHostInst> for Operation

source§

fn from(inst: XlaSendToHostInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlaSplitNDInst> for Operation

source§

fn from(inst: XlaSplitNDInst) -> Operation

Converts to this type from the input type.
source§

impl From<Xlog1pyInst> for Operation

source§

fn from(inst: Xlog1pyInst) -> Operation

Converts to this type from the input type.
source§

impl From<XlogyInst> for Operation

source§

fn from(inst: XlogyInst) -> Operation

Converts to this type from the input type.
source§

impl From<ZerosLikeInst> for Operation

source§

fn from(inst: ZerosLikeInst) -> Operation

Converts to this type from the input type.
source§

impl From<ZetaInst> for Operation

source§

fn from(inst: ZetaInst) -> Operation

Converts to this type from the input type.
source§

impl From<ZipDatasetInst> for Operation

source§

fn from(inst: ZipDatasetInst) -> Operation

Converts to this type from the input type.
source§

impl Send for Operation

source§

impl Sync for Operation

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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.