Skip to content

Commit 0ab12d2

Browse files
authored
Merge pull request #10 from JuliaLinearAlgebra/adapt-blis2022jan
Adapt Upstream Object's Costomizable Fields
2 parents 11cf55b + d59a05e commit 0ab12d2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ blis_jll = "6136c539-28a5-5bf0-87cc-b183200dce32"
1414

1515
[compat]
1616
julia = "1.4"
17-
blis_jll = "0.8.0"
17+
blis_jll = "< 0.8.2"

src/backend_object/object.jl

+7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ mutable struct BliObjBase
2929
m_panel::BliDim
3030
n_panel::BliDim
3131

32+
# Additional fields from upstream flame/blis#583.
33+
# Currently these customizable fields have no Julia interface.
34+
pack_fn::Ptr{Nothing}
35+
pack_params::Ptr{Nothing}
36+
ker_fn::Ptr{Nothing}
37+
ker_params::Ptr{Nothing}
38+
3239
# Empty inner-constructor only,
3340
# resembling a plain C struct.
3441
BliObjBase() = begin

0 commit comments

Comments
 (0)