[PyTorch] Adopt IValue::toTupleRef() where obvious (#65505)

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

Generated with

`fastmod -m 'toTuple\(\)(\s*)->' 'toTupleRef()${1}.'`

, followed by

`fastmod '(std::move\(.*)toTupleRef\(\).' '${1}toTuple()->'`

to unbreak 2 callsites.
ghstack-source-id: 142065835

Test Plan: CI

Reviewed By: gchanan

Differential Revision: D31131025

fbshipit-source-id: 54457ae5bbeb38db9c7f196d469b98521c3d3f34
This commit is contained in:
Scott Wolchok
2021-11-02 10:13:02 -07:00
committed by Facebook GitHub Bot
parent eb1b8a2160
commit 82f7f8d471
45 changed files with 96 additions and 95 deletions

View File

@ -256,7 +256,7 @@ int main(int argc, char** argv) {
std::cerr << "Model has only " << all_inputs.size() << " bundled inputs." << std::endl;
return 1;
}
inputs = all_inputs.get(FLAGS_use_bundled_input).toTuple()->elements();
inputs = all_inputs.get(FLAGS_use_bundled_input).toTupleRef().elements();
}
#ifdef BUILD_LITE_INTERPRETER