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

Method validate

src/gpu/cl/kernels/ClCol2ImKernel.cpp:159–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159Status ClCol2ImKernel::validate(const ITensorInfo *src,
160 const ITensorInfo *dst,
161 const Size2D &convolved_dims,
162 unsigned int num_groups)
163{
164 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
165 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, convolved_dims, num_groups));
166 ARM_COMPUTE_RETURN_ON_ERROR(
167 validate_and_configure_window(src->clone().get(), dst->clone().get(), convolved_dims, num_groups).first);
168 return Status{};
169}
170
171void ClCol2ImKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
172{

Callers

nothing calls this directly

Calls 4

validate_argumentsFunction · 0.70
getMethod · 0.45
cloneMethod · 0.45

Tested by

no test coverage detected