mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
308 B
9 lines
308 B
from .option import set_jit_fusion_options
|
|
from .bias_dropout_add import bias_dropout_add_fused_train, bias_dropout_add_fused_inference
|
|
from .bias_gelu import bias_gelu_impl
|
|
|
|
__all__ = [
|
|
"bias_dropout_add_fused_train", "bias_dropout_add_fused_inference", "bias_gelu_impl",
|
|
"set_jit_fusion_options"
|
|
]
|