-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generic tiled matrix multiply with a single algorithm (Lapack fallback)
This is the fastest version yet.
- Loading branch information
Showing
2 changed files
with
114 additions
and
78 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
f597671
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. Throw in a little Polly and we might just have JLBLAS.
f597671
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This commit broke multiplication on my 32bit Ubuntu 12.04 machine. I checked by this by checking out the previous commit.
julia> [1 2; 3 4]*[1 2; 3 4]
no method pointer_to_array(Ptr{Int32},(Int64,Int64),Bool)
in method_missing at base.jl:70
in _jl_generic_matmatmul at linalg_dense.jl:143
in _jl_generic_matmatmul at linalg_dense.jl:128
in * at linalg_dense.jl:123