Skip to content

Commit

Permalink
Update generated linear operator file.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 588541783
  • Loading branch information
jburnim authored and tensorflower-gardener committed Dec 6, 2023
1 parent 789843f commit 2bc58ba
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1675,7 +1675,10 @@ def _matmul( # pylint:disable=missing-docstring
a_is_sparse=False,
b_is_sparse=False,
output_type=None, # pylint: disable=unused-argument
name=None):
grad_a=False, # pylint: disable=unused-argument
grad_b=False, # pylint: disable=unused-argument
name=None,
):
if transpose_a or transpose_b:
raise ValueError("Transposing not supported at this time.")
if a_is_sparse or b_is_sparse:
Expand Down

0 comments on commit 2bc58ba

Please sign in to comment.