forked from conda-forge/llama.cpp-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 1
Upgrade to b7229 #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Upgrade to b7229 #25
Changes from 11 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
55cb0de
Upgrade to b7229
xkong-anaconda eee7041
Fix macOS linker error with version scheme
xkong-anaconda dd1d67a
Add patch for macOS dylib version
xkong-anaconda 962e11d
Skip test-backend-ops on Metal (SEGFAULT)
xkong-anaconda e37bf0f
Increase tolerance for aarch64 OpenBLAS precision
xkong-anaconda d3ab646
Use --version instead of --help for tests
xkong-anaconda da06880
Skip tools help tests avoid torch import
xkong-anaconda 4c6b52c
Fix Windows c_stdlib_version: use standard 2019.11 instead of non-exi…
xkong-anaconda 79f7ca2
Remove Windows c_stdlib_version - Windows doesn't use c_win-64 packages
xkong-anaconda 07292b5
fix
xkong-anaconda 2610526
Use vs2019 compiler for Windows consistency
xkong-anaconda b31b942
remove unused patches
xkong-anaconda 6695c37
clean up comments
xkong-anaconda 38dcdef
remove unnessary patch
xkong-anaconda c2a5f28
Updated the patch to target src/CMakeLists.txt
xkong-anaconda 2911222
update patch header
xkong-anaconda bae8946
use 0.0.7229 as the conda package version
xkong-anaconda 4b4e31a
add patches
xkong-anaconda 7f73ebf
Re-enabled the --help tests and Fixed libmtmd dylib version error
xkong-anaconda 6b3cab9
Updated the --help tests to skip on macOS only
xkong-anaconda 3680de1
Update recipe/patches/disable-metal-bf16.patch
xkong-anaconda 1f3a0eb
Update recipe/patches/disable-metal-flash-attention.patch
xkong-anaconda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
| From: conda-forge <conda@conda-forge.org> | ||
xkong-anaconda marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Date: Mon, 2 Dec 2024 10:00:00 +0000 | ||
| Subject: [PATCH] Fix macOS dylib version format | ||
|
|
||
| Remove 0.0. prefix from LLAMA_INSTALL_VERSION to avoid macOS linker error | ||
| with large build numbers (e.g. 7229). | ||
|
|
||
| --- | ||
| CMakeLists.txt | 2 +- | ||
| 1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
|
||
| diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
xkong-anaconda marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| index 1234567..abcdefg 100644 | ||
| --- a/CMakeLists.txt | ||
| +++ b/CMakeLists.txt | ||
| @@ -28,7 +28,7 @@ endif() | ||
| if (NOT DEFINED LLAMA_BUILD_COMMIT) | ||
| set(LLAMA_BUILD_COMMIT ${BUILD_COMMIT}) | ||
| endif() | ||
| -set(LLAMA_INSTALL_VERSION 0.0.${LLAMA_BUILD_NUMBER}) | ||
| +set(LLAMA_INSTALL_VERSION ${LLAMA_BUILD_NUMBER}) | ||
|
|
||
| # override ggml options | ||
| set(GGML_ALL_WARNINGS ${LLAMA_ALL_WARNINGS}) | ||
| -- | ||
| 2.45.2 | ||
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.