| 98 | return code; |
| 99 | } |
| 100 | ErrorCode DenseConvolutionTiledExecutor::onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) { |
| 101 | mInputs = {inputs[0], mResource->mWeight.get(), mResource->mBias.get()}; |
| 102 | auto code = mProxy->onResize(mInputs, outputs); |
| 103 | if (NO_ERROR != code) { |
| 104 | return code; |
| 105 | } |
| 106 | return NO_ERROR; |
| 107 | } |
| 108 | |
| 109 | ErrorCode ConvolutionTiledExecutorMultiInput::onExecute(const std::vector<Tensor*>& inputs, |
| 110 | const std::vector<Tensor*>& outputs) { |
nothing calls this directly
no test coverage detected