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

Function conv1d

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

Source from the content-addressed store, hash-verified

181}
182
183template <typename Store, typename TensorData>
184NormWeights norm_data(Store & store, const TensorData & weight) {
185 return {tensor_data(store, weight), std::nullopt};
186}
187
188template <typename Store, typename TensorData>
189NormWeights norm_data(Store & store, const TensorData & weight, const TensorData & bias) {
190 return {tensor_data(store, weight), tensor_data(store, bias)};
191}
192
193template <typename Store, typename WeightValues>
194NormWeights norm(
195 Store & store,
196 const WeightValues & weight) {
197 return {

Callers

nothing calls this directly

Calls 1

tensorFunction · 0.85

Tested by

no test coverage detected