|
ESP-IDF Firmware
Firmware architecture and call graph
|
#include "dsps_dotprod.h"Go to the source code of this file.
Functions | |
| esp_err_t | dsps_dotprode_f32_ansi (const float *src1, const float *src2, float *dest, int len, int step1, int step2) |
| dot product of two float vectors with step Dot product calculation for two floating point arrays: *dest += (src1[i*step1] * src2[i*step2]); i= [0..N) The extension (_ansi) use ANSI C and could be compiled and run on any platform. The extension (_ae32) is optimized for ESP32 chip. | |
| esp_err_t dsps_dotprode_f32_ansi | ( | const float * | src1, |
| const float * | src2, | ||
| float * | dest, | ||
| int | len, | ||
| int | step1, | ||
| int | step2 ) |
dot product of two float vectors with step Dot product calculation for two floating point arrays: *dest += (src1[i*step1] * src2[i*step2]); i= [0..N) The extension (_ansi) use ANSI C and could be compiled and run on any platform. The extension (_ae32) is optimized for ESP32 chip.
| [in] | src1 | source array 1 |
| [in] | src2 | source array 2 |
| dest | destination pointer | |
| [in] | len | length of input arrays |
| [in] | step1 | step over elements in first array |
| [in] | step2 | step over elements in second array |
Definition at line 17 of file dsps_dotprode_f32_ansi.c.
References ESP_OK.