Skip to content

Commit e35cf91

Browse files
committed
Adapt Upstream Object's Costomizable Fields
flame/blis#583 introdues 4 additional user customizable function fields. As BLIS.jl was using an outdated duplication of blis.h:obj_t, upgrading blis_jll v0.8.1 would cause the whole BLAS interface to break down. This commit should resolve #9
1 parent 1103316 commit e35cf91

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/backend_object/object.jl

Lines changed: 7 additions & 0 deletions
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)