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

Class ReshapeModule

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

Source from the content-addressed store, hash-verified

12};
13
14class ReshapeModule {
15public:
16 explicit ReshapeModule(ReshapeConfig config);
17
18 const ReshapeConfig & config() const noexcept;
19 const core::ModuleSchema & schema() const noexcept;
20 core::TensorValue build(core::ModuleBuildContext & ctx, const core::TensorValue & input) const;
21 static const core::ModuleSchema & static_schema() noexcept;
22
23private:
24 ReshapeConfig config_;
25};
26
27struct TransposeConfig {
28 std::array<int, core::kMaxTensorRank> axes = {0, 1, 2, 3};

Callers 3

buildMethod · 0.85
ensure_chunk_graphMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected