| 44 | struct FlowEstimatorBuildResult { |
| 45 | core::TensorValue output; |
| 46 | ggml_tensor * first_stage_state = nullptr; |
| 47 | }; |
| 48 | |
| 49 | void require_assets(const HeartMuLaAssets & assets) { |
| 50 | if (assets.codec_weights == nullptr) { |
| 51 | throw std::runtime_error("HeartCodec requires codec weights"); |
| 52 | } |
| 53 | } |
no outgoing calls
no test coverage detected