[BackwardCompatibility] Remove aten::to from allow_list (#60147)

Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/60147

Remove aten::to from allow_list now that the aten::to schema change has landed (D29121620 (eda2ddb5b0)).

Test Plan: CI

Reviewed By: iseeyuan

Differential Revision: D29187314

fbshipit-source-id: abdb5a560287a861f3858732f7b3da342ee4aa55
This commit is contained in:
Hao Lu 2021-06-24 22:56:53 -07:00 committed by Facebook GitHub Bot
parent 3ca28656fa
commit 2b51a8a935

View File

@ -98,7 +98,6 @@ allow_list = [
("aten::segment_reduce_backward", datetime.date(2021, 6, 15)),
("aten::segment_reduce", datetime.date(2021, 8, 26)),
("aten::_segment_reduce_backward", datetime.date(2021, 8, 26)),
("aten::to", datetime.date(2021, 6, 22)),
]
def allow_listed(schema, allow_list):