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

Method collapsed_from

arm_compute/core/TensorShape.h:166–171  ·  view source on GitHub ↗

Return a copy with collapsed dimensions starting from a given point. * * @param[in] start Starting point of collapsing dimensions. * * @return A copy with collapse dimensions starting from start. */

Source from the content-addressed store, hash-verified

164 * @return A copy with collapse dimensions starting from start.
165 */
166 TensorShape collapsed_from(size_t start) const
167 {
168 TensorShape copy(*this);
169 copy.collapse(num_dimensions() - start, start);
170 return copy;
171 }
172
173 /** Collapses all dimensions to a single linear total size.
174 *

Callers 13

configureMethod · 0.80
run_opMethod · 0.80
run_opMethod · 0.80
runMethod · 0.80
configureMethod · 0.80
runMethod · 0.80
scatter_neonFunction · 0.80
TensorShape.cppFile · 0.80
compute_referenceMethod · 0.80
compute_referenceMethod · 0.80
compute_referenceMethod · 0.80

Calls 1

collapseMethod · 0.45

Tested by

no test coverage detected