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 9248aec commit 5fdce91Copy full SHA for 5fdce91
ggml/src/ggml-metal/ggml-metal.m
@@ -1738,7 +1738,8 @@ static void ggml_metal_free(struct ggml_backend_metal_context * ctx) {
1738
struct ggml_backend_metal_buffer buffers[GGML_METAL_MAX_BUFFERS];
1739
1740
// optional MTLResidencySet
1741
- id<MTLResidencySet> rset;
+ // note: cannot use explicity "id<MTLResidencySet>" here because it is not available on certain OSes
1742
+ id rset;
1743
1744
// pointers to global device objects
1745
id<MTLDevice> device;
0 commit comments