-
Notifications
You must be signed in to change notification settings - Fork 663
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: CaCO3 <caco@ruinelli.ch>
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule esp-nn
updated
20 files
+20 −0 | .github/workflows/upload_component.yml | |
+58 −43 | .gitlab-ci.yml | |
+4 −3 | CMakeLists.txt | |
+38 −0 | CONTRIBUTING.md | |
+15 −13 | README.md | |
+11 −0 | idf_component.yml | |
+4 −4 | src/common/esp_nn_multiply_by_quantized_mult_ver1_esp32s3.S | |
+196 −390 | src/convolution/esp_nn_conv_esp32s3.c | |
+260 −0 | src/convolution/esp_nn_conv_s8_filter_aligned_input_padded_esp32s3.S | |
+22 −34 | src/convolution/esp_nn_conv_s8_mult8_1x1_esp32s3.S | |
+16 −61 | src/fully_connected/esp_nn_fully_connected_s8_esp32s3.S | |
+1 −1 | test_app/main/CMakeLists.txt | |
+24 −24 | test_app/main/main.c | |
+11 −15 | tests/include/test_utils.h | |
+21 −36 | tests/src/basic_math_test.c | |
+144 −91 | tests/src/convolution_test.c | |
+49 −29 | tests/src/fully_connected_test.c | |
+23 −25 | tests/src/pooling_test.c | |
+14 −20 | tests/src/relu_test.c | |
+21 −23 | tests/src/softmax_test.c |
Submodule esp32-camera
updated
20 files
+39 −79 | .github/workflows/build.yml | |
+2 −1 | .gitignore | |
+12 −1 | CMakeLists.txt | |
+1 −1 | README.md | |
+3 −5 | conversions/esp_jpg_decode.c | |
+20 −16 | driver/cam_hal.c | |
+9 −1 | driver/esp_camera.c | |
+21 −9 | driver/include/esp_camera.h | |
+2 −0 | driver/private_include/cam_hal.h | |
+5 −3 | driver/private_include/sccb.h | |
+3 −2 | driver/private_include/xclk.h | |
+57 −3 | driver/sccb.c | |
+12 −5 | examples/main/take_picture.c | |
+4 −4 | sensors/ov7670.c | |
+5 −1 | target/esp32/ll_cam.c | |
+1 −1 | target/esp32s2/ll_cam.c | |
+4 −0 | target/esp32s3/ll_cam.c | |
+99 −0 | target/jpeg_include/tjpgd.h | |
+0 −0 | target/tjpgd.c | |
+5 −1 | target/xclk.c |
Submodule tflite-micro-esp-examples
updated
from 095f55 to 1ccd7e