Skip to content

Commit 974c60c

Browse files
committed
refactoring
1 parent 59c5ea5 commit 974c60c

File tree

5 files changed

+477
-452
lines changed

5 files changed

+477
-452
lines changed

_doc/api/helpers/_log_helper.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
onnx_diagnostic.helpers._log_helper
3+
===================================
4+
5+
.. automodule:: onnx_diagnostic.helpers._log_helper
6+
:members:
7+
:no-undoc-members:

_doc/api/helpers/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ onnx_diagnostic.helpers
1313
doc_helper
1414
graph_helper
1515
helper
16+
_log_helper
1617
log_helper
1718
memory_peak
1819
mini_onnx_builder

_unittests/ut_helpers/test_log_helper.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@
66
import numpy as np
77
import pandas
88
from onnx_diagnostic.ext_test_case import ExtTestCase, hide_stdout
9-
from onnx_diagnostic.helpers.log_helper import (
10-
CubeLogs,
11-
CubeLogsPerformance,
12-
CubePlot,
13-
CubeViewDef,
9+
from onnx_diagnostic.helpers._log_helper import (
1410
enumerate_csv_files,
1511
open_dataframe,
1612
filter_data,
1713
mann_kendall,
1814
breaking_last_point,
1915
)
16+
from onnx_diagnostic.helpers.log_helper import (
17+
CubeLogs,
18+
CubeLogsPerformance,
19+
CubePlot,
20+
CubeViewDef,
21+
)
2022

2123

2224
class TestLogHelper(ExtTestCase):

0 commit comments

Comments
 (0)