Add mlx_metal_set_metallib_path() C API#117
Draft
olilarkin wants to merge 1 commit into
Draft
Conversation
Exposes the new set_metallib_path() function through the C interface.
This was referenced May 28, 2026
|
I looked at this while working on the SwiftPM metallib resource PR in This is the API I need there. I made a small branch on my fork that rebases this on current
It builds for me with:
No need to use my branch directly if you prefer updating this PR here. I just wanted to share it in case it helps move the chain forward. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Exposes the new
mlx::core::metal::set_metallib_path()through the C interface asmlx_metal_set_metallib_path(const char* path), following the existing error-handling convention of the othermlx_metal_*wrappers.Why
Required so Swift / other C consumers can set a custom
mlx.metallibpath. See the use case in the tracking issue.Depends on
mlxsubmodule here will need a bump to the merged commit once that lands.Companion PRs
Part of a three-PR chain (C++ → C → Swift):
set_metallib_pathGPU.setMetallibPath()Tracking issue: ml-explore/mlx-swift#415.