\brief Get the operation for an input tensor. \param index Input tensor number (0 or 1). \see setOperation()
| 4609 | //! \see setOperation() |
| 4610 | //! |
| 4611 | MatrixOperation getOperation(int32_t index) const noexcept |
| 4612 | { |
| 4613 | return mImpl->getOperation(index); |
| 4614 | } |
| 4615 | |
| 4616 | protected: |
| 4617 | apiv::VMatrixMultiplyLayer* mImpl; |
nothing calls this directly
no test coverage detected