Skip to content

Commit

Permalink
remove breakpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
  • Loading branch information
kylesayrs committed Dec 19, 2024
1 parent 5b43fd4 commit ae895ef
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ def update_scale_zp(module: torch.nn.Module, base_name: str, value: torch.Tensor

# per tensor quantization just calls calculate_qparams directly
min_val, max_val = torch.aminmax(value)
breakpoint()
scale, zp = calculate_qparams(min_val, max_val, args)
update_parameter_data(module, scale, f"{base_name}_scale")
update_parameter_data(module, zp, f"{base_name}_zero_point")
Expand Down

0 comments on commit ae895ef

Please sign in to comment.