Revert " fix missing-prototypes warnings in torch_cpu (Part 4) (#100849)"

This reverts commit c2f28d1c1df0db78f2951e4df5dde264f80f07eb.

Reverted https://github.com/pytorch/pytorch/pull/100849 on behalf of https://github.com/izaitsevfb due to fails internal Meta builds, including fbcode and android, see D46009888: ld.lld: error: undefined symbol: nnc_aten_embedding ([comment](https://github.com/pytorch/pytorch/pull/100849#issuecomment-1555105800))
This commit is contained in:
PyTorch MergeBot
2023-05-19 19:05:11 +00:00
parent 083f304d27
commit 498c34e8e8
137 changed files with 773 additions and 572 deletions

View File

@ -54,7 +54,7 @@ CompilationOptions getOptionsFromGlobal() {
return compilation_options;
}
static IValue to_tuple(std::initializer_list<IValue> ivalues) {
IValue to_tuple(std::initializer_list<IValue> ivalues) {
return c10::ivalue::Tuple::create(ivalues);
}