mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-08-23 10:11:37 +00:00
* [misc] update pre-commit * [misc] run pre-commit * [misc] remove useless configuration files * [misc] ignore cuda for clang-format
10 lines
254 B
Python
10 lines
254 B
Python
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")
|