| 1679 | }; |
| 1680 | |
| 1681 | inline flatbuffers::Offset<InnerProduct> CreateInnerProduct( |
| 1682 | flatbuffers::FlatBufferBuilder &_fbb, |
| 1683 | int32_t outputCount = 0, |
| 1684 | int32_t biasTerm = 0, |
| 1685 | int32_t weightSize = 0, |
| 1686 | flatbuffers::Offset<flatbuffers::Vector<float>> weight = 0, |
| 1687 | flatbuffers::Offset<flatbuffers::Vector<float>> bias = 0, |
| 1688 | int32_t axis = 0, |
| 1689 | bool transpose = false, |
| 1690 | flatbuffers::Offset<IDSTQuan> quanParameter = 0) { |
| 1691 | InnerProductBuilder builder_(_fbb); |
| 1692 | builder_.add_quanParameter(quanParameter); |
| 1693 | builder_.add_axis(axis); |
| 1694 | builder_.add_bias(bias); |
| 1695 | builder_.add_weight(weight); |
| 1696 | builder_.add_weightSize(weightSize); |
| 1697 | builder_.add_biasTerm(biasTerm); |
| 1698 | builder_.add_outputCount(outputCount); |
| 1699 | builder_.add_transpose(transpose); |
| 1700 | return builder_.Finish(); |
| 1701 | } |
| 1702 | |
| 1703 | flatbuffers::Offset<InnerProduct> CreateInnerProduct(flatbuffers::FlatBufferBuilder &_fbb, const InnerProductT *_o, const flatbuffers::rehasher_function_t *_rehasher = nullptr); |
| 1704 |
no test coverage detected