Standard names for fan mode
| 51 | |
| 52 | |
| 53 | class FAN_MODE(Type): |
| 54 | """Standard names for fan mode |
| 55 | """ |
| 56 | FAN_IN = 'FAN_IN' |
| 57 | FAN_OUT = "FAN_OUT" |
| 58 | |
| 59 | def str(self): |
| 60 | return ",".join([self.FAN_IN, self.FAN_OUT]) |
| 61 | |
| 62 | |
| 63 | def init_tensor(tensor, init_type=InitType.XAVIER_UNIFORM, low=0, high=1, |
nothing calls this directly
no outgoing calls
no test coverage detected