| 166 | |
| 167 | template <typename Store, typename TensorData> |
| 168 | Conv2dWeights conv2d_data(Store & store, const TensorData & weight) { |
| 169 | return {tensor_data(store, weight), std::nullopt}; |
| 170 | } |
| 171 | |
| 172 | template <typename Store, typename WeightData, typename BiasData> |
| 173 | Conv2dWeights conv2d_data(Store & store, const WeightData & weight, const BiasData & bias) { |
no test coverage detected