Skip to content

Commit 987a5f7

Browse files
authored
Speed up matrix multiplication (#701)
1 parent b6de5e3 commit 987a5f7

File tree

4 files changed

+179
-169
lines changed

4 files changed

+179
-169
lines changed

Project.toml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ version = "0.22.23"
77
CRlibm_jll = "4e9b3aee-d8a1-5a3d-ad8b-7d824db253f0"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
99
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
10+
OpenBLASConsistentFPCSR_jll = "6cdc7f73-28fd-5e50-80fb-958a8875b1af"
1011
RoundingEmulator = "5eaf0fd0-dfba-4ccb-bf02-d820a40db705"
1112

1213
[weakdeps]
@@ -28,6 +29,7 @@ ForwardDiff = "0.10"
2829
IntervalSets = "0.7"
2930
LinearAlgebra = "1.9"
3031
MacroTools = "0.5"
32+
OpenBLASConsistentFPCSR_jll = "0.3.29"
3133
RecipesBase = "1"
3234
RoundingEmulator = "0.2"
3335
julia = "1.9"

src/IntervalArithmetic.jl

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ include("symbols.jl")
3838
#
3939

4040
import LinearAlgebra
41+
import OpenBLASConsistentFPCSR_jll # 32-bit systems are not supported
4142

4243
include("matmul.jl")
4344

0 commit comments

Comments
 (0)