-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eea5a26
commit 2f179f1
Showing
8 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
[package] | ||
name = "burn-autodiff" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
description = "Autodiff backend for burn" | ||
repository = "https://github.com/burn-rs/burn/tree/main/burn-autodiff" | ||
|
@@ -15,7 +15,7 @@ default = ["export_tests"] | |
export_tests = ["burn-tensor-testgen"] | ||
|
||
[dependencies] | ||
burn-tensor-testgen = { version = "0.3.0", path = "../burn-tensor-testgen", optional = true } | ||
burn-tensor = { version = "0.3.0", path = "../burn-tensor" } | ||
burn-tensor-testgen = { version = "0.4.0", path = "../burn-tensor-testgen", optional = true } | ||
burn-tensor = { version = "0.4.0", path = "../burn-tensor" } | ||
derive-new = "0.5.9" | ||
nanoid = "0.4.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "burn-dataset" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
|
||
description = """ | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "burn-derive" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
|
||
description = """ | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "burn-ndarray" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
|
||
description = "NdArray backend for burn" | ||
|
@@ -22,7 +22,7 @@ blas-openblas-system = [ | |
] | ||
|
||
[dependencies] | ||
burn-tensor = { version = "0.3.0", path = "../burn-tensor" } | ||
burn-tensor = { version = "0.4.0", path = "../burn-tensor" } | ||
blas-src = { version = "0.8.0", default-features = false, optional = true } | ||
openblas-src = { version = "0.10.5", optional = true } | ||
|
||
|
@@ -33,9 +33,9 @@ rand = "0.8.5" | |
num-traits = "0.2.15" | ||
|
||
[dev-dependencies] | ||
burn-tensor = { version = "0.3.0", path = "../burn-tensor", features = [ | ||
burn-tensor = { version = "0.4.0", path = "../burn-tensor", features = [ | ||
"export_tests", | ||
] } | ||
burn-autodiff = { version = "0.3.0", path = "../burn-autodiff", features = [ | ||
burn-autodiff = { version = "0.4.0", path = "../burn-autodiff", features = [ | ||
"export_tests", | ||
] } |
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,6 +1,6 @@ | ||
[package] | ||
name = "burn-tch" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
|
||
description = "Tch backend for burn" | ||
|
@@ -15,7 +15,7 @@ edition = "2021" | |
doc = ["tch/doc-only"] | ||
|
||
[dependencies] | ||
burn-tensor = { version = "0.3.0", path = "../burn-tensor", default-features = false } | ||
burn-tensor = { version = "0.4.0", path = "../burn-tensor", default-features = false } | ||
rand = "0.8.5" | ||
tch = { version = "0.10.1" } | ||
lazy_static = "1.4.0" | ||
|
@@ -24,9 +24,9 @@ half = { version = "1.6.0", features = [ | |
] } # needs to be 1.6 to work with tch | ||
|
||
[dev-dependencies] | ||
burn-tensor = { version = "0.3.0", path = "../burn-tensor", default-features = false, features = [ | ||
burn-tensor = { version = "0.4.0", path = "../burn-tensor", default-features = false, features = [ | ||
"export_tests", | ||
] } | ||
burn-autodiff = { version = "0.3.0", path = "../burn-autodiff", default-features = false, features = [ | ||
burn-autodiff = { version = "0.4.0", path = "../burn-autodiff", default-features = false, features = [ | ||
"export_tests", | ||
] } |
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,6 +1,6 @@ | ||
[package] | ||
name = "burn-tensor-testgen" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
|
||
description = "Burn tensor test gen crate." | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "burn-tensor" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
|
||
description = """ | ||
|
@@ -20,7 +20,7 @@ export_tests = ["burn-tensor-testgen"] | |
experimental-named-tensor = [] | ||
|
||
[dependencies] | ||
burn-tensor-testgen = { version = "0.3.0", path = "../burn-tensor-testgen", optional = true } | ||
burn-tensor-testgen = { version = "0.4.0", path = "../burn-tensor-testgen", optional = true } | ||
num-traits = "0.2.15" | ||
derive-new = "0.5.9" | ||
rand = "0.8.5" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "burn" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["nathanielsimard <[email protected]>"] | ||
description = "BURN: Burn Unstoppable Rusty Neurons" | ||
repository = "https://github.com/burn-rs/burn" | ||
|
@@ -15,10 +15,10 @@ default = [] | |
experimental-named-tensor = ["burn-tensor/experimental-named-tensor"] | ||
|
||
[dependencies] | ||
burn-tensor = { version = "0.3.0", path = "../burn-tensor" } | ||
burn-autodiff = { version = "0.3.0", path = "../burn-autodiff" } | ||
burn-dataset = { version = "0.3.0", path = "../burn-dataset", default-features = false } | ||
burn-derive = { version = "0.3.0", path = "../burn-derive" } | ||
burn-tensor = { version = "0.4.0", path = "../burn-tensor" } | ||
burn-autodiff = { version = "0.4.0", path = "../burn-autodiff" } | ||
burn-dataset = { version = "0.4.0", path = "../burn-dataset", default-features = false } | ||
burn-derive = { version = "0.4.0", path = "../burn-derive" } | ||
|
||
thiserror = "1.0.38" | ||
num-traits = "0.2.15" | ||
|
@@ -45,7 +45,7 @@ flate2 = "1.0.25" | |
nanoid = "0.4.0" | ||
|
||
[dev-dependencies] | ||
burn-dataset = { version = "0.3.0", path = "../burn-dataset", features = [ | ||
burn-dataset = { version = "0.4.0", path = "../burn-dataset", features = [ | ||
"fake", | ||
] } | ||
burn-ndarray = { version = "0.3.0", path = "../burn-ndarray" } | ||
burn-ndarray = { version = "0.4.0", path = "../burn-ndarray" } |