|
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_dotprod_f32_ansi (const float *src1, const float *src2, float *dest, int len) |
| dot product of two float vectors Dot product calculation for two floating point arrays: *dest += (src1[i] * src2[i]); 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_dotprod_f32_ansi | ( | const float * | src1, |
| const float * | src2, | ||
| float * | dest, | ||
| int | len ) |
dot product of two float vectors Dot product calculation for two floating point arrays: *dest += (src1[i] * src2[i]); 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 |
Definition at line 17 of file dsps_dotprod_f32_ansi.c.
References ESP_OK.