Skip to content

Commit

Permalink
fix: fixed frontend test test_torch_unfold for paddle backend by ex…
Browse files Browse the repository at this point in the history
…cluding bfloat16(#28601)
  • Loading branch information
ZenithFlux authored Mar 21, 2024
1 parent 8e745cc commit a2b5fc6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,9 @@ def test_torch_unfold(
backend_fw,
):
dtype, vals, kernel_shape, dilations, strides, padding = dtype_vals
# TODO add bfloat16 to unsupported dtypes of the tested function
if backend_fw == "paddle":
assume("bfloat16" not in dtype[0])
helpers.test_frontend_function(
input_dtypes=dtype,
backend_to_test=backend_fw,
Expand Down

0 comments on commit a2b5fc6

Please sign in to comment.