mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
[torchfuzz] check in some more ignore regexes (#164749)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/164749 Approved by: https://github.com/pianpwk
This commit is contained in:
committed by
PyTorch MergeBot
parent
11e2084308
commit
d0add0be43
@ -66,6 +66,12 @@ IGNORE_PATTERNS: list[re.Pattern] = [
|
||||
re.compile(
|
||||
r"torch\._inductor\.exc\.InductorError: CppCompileError: C\+\+ compile error"
|
||||
), # https://github.com/pytorch/pytorch/issues/164686
|
||||
re.compile(
|
||||
r"\.item\(\) # dtype="
|
||||
), # https://github.com/pytorch/pytorch/issues/164725
|
||||
re.compile(
|
||||
r"dimensionality of sizes \(0\) must match dimensionality of strides \(1\)"
|
||||
), # https://github.com/pytorch/pytorch/issues/164814
|
||||
# Add more patterns here as needed, e.g.:
|
||||
# re.compile(r"Some other error message"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user