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

Class Conv1dModule

include/engine/framework/modules/conv_modules.h:25–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23};
24
25class Conv1dModule {
26public:
27 explicit Conv1dModule(Conv1dConfig config);
28
29 const Conv1dConfig & config() const noexcept;
30 const core::ModuleSchema & schema() const noexcept;
31
32 core::TensorValue build(
33 core::ModuleBuildContext & ctx,
34 const core::TensorValue & input,
35 const Conv1dWeights & weights) const;
36
37 static const core::ModuleSchema & static_schema() noexcept;
38
39private:
40 Conv1dConfig config_;
41};
42
43// Raw Metal fast paths on channel-fast activations (ne = [channels, frames], contiguous
44// F32) for the audio codec decoder's chained regions. Unlike the module build() methods

Callers 15

buildMethod · 0.85
buildMethod · 0.85
buildMethod · 0.85
buildMethod · 0.85
grouped_pos_convFunction · 0.85
build_wavlm_graph_layersFunction · 0.85
grouped_pos_convFunction · 0.85
build_hubert_graphFunction · 0.85
conv1dFunction · 0.85
activation1dFunction · 0.85
buildMethod · 0.85
build_residual_unitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected