MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / conv_transpose1d

Function conv_transpose1d

include/engine/framework/modules/weight_binding.h:227–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225Conv1dWeights conv1d_data(Store & store, const TensorData & weight, const std::optional<TensorData> & bias) {
226 return bias.has_value() ? conv1d_data(store, weight, *bias) : conv1d_data(store, weight);
227}
228
229template <typename Store, typename TensorData>
230Conv2dWeights conv2d_data(Store & store, const TensorData & weight) {
231 return {tensor_data(store, weight), std::nullopt};
232}
233
234template <typename Store, typename WeightData, typename BiasData>
235Conv2dWeights conv2d_data(Store & store, const WeightData & weight, const BiasData & bias) {
236 return {tensor_data(store, weight), tensor_data(store, bias)};
237}
238
239template <typename Store, typename TensorData>
240Conv2dWeights conv2d_data(Store & store, const TensorData & weight, const std::optional<TensorData> & bias) {

Callers

nothing calls this directly

Calls 1

tensorFunction · 0.85

Tested by

no test coverage detected