| 141 | } |
| 142 | |
| 143 | Status CpuDepthwiseConv2d::CpuDepthwiseConv2dOptimizedInternal::validate(const ITensorInfo *src, |
| 144 | const ITensorInfo *weights, |
| 145 | const ITensorInfo *biases, |
| 146 | const ITensorInfo *dst, |
| 147 | const ConvolutionInfo &info) |
| 148 | { |
| 149 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, |
| 150 | "CpuDepthwiseConv2d::CpuDepthwiseConv2dOptimizedInternal::validate"); |
| 151 | return validate_arguments_optimized(src, weights, biases, dst, info); |
| 152 | } |
| 153 | |
| 154 | void CpuDepthwiseConv2d::CpuDepthwiseConv2dOptimizedInternal::run(ITensorPack &tensors) |
| 155 | { |
nothing calls this directly
no test coverage detected