| 163 | } |
| 164 | |
| 165 | Status CpuDirectConv3dKernel::validate(const ITensorInfo *src0, |
| 166 | const ITensorInfo *src1, |
| 167 | const ITensorInfo *src2, |
| 168 | const ITensorInfo *dst, |
| 169 | const Conv3dInfo &conv_info) |
| 170 | { |
| 171 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "CpuDirectConv3dKernel::validate"); |
| 172 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src0, src1, src2, dst, conv_info)); |
| 173 | return Status{}; |
| 174 | } |
| 175 | |
| 176 | void CpuDirectConv3dKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info) |
| 177 | { |
nothing calls this directly
no test coverage detected