Expand description
Optimized operations integration layer
This module provides a unified interface for using the various optimization modules (SIMD, tiled reductions, vectorized broadcasting) based on executor configuration and tensor characteristics.
§Strategy
- Check executor configuration flags
- Check tensor characteristics (size, shape)
- Select the best implementation:
- Optimized version if enabled and beneficial
- Standard version otherwise
§Performance
The integration layer adds minimal overhead (a few boolean checks) while providing significant speedups for applicable operations.