| 243 | } |
| 244 | |
| 245 | Status ClWinogradConv2d::validate(const ITensorInfo *src, |
| 246 | const ITensorInfo *weights, |
| 247 | const ITensorInfo *biases, |
| 248 | const ITensorInfo *dst, |
| 249 | const PadStrideInfo &conv_info, |
| 250 | const ActivationLayerInfo &act_info, |
| 251 | bool enable_fast_math) |
| 252 | { |
| 253 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, weights, biases, dst, conv_info, act_info, enable_fast_math)); |
| 254 | return Status{}; |
| 255 | } |
| 256 | |
| 257 | void ClWinogradConv2d::run(ITensorPack &tensors) |
| 258 | { |
nothing calls this directly
no test coverage detected