mirror of https://github.com/hpcaitech/ColossalAI
7 lines
103 B
Python
7 lines
103 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class TensorType(Enum):
|
||
|
MODEL = 0
|
||
|
NONMODEL = 1 # mainly activations
|