[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:
bobrenjc93
2025-10-16 14:11:00 -07:00
committed by PyTorch MergeBot
parent 11e2084308
commit d0add0be43

View File

@ -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"),
]