We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11cf55b + d59a05e commit 0ab12d2Copy full SHA for 0ab12d2
Project.toml
@@ -14,4 +14,4 @@ blis_jll = "6136c539-28a5-5bf0-87cc-b183200dce32"
14
15
[compat]
16
julia = "1.4"
17
-blis_jll = "0.8.0"
+blis_jll = "< 0.8.2"
src/backend_object/object.jl
@@ -29,6 +29,13 @@ mutable struct BliObjBase
29
m_panel::BliDim
30
n_panel::BliDim
31
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
+
39
# Empty inner-constructor only,
40
# resembling a plain C struct.
41
BliObjBase() = begin
0 commit comments