Skip to content

Commit

Permalink
#17863: Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
VirdhatchaniKN committed Mar 7, 2025
1 parent d08fede commit 81dbc2d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,4 @@ def run(
momentum=momentum,
)

print([check_with_pcc(torch_result, output_tensor, 0.99), e2e_perf])
return [check_with_pcc(torch_result, output_tensor, 0.99), e2e_perf]
5 changes: 0 additions & 5 deletions tests/sweep_framework/sweeps_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,6 @@ def run(test_module, input_queue, output_queue):
output_queue.put([status, message, e2e_perf, perf_result])
else:
output_queue.put([status, message, e2e_perf, None])
if not status:
print("-----------------------")
print("current parameter ", test_vector)
print("STATUS", status)
print("message", message)
except Empty as e:
try:
# Run teardown in mesh_device_fixture
Expand Down

0 comments on commit 81dbc2d

Please sign in to comment.