Python extensions for filter bank and stacker Signal Ops. (#2143)

Functionality to use the rest of the Signal Library OPs directly from python.

Test with `bazel run python/tflite_micro/signal:stacker_op_test` and `bazel run python/tflite_micro/signal:filter_bank_ops_test`

BUG=[287346710](http://b/287346710)
This commit is contained in:
suleshahid 2023-07-25 08:11:22 -07:00 committed by GitHub
parent bb3fda3a9c
commit e2cdefd520
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 4136 additions and 1 deletions

View file

@ -53,6 +53,10 @@ PythonOpsResolver::PythonOpsResolver() {
AddExpandDims();
AddFftAutoScale();
AddFill();
AddFilterBank();
AddFilterBankLog();
AddFilterBankSquareRoot();
AddFilterBankSpectralSubtraction();
AddFloor();
AddFloorDiv();
AddFloorMod();