Skip to content

Commit

Permalink
#tensorflow fix breakage caused from PR #62362
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 591279603
  • Loading branch information
jimlinntu authored and copybara-github committed Dec 15, 2023
1 parent 70174a8 commit fa06aee
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions site/en/guide/extension_type.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1822,13 +1822,17 @@
" transpose_a=False, transpose_b=False,\n",
" adjoint_a=False, adjoint_b=False,\n",
" a_is_sparse=False, b_is_sparse=False,\n",
" output_type=None):\n",
" output_type=None,\n",
" grad_a=False, grad_b=False,\n",
" name=None,\n",
" ):\n",
" if isinstance(a, MaskedTensor):\n",
" a = a.with_default(0)\n",
" if isinstance(b, MaskedTensor):\n",
" b = b.with_default(0)\n",
" return tf.matmul(a, b, transpose_a, transpose_b, adjoint_a,\n",
" adjoint_b, a_is_sparse, b_is_sparse, output_type)"
" adjoint_b, a_is_sparse, b_is_sparse,\n",
" output_type)"
]
},
{
Expand Down

0 comments on commit fa06aee

Please sign in to comment.