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
/// Returns a serialized KernelList protocol buffer containing KernelDefs for all registered kernels
108
+
/// </summary>
109
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
110
+
/// <returns>The all registered kernels.</returns>
/// Returns a serialized KernelList protocol buffer containing KernelDefs for all
125
+
/// kernels registered for the operation specified.
126
+
/// </summary>
127
+
/// <param name="name">The operation to look up.</param>
128
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
129
+
/// <returns>The registered kernels for the specified operation.</returns>
/// Adds a gradient: the operations needed to compute the partial derivatives of sum of <paramref name="y"/>` wrt to <paramref name="x"/>.
1138
+
/// </summary>
1139
+
/// <returns>The partial derivatives, the size of the array is the same as the length of the <paramref name="y"/> array.</returns>
1140
+
/// <param name="prefix">names the scope into which all gradients operations are being added. This must be unique within
1141
+
/// the provided graph otherwise this operation will fail. If the value is null, the default prefixing behaviour takes
1142
+
/// place, see AddGradients for more details.
1143
+
/// </param>
1144
+
/// <param name="y">The y elements.</param>
1145
+
/// <param name="x">The x elements.</param>
1146
+
/// <param name="dx">Initial gradients, which represent the symbolic partial derivatives of some loss function `L` w.r.t. <paramref name="y"/> ).
1147
+
/// If the parameter is null, the implementation will use dx for 'OnesLike' for all shapes in <paramref name="y"/></param>
1148
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
0 commit comments