stallone's picture
Merged mosaicml/mpt-7b@1ec8e55 into main
93ead12
from torch import nn
FC_CLASS_REGISTRY = {'torch': nn.Linear}
try:
import transformer_engine.pytorch as te
FC_CLASS_REGISTRY['te'] = te.Linear
except:
pass