diff --git a/tools/experimental/torchfuzz/multi_process_fuzzer.py b/tools/experimental/torchfuzz/multi_process_fuzzer.py index 1a602dbf4842..18cc3b62ee25 100644 --- a/tools/experimental/torchfuzz/multi_process_fuzzer.py +++ b/tools/experimental/torchfuzz/multi_process_fuzzer.py @@ -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"), ]