Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
#### Added
- Added support for H100 traces.
- (Experimental) Support to read PyTorch Execution Trace and correlate it with PyTorch Profiler Trace.
- (Experimental) Update suport for Execution Trace with old and new schema

#### Changed

Expand Down
2 changes: 1 addition & 1 deletion tests/test_execution_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from hta.trace_analysis import TraceAnalysis


class TraceAnalysisTestCase(unittest.TestCase):
class ExecutionTraceTestCase(unittest.TestCase):
def setUp(self):
self.execution_trace_dir: str = "tests/data/execution_trace/"
self.analyzer_t = TraceAnalysis(trace_dir=self.execution_trace_dir)
Expand Down