diff --git a/ivy_tests/test_ivy/test_frontends/test_torch/test_nn/test_functional/test_convolution_functions.py b/ivy_tests/test_ivy/test_frontends/test_torch/test_nn/test_functional/test_convolution_functions.py index de8d285f5d7d3..6c69aa5b0dddd 100644 --- a/ivy_tests/test_ivy/test_frontends/test_torch/test_nn/test_functional/test_convolution_functions.py +++ b/ivy_tests/test_ivy/test_frontends/test_torch/test_nn/test_functional/test_convolution_functions.py @@ -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,