|
I'm just getting started with So I updated the install via I would like my source builds to use the same version a public user gets, just compiled locally for maximum machine optimization. So:
|
Replies: 1 comment 2 replies
|
The two tag series are different things, which is the source of the confusion:
Answering your two questions: 1. Latest public tag to check out gh release view --repo ggml-org/llama.cpp --json tagName -q .tagName # newest nightly, b10488 today
git fetch --tags && git checkout b10488For the semver line instead, use 2. How the published release is chosen
Your |
The two tag series are different things, which is the source of the confusion:
bNNNN— nightlies, cut automatically per master commit byrelease.yml. Several a day (b10483, b10485, b10486, b10488 all landed on Aug 18). These are the ones carrying the binary assets, andreleases/latestpoints at the newest one.v0.1.x— the new semver line.v0.1.2is marked pre-release, has no assets, and its body pins the nightly it was cut from ("Nightly build: b10485"). Semver is explicitly still WIP — see ggml-org/ggml#1579.Answering your two questions:
1. Latest public tag to check out
gh release view --repo ggml-org/llama.cpp --json tagName -q .tagName # newest nightly, b10488 today git fetch --…