2018-10-25 12:52:32 +08:00
|
|
|
#pragma once
|
2017-11-08 12:27:57 +08:00
|
|
|
|
|
|
|
/* declare the performance here */
|
2018-02-01 09:57:00 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_HTTPS_REQUEST_BIN_SIZE 800
|
2017-11-08 12:27:57 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 200
|
2018-06-27 14:47:31 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM 300
|
2017-11-08 12:27:57 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
|
2018-02-07 15:45:10 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 30
|
2018-01-31 11:15:23 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 27
|
2018-01-31 11:15:23 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 15
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 15
|
2018-05-17 19:12:45 +08:00
|
|
|
/* Due to code size & linker layout differences interacting with cache, VFS
|
|
|
|
microbenchmark currently runs slower with PSRAM enabled. */
|
2018-11-23 08:07:59 +01:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME 20000
|
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM 25000
|
2018-01-07 20:28:09 +08:00
|
|
|
// throughput performance by iperf
|
2019-06-27 17:13:44 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT 45
|
2018-01-07 20:28:09 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT 40
|
2019-06-27 17:13:44 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT 64
|
2018-01-07 20:28:09 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT 50
|
2018-10-26 13:14:19 +08:00
|
|
|
// events dispatched per second by event loop library
|
2018-11-01 11:01:35 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 25000
|
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM 21000
|
2019-03-11 18:24:32 +11:00
|
|
|
// esp_sha() time to process 32KB of input data from RAM
|
2019-05-20 09:44:42 +10:00
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_TIME_SHA1_32KB 5000
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_TIME_SHA512_32KB 4500
|
|
|
|
// AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
|
2019-05-21 18:12:42 +10:00
|
|
|
#define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
|
2019-05-16 11:19:32 +08:00
|
|
|
// floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_DIV 70
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_SQRT 140
|
2019-05-20 09:44:42 +10:00
|
|
|
|