Add example results

This commit is contained in:
Thomas Farstrike
2025-04-22 13:31:26 +02:00
parent 63cfeb8b2e
commit 652c7cb466
2 changed files with 34 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
# Example results for ESP32-S3 with 8MB SPIRAM:
# Test Summary:
# Busy loop: 153018.20 iterations/second
# Busy loop with yield: 40303.37 iterations/second
# SHA-256 (1KB): 7357.60 iterations/second
import time
import hashlib
import os
+28
View File
@@ -1,3 +1,31 @@
# Example results for ESP32-S3 with 8MB SPIRAM:
#
#=== Memory Allocation Test Summary ===
#Buffer Size (bytes) | Max Buffers Allocated
#----------------------------------------
# 2 | 25762
# 4 | 25760
# 8 | 25771
# 16 | 25759
# 32 | 35541
# 64 | 11276
# 128 | 6517
# 256 | 3521
# 512 | 1832
# 1024 | 932
# 2048 | 466
# 4096 | 232
# 8192 | 115
# 16384 | 56
# 32768 | 26
# 65536 | 12
# 131072 | 9
# 262144 | 4
# 524288 | 2
# 1048576 | 1
# 2097152 | 0
#=====================================
import gc
import time