From dfd679b0ec779a27e12abce2fa1d1e2d526ea669 Mon Sep 17 00:00:00 2001 From: "Weishi.Deng" Date: Wed, 19 Jun 2024 00:01:58 +0800 Subject: [PATCH] Enable deterministic for mkldnn ops (#424) add deterministic PR into PR list --- .github/scripts/apply_torch_pr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/apply_torch_pr.py b/.github/scripts/apply_torch_pr.py index 0555ea7e1..c1e1b05e0 100644 --- a/.github/scripts/apply_torch_pr.py +++ b/.github/scripts/apply_torch_pr.py @@ -11,6 +11,8 @@ default=[ # Fallback to CPU for XPU FP64 "https://github.com/pytorch/pytorch/pull/126516", + # Enable deterministic for mkldnn ops + "https://github.com/pytorch/pytorch/pull/127277" ] ) parser.add_argument('--extra-pr-list', '-e', nargs='+',default=[])