| 44 | // Represents the dimension indexes of an activations tensor format. |
| 45 | struct TensorDimMap { |
| 46 | int n() const { return dim_n; } |
| 47 | int h() const { return dim_h; } |
| 48 | int w() const { return dim_w; } |
| 49 | int c() const { return dim_c; } |
no outgoing calls
no test coverage detected