Click or drag to resize

GraphBatchMatMul Method

https://www.emgu.com/wiki/index.php/Emgu_TF
BatchMatMul

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation BatchMatMul(
	Output x,
	Output y,
	bool adj_x = false,
	bool adj_y = false,
	bool grad_x = false,
	bool grad_y = false,
	string opName = "BatchMatMul"
)

Parameters

x
Type: Emgu.TFOutput
Input to the operation.
y
Type: Emgu.TFOutput
Input to the operation.
adj_x (Optional)
Type: SystemBoolean
adj x
adj_y (Optional)
Type: SystemBoolean
adj y
grad_x (Optional)
Type: SystemBoolean
grad x
grad_y (Optional)
Type: SystemBoolean
grad y
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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