| 151 | |
| 152 | template <typename Store, typename TensorData> |
| 153 | Conv1dWeights conv1d_data(Store & store, const TensorData & weight) { |
| 154 | return {tensor_data(store, weight), std::nullopt}; |
| 155 | } |
| 156 | |
| 157 | template <typename Store, typename WeightData, typename BiasData> |
| 158 | Conv1dWeights conv1d_data(Store & store, const WeightData & weight, const BiasData & bias) { |
no test coverage detected