Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ UNRELEASED
----------

* ADDED: `xcommon_cmake` support for `lib_vnr`
* REMOVED: IC example
* CHANGED: Merged `fwk_voice::vnr::features` and `fwk_voice::vnr::inference` cmake targets into `fwk_voice::vnr`
* CHANGED: Moved the VNR model into `modules/lib_vnr/python/model/trained_model.tflite`
* CHANGED: Moved the VNR MEL generation script into `modules/lib_vnr/python/gen_mel_filters.py`
Expand Down
8 changes: 2 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,6 @@ pipeline {
// Make sure 1 thread and 2 threads output is bitexact
sh "diff output.wav ../aec_1_thread/output.wav"
}
dir("examples/bare-metal/ic") {
sh "python ../shared_src/python/run_xcoreai.py ../../../build/examples/bare-metal/ic/bin/fwk_voice_example_bare_metal_ic.xe"
sh "mv output.wav ic_example_output.wav"
}
dir("examples/bare-metal/pipeline_single_threaded") {
sh "python ../shared_src/python/run_xcoreai.py ../../../build/examples/bare-metal/pipeline_single_threaded/bin/fwk_voice_example_bare_metal_pipeline_single_thread.xe --input ../shared_src/test_streams/pipeline_example_input.wav"
}
Expand Down Expand Up @@ -311,7 +307,7 @@ pipeline {
junit "pytest_result.xml"
}
dir("test_ic_profile"){
sh "pytest --junitxml=pytest_result.xml"
sh "pytest -s --junitxml=pytest_result.xml"
junit "pytest_result.xml"
}
dir("test_ic_spec"){
Expand All @@ -329,7 +325,7 @@ pipeline {
dir("characterise_c_py"){
// This test compares the suppression performance across angles between model and C implementation
// and fails if they differ significantly. It requires that the C implementation run with fixed mu
sh "pytest -s --junitxml=pytest_result.xml" // -n 2 fails often so run single threaded and also print result
sh "pytest -s --junitxml=pytest_result.xml"
junit "pytest_result.xml"
// This script sweeps the y_delay value to find what the optimum suppression is across RT60 and angle.
// It's more of a model develpment tool than testing the implementation so not run. It take a few minutes.
Expand Down
2 changes: 0 additions & 2 deletions examples/bare-metal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ set( CONFIG_XSCOPE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/shared_src/etc )

add_subdirectory( shared_src )

add_subdirectory( ic )

add_subdirectory( aec_1_thread )

add_subdirectory( agc )
Expand Down
1 change: 0 additions & 1 deletion examples/bare-metal/doc/ic.rst

This file was deleted.

Binary file removed examples/bare-metal/doc/ic_output.png
Binary file not shown.
1 change: 0 additions & 1 deletion examples/bare-metal/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ build step has been completed prior to this.
aec_1_thread
aec_2_threads
vnr
ic
agc
pipeline_single_threaded
pipeline_multi_threaded
Expand Down
53 changes: 0 additions & 53 deletions examples/bare-metal/ic/CMakeLists.txt

This file was deleted.

74 changes: 0 additions & 74 deletions examples/bare-metal/ic/README.rst

This file was deleted.

102 changes: 0 additions & 102 deletions examples/bare-metal/ic/src/dump_var_py.c

This file was deleted.

16 changes: 0 additions & 16 deletions examples/bare-metal/ic/src/dump_var_py.h

This file was deleted.

Loading