sealiontune / fc.py
Kurkur99's picture
Upload 24 files
114547e verified
raw
history blame contribute delete
No virus
167 Bytes
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