[fx] refactored the file structure of patched function and module (#1238)

* [fx] refactored the file structure of patched function and module

* polish code
This commit is contained in:
Frank Lee
2022-07-12 15:01:58 +08:00
committed by GitHub
parent 17ed33350b
commit 7531c6271f
15 changed files with 353 additions and 318 deletions

View File

@@ -0,0 +1,8 @@
import torch
from ..registry import meta_patched_module
@meta_patched_module.register(torch.nn.Embedding)
def torch_nn_embedding(self, input):
result_shape = input.shape + (self.embedding_dim,)
return torch.empty(result_shape, device='meta')