Click or drag to resize

GraphXlaCustomCallV2 Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Emits an HLO `CustomCall` operation with multiple outputs.

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation XlaCustomCallV2(
	Output operands,
	string call_target_name,
	string backend_config,
	bool has_side_effect,
	DataType[] result_dtypes,
	long[][] result_shapes,
	string opName = "XlaCustomCallV2"
)

Parameters

operands
Type: Emgu.TFOutput
Input to the operation: A sequence of tensors with possibly different types.
call_target_name
Type: SystemString
Name of the user function. The function signature must conform to version 3 of the API, see `API_VERSION_STATUS_RETURNING_UNIFIED`. All operands and results assumed to be in the default layout.
backend_config
Type: SystemString
A string that encodes a metadata for the backend.
has_side_effect
Type: SystemBoolean
Indicates whether the custom call has side effects.
result_dtypes
Type: Emgu.TFDataType
Types of all results.
result_shapes
Type: SystemInt64
Shapes of all results.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] results(type: DtInvalid).
See Also