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.
filter_traceback
1 parent 087b046 commit cabdcdcCopy full SHA for cabdcdc
python/triton/compiler/compiler.py
@@ -190,10 +190,9 @@ def filter_traceback(e: BaseException):
190
filter_traceback(e.__context__)
191
192
# If a user has a file that matches one of these, they're out of luck.
193
- sep = os.sep
194
BAD_FILES = [
195
- f"{sep}triton{sep}compiler{sep}code_generator.py",
196
- f"{sep}ast.py",
+ "/triton/compiler/code_generator.py",
+ "/ast.py",
197
]
198
BAD_FILES = [bad_file.replace("/", os.sep) for bad_file in BAD_FILES]
199
0 commit comments