Skip to content

Commit

Permalink
Squash the old history: keep files after b2963
Browse files Browse the repository at this point in the history
Signed-off-by: hydai <[email protected]>
  • Loading branch information
hydai committed Jul 23, 2024
1 parent 741a07e commit 4ba5579
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
*.so
*.dylib
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# WasmEdge WASI-NN GGML PLUGIN REGISTRY

The llama.cpp project is in active development. Hence, we have to bump the version frequently.
To avoid the previous assets being removed or hard to find, we provide this repository for those who want to downgrade or get the specific version of the plugin.

## Structure

```
WasmEdge version
|- llama.cpp version
|- xxx.tar.gz
```

E.g.

```
0.13.5
├── b1444
│   ├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-darwin_arm64.tar.gz
│   ├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-darwin_x86_64.tar.gz
│   ├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-manylinux2014_aarch64.tar.gz
│   ├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-manylinux2014_x86_64.tar.gz
│   ├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-ubuntu20.04_aarch64.tar.gz
│   ├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-ubuntu20.04_x86_64.tar.gz
│   ├── WasmEdge-plugin-wasi_nn-ggml-cuda-0.13.5-ubuntu20.04_aarch64.tar.gz
│   └── WasmEdge-plugin-wasi_nn-ggml-cuda-0.13.5-ubuntu20.04_x86_64.tar.gz
└── b1656
├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-darwin_arm64.tar.gz
├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-manylinux2014_aarch64.tar.gz
├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-manylinux2014_x86_64.tar.gz
├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-ubuntu20.04_aarch64.tar.gz
├── WasmEdge-plugin-wasi_nn-ggml-0.13.5-ubuntu20.04_x86_64.tar.gz
├── WasmEdge-plugin-wasi_nn-ggml-blas-0.13.5-ubuntu20.04_aarch64.tar.gz
├── WasmEdge-plugin-wasi_nn-ggml-blas-0.13.5-ubuntu20.04_x86_64.tar.gz
├── WasmEdge-plugin-wasi_nn-ggml-cuda-0.13.5-ubuntu20.04_aarch64.tar.gz
└── WasmEdge-plugin-wasi_nn-ggml-cuda-0.13.5-ubuntu20.04_x86_64.tar.gz
```

0 comments on commit 4ba5579

Please sign in to comment.