base/array: Broadened dispatches for dot operators to AbstractArray.#650
Merged
ViralBShah merged 1 commit intoJuliaLang:masterfrom Apr 1, 2012
Merged
base/array: Broadened dispatches for dot operators to AbstractArray.#650ViralBShah merged 1 commit intoJuliaLang:masterfrom
ViralBShah merged 1 commit intoJuliaLang:masterfrom
Conversation
This fixes some uses for amap(), which generates SubArrays. !(SubArray <: Array), so trying to dot-multiply the SubArray by a vector (for instance) fell back on the standard * operator.
ViralBShah
added a commit
that referenced
this pull request
Apr 1, 2012
base/array: Broadened dispatches for dot operators to AbstractArray.
jishnub
pushed a commit
that referenced
this pull request
Oct 19, 2025
Stdlib: SparseArrays URL: https://github.com/JuliaSparse/SparseArrays.jl.git Stdlib branch: main Julia branch: master Old commit: 6fe51f2 New commit: 26c80c8 Julia version: 1.13.0-DEV SparseArrays version: 1.13.0 Bump invoked by: @IanButterworth Powered by: [BumpStdlibs.jl](https://github.com/JuliaLang/BumpStdlibs.jl) Diff: JuliaSparse/SparseArrays.jl@6fe51f2...26c80c8 ``` $ git log --oneline 6fe51f2..26c80c8 26c80c8 `ReadOnly`: do not add single-argument methods to `eachindex`, etc (#653) 15ec056 `ReadOnly`: slightly restrict the dispatch on the `setindex!` method (#652) 306605d cholmod: correct the `IndexStyle` method additions (#650) 74aaeeb `ReadOnly` fixes: prevent adding some methods of `size`, `axes`, `eltype` (#649) b823108 Bump actions/checkout from 4 to 5 (#647) ``` Co-authored-by: IanButterworth <1694067+IanButterworth@users.noreply.github.com>
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.
This fixes some uses for
amap(), which generates SubArrays.!(SubArray <: Array), so trying to dot-multiply the SubArray by a vector (for instance) fell back on the standard*operator.This allows an
amap()-based solution to @dmbates model matrix update problem (potentially ill-advised, but it bothered me that it didn't work):