Skip to content

Commit

Permalink
#13646: Fix CI failure issue
Browse files Browse the repository at this point in the history
  • Loading branch information
umadevimcw committed Oct 25, 2024
1 parent c16cfb7 commit cecb29d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@pytest.mark.parametrize("dtype", (ttnn.bfloat16, ttnn.bfloat8_b))
def test_run_bcast_h_test(input_shapes, bcast_op_type, dtype, device, function_level_defaults):
datagen_func = [
generation_funcs.gen_func_with_cast(partial(generation_funcs.gen_rand, low=-100, high=100), torch.float32)
generation_funcs.gen_func_with_cast(partial(generation_funcs.gen_rand, low=-100, high=100), torch.bfloat16)
] * 2
comparison_func = partial(comparison_funcs.comp_pcc)
run_single_pytorch_test(
Expand Down Expand Up @@ -60,7 +60,7 @@ def test_run_bcast_h_test(input_shapes, bcast_op_type, dtype, device, function_l
@pytest.mark.parametrize("dtype", (ttnn.bfloat16, ttnn.bfloat8_b))
def test_run_bcast_w_test(input_shapes, bcast_op_type, dtype, device, function_level_defaults):
datagen_func = [
generation_funcs.gen_func_with_cast(partial(generation_funcs.gen_rand, low=-100, high=100), torch.float32)
generation_funcs.gen_func_with_cast(partial(generation_funcs.gen_rand, low=-100, high=100), torch.bfloat16)
] * 2
comparison_func = partial(comparison_funcs.comp_pcc)
run_single_pytorch_test(
Expand Down Expand Up @@ -93,7 +93,7 @@ def test_run_bcast_w_test(input_shapes, bcast_op_type, dtype, device, function_l
@pytest.mark.parametrize("dtype", (ttnn.bfloat16, ttnn.bfloat8_b))
def test_run_bcast_hw_test(input_shapes, bcast_op_type, dtype, device, function_level_defaults):
datagen_func = [
generation_funcs.gen_func_with_cast(partial(generation_funcs.gen_rand, low=-100, high=100), torch.float32)
generation_funcs.gen_func_with_cast(partial(generation_funcs.gen_rand, low=-100, high=100), torch.bfloat16)
] * 2
comparison_func = partial(comparison_funcs.comp_pcc)
run_single_pytorch_test(
Expand Down

0 comments on commit cecb29d

Please sign in to comment.