| 68 | } |
| 69 | |
| 70 | size_t ConvolutionBackwardDataImpl::ncb_1g_get_workspace( |
| 71 | Algorithm* algo, const NCBKernSizeParam& param) { |
| 72 | if (algo->handle_type() == Handle::HandleType::ARM_COMMON) { |
| 73 | return static_cast<AlgoBase*>(algo)->get_workspace(this, param); |
| 74 | } |
| 75 | return fallback::ConvolutionBackwardDataImpl::ncb_1g_get_workspace(algo, param); |
| 76 | } |
| 77 | |
| 78 | const char* ConvolutionBackwardDataImpl::get_algorithm_set_name() const { |
| 79 | // arm common version 0 |
nothing calls this directly
no test coverage detected