Handle extractor-specific parameters.
320 {
321 if (name == "method") {
322 if (auto* method_str = std::any_cast<std::string>(&value)) {
324 return;
325 }
326 if (auto* method_enum = std::any_cast<ExtractionMethod>(&value)) {
328 return;
329 }
331 }
332
333 if (name == "window_size") {
334 if (auto* size = std::any_cast<uint32_t>(&value)) {
337 return;
338 }
339 }
340 if (name == "hop_size") {
341 if (auto* size = std::any_cast<uint32_t>(&value)) {
344 return;
345 }
346 }
347
349 }
@ ComputeMatrix
Compute operations (Yantra - algorithms, matrices, DSP)
@ Yantra
DSP algorithms, computational units, matrix operations, Grammar.