We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2d57b commit 6b3a511Copy full SHA for 6b3a511
ggml/src/ggml-metal/ggml-metal.m
@@ -46,6 +46,7 @@
46
static struct ggml_backend_metal_device_context {
47
id<MTLDevice> mtl_device;
48
int mtl_device_ref_count;
49
+ id<MTLLibrary> mtl_library;
50
51
bool has_simdgroup_reduction;
52
bool has_simdgroup_mm;
@@ -57,6 +58,7 @@
57
58
} g_ggml_ctx_dev_main = {
59
/*.mtl_device =*/ nil,
60
/*.mtl_device_ref_count =*/ 0,
61
+ /*.mtl_library =*/ nil,
62
/*.has_simdgroup_reduction =*/ false,
63
/*.has_simdgroup_mm =*/ false,
64
/*.has_residency_sets =*/ false,
0 commit comments