Skip to content

Commit

Permalink
[PyTorch Edge] Extend LinearPackedParamsBase __getstate__/__setstate_…
Browse files Browse the repository at this point in the history
…_ deadline in check_forward_backward_compatibility.py Allowlist (pytorch#81135)

Summary:
We will not be able to remove it from the allowlist today, and it is set to expire on that list today.

Diff to remove: D37686915

Test Plan: CI Tests

Differential Revision: D37726313

Pull Request resolved: pytorch#81135
Approved by: https://github.com/kimishpatel
  • Loading branch information
salilsdesai authored and pytorchmergebot committed Jul 9, 2022
1 parent 8f562a8 commit 0097be4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@
("aten::_foreach.*", datetime.date(2022, 8, 1)),
# TODO: FIXME: prims shouldn't be checked
("prims::.*", datetime.date(9999, 1, 1)),
(r"__getstate__\(__torch__.torch.classes.sparse.LinearPackedParamsBase", datetime.date(2022, 7, 8)),
(r"__setstate__\(__torch__.torch.classes.sparse.LinearPackedParamsBase", datetime.date(2022, 7, 8)),
(r"__getstate__\(__torch__.torch.classes.sparse.LinearPackedParamsBase", datetime.date(2022, 7, 15)),
(r"__setstate__\(__torch__.torch.classes.sparse.LinearPackedParamsBase", datetime.date(2022, 7, 15)),
]

ALLOW_LIST_COMPILED = [
Expand Down

0 comments on commit 0097be4

Please sign in to comment.