mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-04-30 20:55:17 +00:00
7 lines
103 B
Python
7 lines
103 B
Python
from enum import Enum
|
|
|
|
|
|
class TensorType(Enum):
|
|
MODEL = 0
|
|
NONMODEL = 1 # mainly activations
|