mpt-7b-rag / fc.py
epec254's picture
Upload 21 files
8d1f370
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