Skip to content

Conversation

@dkarrasch
Copy link
Member

jishnub and others added 2 commits December 16, 2025 11:59
This should fix #1519. The issue on master is that we have specialized
dispatches for arrays of the same eltype, and the complex-real matmul
ends up in `generic_matmatmul!`. This adds an extra method to ensure
that the complex-real case also reaches BLAS.

```julia
julia> A = ones(ComplexF64, 400, 400); B = ones(size(A)); C = similar(A);

julia> @Btime mul!($C, $A, $B);
  57.043 ms (0 allocations: 0 bytes) # master
  1.608 ms (0 allocations: 0 bytes) # this PR
```
Fix #1496
JuliaLinearAlgebra/AppleAccelerate.jl#87

Co-authored-by: Viral B. Shah <ViralBShah@users.noreply.github.com>
@codecov
Copy link

codecov bot commented Dec 16, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.70%. Comparing base (b17cd17) to head (7923683).
⚠️ Report is 4 commits behind head on release-1.12.

Additional details and impacted files
@@               Coverage Diff                @@
##           release-1.12    #1524      +/-   ##
================================================
+ Coverage         93.63%   93.70%   +0.06%     
================================================
  Files                34       34              
  Lines             15481    15477       -4     
================================================
+ Hits              14495    14502       +7     
+ Misses              986      975      -11     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@dkarrasch dkarrasch merged commit dd3ea72 into release-1.12 Dec 16, 2025
4 checks passed
@dkarrasch dkarrasch deleted the backports-release-1.12 branch December 16, 2025 11:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants