forked from rustformers/llm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update TOMLs/version 0.0.1 before cargo release
- Loading branch information
Showing
17 changed files
with
82 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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 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 |
---|---|---|
@@ -1,11 +1,14 @@ | ||
[package] | ||
name = "ggml" | ||
version = { workspace = true } | ||
version = "0.0.1" | ||
repository = { workspace = true } | ||
edition = "2021" | ||
description = "Semi-idiomatic Rust bindings for the ggml library (from `ggml-sys`)." | ||
license = "MIT" | ||
|
||
[dependencies] | ||
thiserror = { workspace = true } | ||
ggml-sys = { path = "sys" } | ||
ggml-sys = { path = "sys", version = "0.0.1" } | ||
|
||
[dev-dependencies] | ||
rand = { workspace = true } |
This file contains 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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "ggml-sys" | ||
version = { workspace = true } | ||
version = "0.0.1" | ||
repository = { workspace = true } | ||
edition = "2021" | ||
description = "Raw bindings (i.e. bindgen output) for the ggml library." | ||
license = "MIT" | ||
|
||
[build-dependencies] | ||
cc = "^1.0" |
This file contains 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 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 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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
[package] | ||
name = "llm-bloom" | ||
version = { workspace = true } | ||
version = "0.0.1" | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
description = "An implementation of BLOOM (BigScience Large Open-science Open-access Multilingual Language Model) for the `llm` ecosystem." | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
ggml = { path = "../../ggml" } | ||
llm-base = { path = "../../llm-base" } | ||
llm-base = { path = "../../llm-base", version = "0.0.1" } | ||
|
||
bytemuck = { workspace = true } |
This file contains 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 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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[package] | ||
name = "llm-gpt2" | ||
version = { workspace = true } | ||
version = "0.0.1" | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
description = "An implementation of GPT-2 for the `llm` ecosystem." | ||
edition = "2021" | ||
|
||
[dependencies] | ||
ggml = { path = "../../ggml" } | ||
llm-base = { path = "../../llm-base" } | ||
llm-base = { path = "../../llm-base", version = "0.0.1" } | ||
|
||
bytemuck = { workspace = true } |
This file contains 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 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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
[package] | ||
name = "llm-gptj" | ||
version = { workspace = true } | ||
version = "0.0.1" | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
description = "An implementation of GPT-J for the `llm` ecosystem." | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
llm-base = { path = "../../llm-base" } | ||
ggml = { path = "../../ggml" } | ||
llm-base = { path = "../../llm-base", version = "0.0.1" } | ||
|
||
bytemuck = { workspace = true } |
This file contains 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 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 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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
[package] | ||
name = "llm-neox" | ||
version = { workspace = true } | ||
version = "0.0.1" | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
description = "An implementation of GPT-NeoX for the `llm` ecosystem." | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
llm-base = { path = "../../llm-base" } | ||
ggml = { path = "../../ggml" } | ||
llm-base = { path = "../../llm-base", version = "0.0.1" } | ||
|
||
bytemuck = { workspace = true } |
This file contains 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