Skip to content

Commit 01b5a55

Browse files
committed
change order of report
1 parent c71be04 commit 01b5a55

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/post_training/experimental/sparsify_activations/test_sparsify_activations_conformance.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import yaml
1717

1818
from tests.post_training.experimental.sparsify_activations.model_scope import SPARSIFY_ACTIVATIONS_TEST_CASES
19-
from tests.post_training.experimental.sparsify_activations.pipelines import SARunInfo
19+
from tests.post_training.pipelines.base import RunInfo
2020
from tests.post_training.test_quantize_conformance import fixture_batch_size # noqa: F401
2121
from tests.post_training.test_quantize_conformance import fixture_data # noqa: F401
2222
from tests.post_training.test_quantize_conformance import fixture_extra_columns # noqa: F401
@@ -46,7 +46,7 @@ def test_sparsify_activations(
4646
test_case_name: str,
4747
data_dir: Path,
4848
output_dir: Path,
49-
result_data: Dict[str, SARunInfo],
49+
result_data: Dict[str, RunInfo],
5050
no_eval: bool,
5151
batch_size: int,
5252
run_fp32_backend: bool,

tests/post_training/pipelines/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ def get_result_dict(self) -> Dict[str, str]:
208208
"Metric name": self.metric_name,
209209
"Metric value": self.metric_value,
210210
"Metric diff": self.metric_diff,
211-
"Compr. time": self.format_time(self.time_compression),
212211
**self.num_compress_nodes.get_compression_numbers(),
212+
"Compr. time": self.format_time(self.time_compression),
213213
**self.stats_from_output.get_stats(),
214214
"Total time": self.format_time(self.time_total),
215215
"FPS": self.fps,

0 commit comments

Comments
 (0)