| 137 | |
| 138 | |
| 139 | class ActivationOp(enum.Enum): |
| 140 | DGelu = enum_auto() |
| 141 | Gelu = enum_auto() |
| 142 | GeluTaylor = enum_auto() |
| 143 | HardSwish = enum_auto() |
| 144 | Identity = enum_auto() |
| 145 | LeakyReLU = enum_auto() |
| 146 | ReLU = enum_auto() |
| 147 | Sigmoid = enum_auto() |
| 148 | SiLU = enum_auto() |
| 149 | Tanh = enum_auto() |
| 150 | |
| 151 | |
| 152 | ActivationOpTag = { |
nothing calls this directly
no test coverage detected