Skip to content

Commit 2b47519

Browse files
committed
Standardize on .metadata as filename for GPU timeline
1 parent a6adb86 commit 2b47519

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ pve
1010
build*
1111

1212
# Data files and build outputs
13-
*.gputl
1413
*.log
1514
*.metadata
1615
*.perfetto

lglpy/timeline/gui/window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def load_file(self, trace_file, metadata_file=None):
339339
if not metadata_file:
340340
postfix = '.perfetto'
341341
if trace_file.endswith(postfix):
342-
metadata_file = f'{trace_file[:-len(postfix)]}.gputl'
342+
metadata_file = f'{trace_file[:-len(postfix)]}.metadata'
343343

344344
if not os.path.exists(metadata_file):
345345
metadata_file = None

0 commit comments

Comments
 (0)