MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / is_symmetric

Function is_symmetric

arm_compute/core/Utils.h:249–252  ·  view source on GitHub ↗

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 */

Source from the content-addressed store, hash-verified

247 * @return True if padding is symmetric
248 */
249inline 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.

Callers 1

validate_argumentsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected