You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/TensorFlowNET.Core/Operations/gen_math_ops.cs
+59Lines changed: 59 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,58 @@ public static Tensor squared_difference(Tensor x, Tensor y, string name = null)
48
48
return_op.outputs[0];
49
49
}
50
50
51
+
/// <summary>
52
+
/// Computes square of x element-wise.
53
+
/// </summary>
54
+
/// <param name="x"> A `Tensor`. Must be one of the following types: `bfloat16`, `half`, `float32`, `float64`, `int32`, `int64`, `complex64`, `complex128`.</param>
55
+
/// <param name="name"> A name for the operation (optional).</param>
56
+
/// <returns> A `Tensor`. Has the same type as `x`.</returns>
0 commit comments