Skip to content

Commit

Permalink
reduced verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
jbedichekTT committed Feb 26, 2025
1 parent 5d710ec commit 894b00f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/batch-experiment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# "models/resnet50/test_resnet50.py"
# "models/roberta/test_roberta.py"
"models/unet/test_unet.py"
# "models/hand_landmark/test_hand_landmark.py"
"models/hand_landmark/test_hand_landmark.py"
)
# Preprocess file paths
Expand All @@ -69,7 +69,7 @@ jobs:
done
TOTAL_TESTS=${#test_ids[@]}
TESTS_PER_GROUP=$(( TOTAL_TESTS / TOTAL_GROUPS ))
TESTS_PER_GROUP=1
START_INDEX=$(( (CURRENT_GROUP - 1) * TESTS_PER_GROUP ))
END_INDEX=$(( CURRENT_GROUP * TESTS_PER_GROUP ))
Expand Down
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def compile_and_run(device, reset_torch_dynamo, request):
model_name, option._aten_fx_graphs, option._out_fx_graphs, option._all_inputs
)

if len(option._out_fx_graphs) > 0:
option._out_fx_graphs[0].print_tabular()
# if len(option._out_fx_graphs) > 0:
# option._out_fx_graphs[0].print_tabular()

if model_name not in ["speecht5-tts", "ssd300_vgg16", "retinanet_resnet50_fpn_v2"]:
accuracy = calculate_accuracy(outputs, outputs_after)
Expand Down

0 comments on commit 894b00f

Please sign in to comment.