Check if the 3D padding is symmetric i.e. padding in each opposite sides are euqal (left=right, top=bottom and front=back) * * @param[in] info @ref Padding3D input 3D padding object to check if it is symmetric * * @return True if padding is symmetric */
| 247 | * @return True if padding is symmetric |
| 248 | */ |
| 249 | inline bool is_symmetric(const Padding3D &info) |
| 250 | { |
| 251 | return ((info.left == info.right) && (info.top == info.bottom) && (info.front == info.back)); |
| 252 | } |
| 253 | /** Translates a given GEMMLowp output stage to a string. |
| 254 | * |
| 255 | * @param[in] output_stage @ref GEMMLowpOutputStageInfo to be translated to string. |
no outgoing calls
no test coverage detected