| 36 | } |
| 37 | |
| 38 | bool ConstNode::forward_descriptors() |
| 39 | { |
| 40 | if (output_id(0) != NullTensorID) |
| 41 | { |
| 42 | Tensor *t = output(0); |
| 43 | ARM_COMPUTE_ERROR_ON(t == nullptr); |
| 44 | t->desc() = configure_output(0); |
| 45 | return true; |
| 46 | } |
| 47 | return false; |
| 48 | } |
| 49 | |
| 50 | TensorDescriptor ConstNode::configure_output(size_t idx) const |
| 51 | { |
no outgoing calls
no test coverage detected