You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**Performance Benchmarks**| ⚠️ **Limited**| May hang | Complex analysis may timeout on large datasets |
376
+
377
+
#### **Known Issue: Performance Benchmarks**
378
+
The `examples/performance_benchmarks.exs` may hang when processing large datasets (5000+ objects). This is a computational complexity issue, not a library bug:
379
+
380
+
```bash
381
+
# These work fine:
382
+
mix run examples/performance_benchmarks.exs # May hang on large datasets
383
+
384
+
# Alternatives that complete successfully:
385
+
mix run examples/quick_performance.exs # Lightweight performance testing
386
+
mix run examples/simple_stress_test.exs # Stress testing without hanging
387
+
```
388
+
389
+
**Workaround**: For comprehensive benchmarking, use smaller dataset sizes or the quick performance example which provides sufficient performance insights.
390
+
391
+
#### **Recent Fixes (v0.1.1)**
392
+
- ✅ Fixed all compilation warnings across example files
393
+
- ✅ Corrected pattern matching for layer return values
394
+
- ✅ Added division-by-zero protection in throughput calculations
0 commit comments