stft: remove non-center overload and python functional wrapper#77257
stft: remove non-center overload and python functional wrapper#77257peterbell10 wants to merge 1 commit intogh/peterbell10/322/basefrom
Conversation
This brings the C++ API of stft into sync with the python API, and adds the required upgraders to ensure backward compatibility for TorchScript models. [ghstack-poisoned]
🔗 Helpful links
❌ 9 New FailuresAs of commit 5e69452 (more details on the Dr. CI page): Expand to see more
🕵️ 9 new failures recognized by patternsThe following CI failures do not appear to be due to upstream breakages
|
| self.assertEqual(output, output_expected) | ||
|
|
||
| def test_versioned_stft_v10(self): | ||
| model_path = pytorch_test_dir + "/jit/fixtures/test_versioned_stft_v10.ptl" |
There was a problem hiding this comment.
These upgrader tests using .ptl models pass fine, but non-lite models don't work at all as reported in #73434 (comment)
Are my upgraders just configured incorrectly, or do upgraders only work with the lite interpreter?
|
Looks like this PR hasn't been updated in a while so we're going to go ahead and mark this as |
|
/easycla As part of the transition to the PyTorch Foundation, this project now requires contributions be covered under the new CLA. See #85559 for additional details. This comment will trigger a new check of this PR. If you are already covered, you will simply see a new "EasyCLA" check that passes. If you are not covered, a bot will leave a new comment with a link to sign. |
|
Stack from ghstack (oldest at bottom):
This brings the C++ API of stft into sync with the python API, and
adds the required upgraders to ensure backward compatibility for
TorchScript models.