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

Method validate

src/gpu/cl/kernels/ClMulKernel.cpp:293–305  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

291}
292
293Status ClMulKernel::validate(const ITensorInfo *src1,
294 const ITensorInfo *src2,
295 const ITensorInfo *dst,
296 float scale,
297 ConvertPolicy overflow_policy,
298 RoundingPolicy rounding_policy,
299 const ActivationLayerInfo &act_info)
300{
301 ARM_COMPUTE_ERROR_ON_NULLPTR(src1, src2, dst);
302 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src1, src2, dst, scale, overflow_policy, rounding_policy, act_info));
303
304 return Status{};
305}
306
307void ClMulKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
308{

Callers

nothing calls this directly

Calls 2

validate_argumentsFunction · 0.70

Tested by

no test coverage detected