mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-09-22 09:59:38 +00:00
* [autoparallel] refactor tracer to fix bias addition issue * [fx] support module with bias addition * create bias_addition_module * refactor file structure * polish code * fix unit test
15 lines
537 B
Python
15 lines
537 B
Python
import torch
|
|
|
|
from ...registry import meta_patched_function
|
|
|
|
|
|
@meta_patched_function.register(torch.nn.functional.embedding)
|
|
def torch_nn_functional_embedding(input,
|
|
weight,
|
|
padding_idx=None,
|
|
max_norm=None,
|
|
norm_type=2.0,
|
|
scale_grad_by_freq=False,
|
|
sparse=False):
|
|
return torch.empty(*input.shape, weight.shape[-1], device="meta")
|