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.
29 lines
945 B
29 lines
945 B
import torch.nn as nn
|
|
from colossalai.context import ParallelMode, seed
|
|
|
|
from ..parallel_1d import *
|
|
from ..utils import get_tensor_parallel_mode
|
|
|
|
|
|
class Dropout(nn.Module):
|
|
"""Dropout layer of colossalai.
|
|
|
|
Args:
|
|
p (float, optional): probability of an element to be zeroed, defaults 0.5.
|
|
inplace (bool, optional): whether to do dropout in-place, default to be False.
|
|
"""
|
|
def __init__(self, p: float = 0.5, inplace: bool = False) -> None:
|
|
super().__init__()
|
|
self.tensor_parallel = get_tensor_parallel_mode()
|
|
if self.tensor_parallel == '1d':
|
|
self.drop = Dropout1D(p, inplace)
|
|
else:
|
|
self.drop = nn.Dropout(p, inplace)
|
|
|
|
def forward(self, *args):
|
|
if self.tensor_parallel in [None, '1d']:
|
|
return self.drop(*args)
|
|
else:
|
|
with seed(ParallelMode.TENSOR):
|
|
return self.drop(*args)
|