| 130 | |
| 131 | template <typename Store, typename WeightValues> |
| 132 | NormWeights norm( |
| 133 | Store & store, |
| 134 | const WeightValues & weight) { |
| 135 | return { |
| 136 | tensor(store, core::TensorShape::from_dims({static_cast<int64_t>(weight.size())}), weight), |
| 137 | std::nullopt, |
| 138 | }; |
| 139 | } |
| 140 | |
| 141 | template <typename Store, typename WeightValues, typename BiasValues> |
| 142 | NormWeights norm( |
no test coverage detected