We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57abd23 commit 93b18dfCopy full SHA for 93b18df
lglpy/timeline/data/processed_trace.py
@@ -61,7 +61,7 @@ class GPUWorkload:
61
PARENS = re.compile(r'(\(.*\))')
62
RESOLUTION = re.compile(r'\d+x\d+')
63
WHITESPACE = re.compile(r'\s\s+')
64
- MEMO = dict()
+ MEMO: dict[str, str] = dict()
65
66
@classmethod
67
def memoize(cls, string: str) -> str:
lglpy/timeline/data/raw_trace.py
@@ -300,7 +300,7 @@ class MetadataWorkload:
300
label_stack: Debug label stack, or None if no user labels.
301
'''
302
303
304
305
306
0 commit comments