Skip to content

Commit fa06aee

Browse files
jimlinntucopybara-github
authored andcommitted
#tensorflow fix breakage caused from PR #62362
PiperOrigin-RevId: 591279603
1 parent 70174a8 commit fa06aee

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

site/en/guide/extension_type.ipynb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1822,13 +1822,17 @@
18221822
" transpose_a=False, transpose_b=False,\n",
18231823
" adjoint_a=False, adjoint_b=False,\n",
18241824
" a_is_sparse=False, b_is_sparse=False,\n",
1825-
" output_type=None):\n",
1825+
" output_type=None,\n",
1826+
" grad_a=False, grad_b=False,\n",
1827+
" name=None,\n",
1828+
" ):\n",
18261829
" if isinstance(a, MaskedTensor):\n",
18271830
" a = a.with_default(0)\n",
18281831
" if isinstance(b, MaskedTensor):\n",
18291832
" b = b.with_default(0)\n",
18301833
" return tf.matmul(a, b, transpose_a, transpose_b, adjoint_a,\n",
1831-
" adjoint_b, a_is_sparse, b_is_sparse, output_type)"
1834+
" adjoint_b, a_is_sparse, b_is_sparse,\n",
1835+
" output_type)"
18321836
]
18331837
},
18341838
{

0 commit comments

Comments
 (0)