Optimize QR decomposition with SIMD operations in Householder transfo…#73
Closed
Optimize QR decomposition with SIMD operations in Householder transfo…#73
Conversation
Optimize QR decomposition with SIMD operations in Householder transfo… …rmations - Replace manual scalar dot products with SpanMath.dotUnchecked for SIMD acceleration - Optimize row updates in updateQ with vectorized operations - Add zero-check optimization to skip unnecessary work - Achieve 19-44% speedup across matrix sizes (1.23-1.78× faster) Performance improvements: - 10×10: 5.108 μs → 4.140 μs (19.0% faster) - 30×30: 72.857 μs → 44.644 μs (38.7% faster) - 50×50: 302.220 μs → 169.798 μs (43.8% faster) All 1381 tests pass with no change in allocations. 🤖 Generated with Claude Code (https://claude.com/claude-code) Original-PR: dsyme/FsMath#1 Original-Author: dsyme
Contributor
📊 Code Coverage ReportSummary
📈 Coverage Analysis🟡 Good Coverage Your code coverage is above 60%. Consider adding more tests to reach 80%. 🎯 Coverage Goals
📋 What These Numbers Mean
🔗 Detailed Reports📋 Download Full Coverage Report - Check the 'coverage-report' artifact for detailed HTML coverage report Coverage report generated on 2025-10-15 at 23:44:38 UTC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…rmations
Performance improvements:
All 1381 tests pass with no change in allocations.
🤖 Generated with Claude Code (https://claude.com/claude-code)
Transferred from: dsyme/FsMath#1
Original Author: @dsyme