next build (#8539)
* add build to .dockerignore * test: only build one arch * add build to .gitignore * fix ccache path * filter amdgpu targets * only filter if autodetecting * Don't clobber gpu list for default runner This ensures the GPU specific environment variables are set properly * explicitly set CXX compiler for HIP * Update build_windows.ps1 This isn't complete, but is close. Dependencies are missing, and it only builds the "default" preset. * build: add ollama subdir * add .git to .dockerignore * docs: update development.md * update build_darwin.sh * remove unused scripts * llm: add cwd and build/lib/ollama to library paths * default DYLD_LIBRARY_PATH to LD_LIBRARY_PATH in runner on macOS * add additional cmake output vars for msvc * interim edits to make server detection logic work with dll directories like lib/ollama/cuda_v12 * remove unncessary filepath.Dir, cleanup * add hardware-specific directory to path * use absolute server path * build: linux arm * cmake install targets * remove unused files * ml: visit each library path once * build: skip cpu variants on arm * build: install cpu targets * build: fix workflow * shorter names * fix rocblas install * docs: clean up development.md * consistent build dir removal in development.md * silence -Wimplicit-function-declaration build warnings in ggml-cpu * update readme * update development readme * llm: update library lookup logic now that there is one runner (#8587) * tweak development.md * update docs * add windows cuda/rocm tests --------- Co-authored-by:jmorganca <jmorganca@gmail.com> Co-authored-by:
Daniel Hiltgen <daniel@ollama.com>
Showing
This diff is collapsed.
CMakeLists.txt
0 → 100644
CMakePresets.json
0 → 100644
Makefile
deleted
100644 → 0
Makefile.sync
0 → 100644
discover/path.go
0 → 100644
| ... | @@ -17,12 +17,14 @@ require ( | ... | @@ -17,12 +17,14 @@ require ( |
| require ( | require ( | ||
| github.com/agnivade/levenshtein v1.1.1 | github.com/agnivade/levenshtein v1.1.1 | ||
| github.com/d4l3k/go-bfloat16 v0.0.0-20211005043715-690c3bdd05f1 | github.com/d4l3k/go-bfloat16 v0.0.0-20211005043715-690c3bdd05f1 | ||
| github.com/dlclark/regexp2 v1.11.4 | |||
| github.com/emirpasic/gods/v2 v2.0.0-alpha | github.com/emirpasic/gods/v2 v2.0.0-alpha | ||
| github.com/google/go-cmp v0.6.0 | github.com/google/go-cmp v0.6.0 | ||
| github.com/mattn/go-runewidth v0.0.14 | github.com/mattn/go-runewidth v0.0.14 | ||
| github.com/nlpodyssey/gopickle v0.3.0 | github.com/nlpodyssey/gopickle v0.3.0 | ||
| github.com/pdevine/tensor v0.0.0-20240510204454-f88f4562727c | github.com/pdevine/tensor v0.0.0-20240510204454-f88f4562727c | ||
| golang.org/x/image v0.22.0 | golang.org/x/image v0.22.0 | ||
| gonum.org/v1/gonum v0.15.0 | |||
| ) | ) | ||
| require ( | require ( | ||
| ... | @@ -42,7 +44,6 @@ require ( | ... | @@ -42,7 +44,6 @@ require ( |
| github.com/xtgo/set v1.0.0 // indirect | github.com/xtgo/set v1.0.0 // indirect | ||
| go4.org/unsafe/assume-no-moving-gc v0.0.0-20231121144256-b99613f794b6 // indirect | go4.org/unsafe/assume-no-moving-gc v0.0.0-20231121144256-b99613f794b6 // indirect | ||
| golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
| gonum.org/v1/gonum v0.15.0 // indirect | |||
| gorgonia.org/vecf32 v0.9.0 // indirect | gorgonia.org/vecf32 v0.9.0 // indirect | ||
| gorgonia.org/vecf64 v0.9.0 // indirect | gorgonia.org/vecf64 v0.9.0 // indirect | ||
| ) | ) | ||
| ... | ... |
Please register or sign in to comment