ttnn.angle_bw doesn't support bfloat8_b on input_tensor_a. Fatal error "Unsupported DataType" is thrown when input_tensor_a has bfloat8_b.
To Reproduce
Steps to reproduce the behavior:
Sweep test for angle_bw is located in 'tests/sweep_framework/sweeps/eltwise/unary_complex/angle_bw/angle_bw.py'
Checkout main branch
Go to 'tests/sweep_framework/sweeps/eltwise/unary_complex/angle_bw/angle_bw.py'
Remove next lines of code from the invalidate_vector function:
if test_vector["input_a_dtype"] == ttnn.bfloat8_b:
return True, "bfloat8_b is not supported on input_tensor_a"
Generate new parameter vectors and run the sweep test
ttnn.angle_bw doesn't support bfloat8_b on input_tensor_a. Fatal error "Unsupported DataType" is thrown when input_tensor_a has bfloat8_b.
To Reproduce Steps to reproduce the behavior: Sweep test for angle_bw is located in 'tests/sweep_framework/sweeps/eltwise/unary_complex/angle_bw/angle_bw.py'
https://github.com/tenstorrent/tt-metal/tree/main/tests/sweep_framework
Expected behavior For vectors with
input_a_dtype
being bfloat8_b, test will fail with the message "Unsupported DataType".