diff --git a/backend-comparison/Cargo.toml b/backend-comparison/Cargo.toml index e34150a430..ee5244cce7 100644 --- a/backend-comparison/Cargo.toml +++ b/backend-comparison/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" name = "backend-comparison" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/backend-comparison" -version = "0.11.0" +version = "0.11.1" [features] default = ["std"] @@ -28,7 +28,7 @@ wgpu-fusion = ["burn/wgpu", "burn/fusion"] burn = { path = "../burn" } derive-new = { workspace = true } rand = { workspace = true } -burn-common = { path = "../burn-common", version = "0.11.0" } +burn-common = { path = "../burn-common", version = "0.11.1" } serde_json = { workspace = true } dirs = "5.0.1" diff --git a/burn-autodiff/Cargo.toml b/burn-autodiff/Cargo.toml index 94ca0b24d5..980aec4793 100644 --- a/burn-autodiff/Cargo.toml +++ b/burn-autodiff/Cargo.toml @@ -8,16 +8,16 @@ license = "MIT OR Apache-2.0" name = "burn-autodiff" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-autodiff" -version = "0.11.0" +version = "0.11.1" [features] default = ["export_tests"] export_tests = ["burn-tensor-testgen"] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.0" } -burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false } -burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.11.0", optional = true } +burn-common = { path = "../burn-common", version = "0.11.1" } +burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false } +burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.11.1", optional = true } derive-new = { workspace = true } spin = { workspace = true } diff --git a/burn-book/src/basic-workflow/model.md b/burn-book/src/basic-workflow/model.md index 8abdf2aa09..98fcbc5ae8 100644 --- a/burn-book/src/basic-workflow/model.md +++ b/burn-book/src/basic-workflow/model.md @@ -1,8 +1,8 @@ # Model -The first step is to create a project and add the different Burn dependencies. In the `Cargo.toml` file, -add the `burn` dependency with `train` and `wgpu` features. Note that the `serde` dependency is also mandatory -for the time being, as it is needed for serialization. +The first step is to create a project and add the different Burn dependencies. In the `Cargo.toml` +file, add the `burn` dependency with `train` and `wgpu` features. Note that the `serde` dependency +is also mandatory for the time being, as it is needed for serialization. ```toml [package] @@ -11,7 +11,7 @@ version = "0.1.0" edition = "2021" [dependencies] -burn = { version = "0.11.0", features=["train", "wgpu"]} +burn = { version = "0.11.1", features=["train", "wgpu"]} # Serialization serde = "1" @@ -60,9 +60,9 @@ There are two major things going on in this code sample. backend. Contrary to other frameworks, the backend abstraction isn't determined by a compilation flag or a device type. This is important because you can extend the functionalities of a specific backend (see [backend extension section](../advanced/backend-extension)), and it allows for an - innovative [autodiff system](../building-blocks/autodiff.md). You can also change backend during runtime, for instance to compute - training metrics on a cpu backend while using a gpu one only to train the model. In our example, - the backend in use will be determined later on. + innovative [autodiff system](../building-blocks/autodiff.md). You can also change backend during + runtime, for instance to compute training metrics on a cpu backend while using a gpu one only to + train the model. In our example, the backend in use will be determined later on. Next, we need to instantiate the model for training. diff --git a/burn-candle/Cargo.toml b/burn-candle/Cargo.toml index 31f0127bfa..02698c2187 100644 --- a/burn-candle/Cargo.toml +++ b/burn-candle/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-candle" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-candle" -version = "0.11.0" +version = "0.11.1" [features] default = ["std"] @@ -18,18 +18,18 @@ accelerate = ["candle-core/accelerate"] [dependencies] derive-new = { workspace = true } -burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false } +burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false } half = { workspace = true } candle-core = { version = "0.3.1" } [dev-dependencies] -burn-autodiff = { path = "../burn-autodiff", version = "0.11.0", default-features = false, features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", default-features = false, features = [ "export_tests", ] } -burn-tch = { path = "../burn-tch", version = "0.11.0", default-features = false, features = [ +burn-tch = { path = "../burn-tch", version = "0.11.1", default-features = false, features = [ ] } -burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false, features = [ +burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ "export_tests", ] } diff --git a/burn-common/Cargo.toml b/burn-common/Cargo.toml index 935899fccd..0f0f1d52f4 100644 --- a/burn-common/Cargo.toml +++ b/burn-common/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-common" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-common" -version = "0.11.0" +version = "0.11.1" [features] default = ["std"] diff --git a/burn-compute/Cargo.toml b/burn-compute/Cargo.toml index 8794666f1a..7aa9bc4680 100644 --- a/burn-compute/Cargo.toml +++ b/burn-compute/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-compute" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-compute" -version = "0.11.0" +version = "0.11.1" [features] default = [ @@ -25,7 +25,7 @@ channel-mpsc = [] # Assume std storage-bytes = [] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.0", default-features = false } +burn-common = { path = "../burn-common", version = "0.11.1", default-features = false } derive-new = { workspace = true } spin = { workspace = true } log = { workspace = true } diff --git a/burn-core/Cargo.toml b/burn-core/Cargo.toml index 807b19876c..97396b4776 100644 --- a/burn-core/Cargo.toml +++ b/burn-core/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-core" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-core" -version = "0.11.0" +version = "0.11.1" [features] default = [ @@ -73,18 +73,18 @@ test-wgpu = ["wgpu"] # To use wgpu during testing, default uses ndarray. # ** Please make sure all dependencies support no_std when std is disabled ** -burn-common = { path = "../burn-common", version = "0.11.0", default-features = false } -burn-dataset = { path = "../burn-dataset", version = "0.11.0", optional = true, default-features = false } -burn-derive = { path = "../burn-derive", version = "0.11.0" } -burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false } +burn-common = { path = "../burn-common", version = "0.11.1", default-features = false } +burn-dataset = { path = "../burn-dataset", version = "0.11.1", optional = true, default-features = false } +burn-derive = { path = "../burn-derive", version = "0.11.1" } +burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false } # Backends -burn-ndarray = { path = "../burn-ndarray", version = "0.11.0", optional = true, default-features = false } -burn-wgpu = { path = "../burn-wgpu", version = "0.11.0", optional = true } -burn-autodiff = { path = "../burn-autodiff", version = "0.11.0", optional = true } -burn-fusion = { path = "../burn-fusion", version = "0.11.0", optional = true } -burn-tch = { path = "../burn-tch", version = "0.11.0", optional = true } -burn-candle = { path = "../burn-candle", version = "0.11.0", optional = true } +burn-ndarray = { path = "../burn-ndarray", version = "0.11.1", optional = true, default-features = false } +burn-wgpu = { path = "../burn-wgpu", version = "0.11.1", optional = true } +burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", optional = true } +burn-fusion = { path = "../burn-fusion", version = "0.11.1", optional = true } +burn-tch = { path = "../burn-tch", version = "0.11.1", optional = true } +burn-candle = { path = "../burn-candle", version = "0.11.1", optional = true } derive-new = { workspace = true } libm = { workspace = true } @@ -107,9 +107,9 @@ serde_json = { workspace = true, features = ["alloc"] } #Default enables std [dev-dependencies] tempfile = { workspace = true } -burn-dataset = { path = "../burn-dataset", version = "0.11.0", features = [ +burn-dataset = { path = "../burn-dataset", version = "0.11.1", features = [ "fake", ] } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.0", default-features = false } -burn-autodiff = { path = "../burn-autodiff", version = "0.11.0" } +burn-ndarray = { path = "../burn-ndarray", version = "0.11.1", default-features = false } +burn-autodiff = { path = "../burn-autodiff", version = "0.11.1" } diff --git a/burn-dataset/Cargo.toml b/burn-dataset/Cargo.toml index e20544289e..fdd98d6c27 100644 --- a/burn-dataset/Cargo.toml +++ b/burn-dataset/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-dataset" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-dataset" -version = "0.11.0" +version = "0.11.1" [features] default = ["sqlite-bundled"] diff --git a/burn-derive/Cargo.toml b/burn-derive/Cargo.toml index 7c5f4efe48..5f31925c45 100644 --- a/burn-derive/Cargo.toml +++ b/burn-derive/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-derive" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-derive" -version = "0.11.0" +version = "0.11.1" [lib] proc-macro = true diff --git a/burn-fusion/Cargo.toml b/burn-fusion/Cargo.toml index d66e86e899..b88ec976c8 100644 --- a/burn-fusion/Cargo.toml +++ b/burn-fusion/Cargo.toml @@ -8,15 +8,15 @@ license = "MIT OR Apache-2.0" name = "burn-fusion" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-fusion" -version = "0.11.0" +version = "0.11.1" [features] default = ["std"] std = [] [dependencies] -burn-tensor = {path = "../burn-tensor", version = "0.11.0", default-features = false } -burn-common = {path = "../burn-common", version = "0.11.0" } +burn-tensor = {path = "../burn-tensor", version = "0.11.1", default-features = false } +burn-common = {path = "../burn-common", version = "0.11.1" } hashbrown = { workspace = true } derive-new = {workspace = true} spin = {workspace = true} diff --git a/burn-import/Cargo.toml b/burn-import/Cargo.toml index 74d4886355..cd062dcdd4 100644 --- a/burn-import/Cargo.toml +++ b/burn-import/Cargo.toml @@ -10,15 +10,15 @@ name = "burn-import" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-import" -version = "0.11.0" +version = "0.11.1" [features] default = ["onnx"] onnx = [] [dependencies] -burn = { path = "../burn", version = "0.11.0" } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.0" } +burn = { path = "../burn", version = "0.11.1" } +burn-ndarray = { path = "../burn-ndarray", version = "0.11.1" } bytemuck = { workspace = true } derive-new = { workspace = true } diff --git a/burn-import/onnx-tests/Cargo.toml b/burn-import/onnx-tests/Cargo.toml index f6a696c738..b1de22b98d 100644 --- a/burn-import/onnx-tests/Cargo.toml +++ b/burn-import/onnx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "onnx-tests" -version = "0.11.0" +version = "0.11.1" edition = "2021" license = "MIT OR Apache-2.0" diff --git a/burn-ndarray/Cargo.toml b/burn-ndarray/Cargo.toml index 1d09654d7b..94c90b4f73 100644 --- a/burn-ndarray/Cargo.toml +++ b/burn-ndarray/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-ndarray" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-ndarray" -version = "0.11.0" +version = "0.11.1" [features] default = ["std"] @@ -41,11 +41,11 @@ blas-openblas-system = [ # ** Please make sure all dependencies support no_std when std is disabled ** -burn-autodiff = { path = "../burn-autodiff", version = "0.11.0", features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", features = [ "export_tests", ], optional = true } -burn-common = { path = "../burn-common", version = "0.11.0", default-features = false } -burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false, features = [ +burn-common = { path = "../burn-common", version = "0.11.1", default-features = false } +burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ "export_tests", ] } diff --git a/burn-no-std-tests/Cargo.toml b/burn-no-std-tests/Cargo.toml index 9b8520efe3..e996848b71 100644 --- a/burn-no-std-tests/Cargo.toml +++ b/burn-no-std-tests/Cargo.toml @@ -8,13 +8,13 @@ license = "MIT OR Apache-2.0" name = "burn-no-std-tests" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-no-std-tests" -version = "0.11.0" +version = "0.11.1" [dependencies] # ** Please make sure all dependencies support no_std ** -burn = { path = "../burn", version = "0.11.0", default-features = false } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.0", default-features = false } +burn = { path = "../burn", version = "0.11.1", default-features = false } +burn-ndarray = { path = "../burn-ndarray", version = "0.11.1", default-features = false } serde = { workspace = true } diff --git a/burn-tch/Cargo.toml b/burn-tch/Cargo.toml index edc512d6a4..97bddd5ca7 100644 --- a/burn-tch/Cargo.toml +++ b/burn-tch/Cargo.toml @@ -8,14 +8,14 @@ license = "MIT OR Apache-2.0" name = "burn-tch" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-tch" -version = "0.11.0" +version = "0.11.1" [features] default = [] doc = ["tch/doc-only"] [dependencies] -burn-tensor = { path = "../burn-tensor", version = "0.11.0" } +burn-tensor = { path = "../burn-tensor", version = "0.11.1" } half = { workspace = true, features = ["std"] } libc = "0.2.150" @@ -23,9 +23,9 @@ rand = { workspace = true, features = ["std"] } tch = { version = "0.14.0", features = ["download-libtorch"] } [dev-dependencies] -burn-autodiff = { path = "../burn-autodiff", version = "0.11.0", default-features = false, features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", default-features = false, features = [ "export_tests", ] } -burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false, features = [ +burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ "export_tests", ] } diff --git a/burn-tensor-testgen/Cargo.toml b/burn-tensor-testgen/Cargo.toml index 07668b369f..f46bc002d0 100644 --- a/burn-tensor-testgen/Cargo.toml +++ b/burn-tensor-testgen/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" name = "burn-tensor-testgen" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor-testgen" -version = "0.11.0" +version = "0.11.1" [lib] proc-macro = true diff --git a/burn-tensor/Cargo.toml b/burn-tensor/Cargo.toml index ffe16428b8..6eb296a043 100644 --- a/burn-tensor/Cargo.toml +++ b/burn-tensor/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-tensor" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor" -version = "0.11.0" +version = "0.11.1" [features] default = ["std"] @@ -18,8 +18,8 @@ std = ["rand/std", "half/std"] wasm-sync = [] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.0", default-features = false } -burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.11.0", optional = true } +burn-common = { path = "../burn-common", version = "0.11.1", default-features = false } +burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.11.1", optional = true } derive-new = { workspace = true } half = { workspace = true } diff --git a/burn-train/Cargo.toml b/burn-train/Cargo.toml index e635236cea..27dc4cc518 100644 --- a/burn-train/Cargo.toml +++ b/burn-train/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-train" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-train" -version = "0.11.0" +version = "0.11.1" [features] default = ["metrics", "tui"] @@ -16,7 +16,7 @@ metrics = ["nvml-wrapper", "sysinfo", "systemstat"] tui = ["ratatui", "crossterm"] [dependencies] -burn-core = { path = "../burn-core", version = "0.11.0", features = ["dataset"] } +burn-core = { path = "../burn-core", version = "0.11.1", features = ["dataset"] } log = { workspace = true } tracing-subscriber.workspace = true @@ -37,4 +37,4 @@ derive-new = { workspace = true } serde = { workspace = true, features = ["std", "derive"] } [dev-dependencies] -burn-ndarray = { path = "../burn-ndarray", version = "0.11.0" } +burn-ndarray = { path = "../burn-ndarray", version = "0.11.1" } diff --git a/burn-wgpu/Cargo.toml b/burn-wgpu/Cargo.toml index 2e001f7fb1..05297bf802 100644 --- a/burn-wgpu/Cargo.toml +++ b/burn-wgpu/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-wgpu" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-wgpu" -version = "0.11.0" +version = "0.11.1" [features] default = ["autotune", "std"] @@ -17,9 +17,9 @@ autotune = [] fusion = ["burn-fusion"] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.0" } -burn-tensor = { path = "../burn-tensor", version = "0.11.0" } -burn-fusion = { path = "../burn-fusion", version = "0.11.0", optional = true } +burn-common = { path = "../burn-common", version = "0.11.1" } +burn-tensor = { path = "../burn-tensor", version = "0.11.1" } +burn-fusion = { path = "../burn-fusion", version = "0.11.1", optional = true } bytemuck = { workspace = true } derive-new = { workspace = true } @@ -38,21 +38,21 @@ serde = { workspace = true } text_placeholder = { version = "0.5.0", features = ["struct_context"] } hashbrown = { workspace = true } -burn-compute = { path = "../burn-compute", version = "0.11.0", default-features = false, features = [ +burn-compute = { path = "../burn-compute", version = "0.11.1", default-features = false, features = [ "channel-mutex", "std", ] } [dev-dependencies] -burn-autodiff = { path = "../burn-autodiff", version = "0.11.0", default-features = false, features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", default-features = false, features = [ "export_tests", ] } -burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false, features = [ +burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ "export_tests", ] } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.0" } -burn-fusion = { path = "../burn-fusion", version = "0.11.0" } +burn-ndarray = { path = "../burn-ndarray", version = "0.11.1" } +burn-fusion = { path = "../burn-fusion", version = "0.11.1" } serial_test = "2.0.0" [[bench]] diff --git a/burn/Cargo.toml b/burn/Cargo.toml index a13dde0384..40e6775f1b 100644 --- a/burn/Cargo.toml +++ b/burn/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn" readme = "README.md" repository = "https://github.com/tracel-ai/burn" -version = "0.11.0" +version = "0.11.1" rust-version = "1.71" [features] @@ -56,8 +56,8 @@ experimental-named-tensor = ["burn-core/experimental-named-tensor"] # ** Please make sure all dependencies support no_std when std is disabled ** -burn-core = { path = "../burn-core", version = "0.11.0", default-features = false } -burn-train = { path = "../burn-train", version = "0.11.0", optional = true, default-features = false } +burn-core = { path = "../burn-core", version = "0.11.1", default-features = false } +burn-train = { path = "../burn-train", version = "0.11.1", optional = true, default-features = false } [package.metadata.docs.rs] features = [ diff --git a/examples/custom-renderer/Cargo.toml b/examples/custom-renderer/Cargo.toml index 5306cdf0e0..362c18fd3b 100644 --- a/examples/custom-renderer/Cargo.toml +++ b/examples/custom-renderer/Cargo.toml @@ -5,7 +5,7 @@ license = "MIT OR Apache-2.0" name = "custom-renderer" description = "Example of how to render training progress outside of the tui" publish = false -version = "0.11.0" +version = "0.11.1" [dependencies] burn = {path = "../../burn", features=["autodiff", "wgpu", "train", "dataset"], default-features=false} diff --git a/examples/custom-training-loop/Cargo.toml b/examples/custom-training-loop/Cargo.toml index 58e1efcacc..4a68c7bfc6 100644 --- a/examples/custom-training-loop/Cargo.toml +++ b/examples/custom-training-loop/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "custom-training-loop" publish = false -version = "0.11.0" +version = "0.11.1" [dependencies] burn = {path = "../../burn", features=["autodiff", "wgpu"]} diff --git a/examples/custom-wgpu-kernel/Cargo.toml b/examples/custom-wgpu-kernel/Cargo.toml index 0506712f5c..644d58f6fd 100644 --- a/examples/custom-wgpu-kernel/Cargo.toml +++ b/examples/custom-wgpu-kernel/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "custom-wgpu-kernel" publish = false -version = "0.11.0" +version = "0.11.1" [dependencies] burn = {path = "../../burn", features=["autodiff", "wgpu"]} diff --git a/examples/guide/Cargo.toml b/examples/guide/Cargo.toml index f69df65ba0..ce9a7ec589 100644 --- a/examples/guide/Cargo.toml +++ b/examples/guide/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "guide" publish = false -version = "0.11.0" +version = "0.11.1" [features] default = ["burn/default"] diff --git a/examples/image-classification-web/Cargo.toml b/examples/image-classification-web/Cargo.toml index f0873280fe..2489bca76a 100644 --- a/examples/image-classification-web/Cargo.toml +++ b/examples/image-classification-web/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "image-classification-web" publish = false -version = "0.11.0" +version = "0.11.1" [lib] crate-type = ["cdylib"] @@ -14,11 +14,11 @@ default = [] half_precision = [] [dependencies] -burn = { path = "../../burn", version = "0.11.0", default-features = false, features = [ +burn = { path = "../../burn", version = "0.11.1", default-features = false, features = [ "ndarray", ] } -burn-wgpu = { path = "../../burn-wgpu", version = "0.11.0", default-features = false } -burn-candle = { path = "../../burn-candle", version = "0.11.0", default-features = false } +burn-wgpu = { path = "../../burn-wgpu", version = "0.11.1", default-features = false } +burn-candle = { path = "../../burn-candle", version = "0.11.1", default-features = false } js-sys = { workspace = true } log = { workspace = true } diff --git a/examples/mnist-inference-web/Cargo.toml b/examples/mnist-inference-web/Cargo.toml index 0f08b89d61..5eabb94a39 100644 --- a/examples/mnist-inference-web/Cargo.toml +++ b/examples/mnist-inference-web/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "mnist-inference-web" publish = false -version = "0.11.0" +version = "0.11.1" [lib] crate-type = ["cdylib"] diff --git a/examples/mnist/Cargo.toml b/examples/mnist/Cargo.toml index d6535e9b34..bedd868c59 100644 --- a/examples/mnist/Cargo.toml +++ b/examples/mnist/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "mnist" publish = false -version = "0.11.0" +version = "0.11.1" [features] default = ["burn/dataset", "burn/sqlite-bundled"] diff --git a/examples/named-tensor/Cargo.toml b/examples/named-tensor/Cargo.toml index 896df802ac..ec1c3737fa 100644 --- a/examples/named-tensor/Cargo.toml +++ b/examples/named-tensor/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "named-tensor" publish = false -version = "0.11.0" +version = "0.11.1" [dependencies] burn = {path = "../../burn", features = ["experimental-named-tensor", "ndarray"]} diff --git a/examples/onnx-inference/Cargo.toml b/examples/onnx-inference/Cargo.toml index a7503275e2..b1d4507bc5 100644 --- a/examples/onnx-inference/Cargo.toml +++ b/examples/onnx-inference/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "onnx-inference" publish = false -version = "0.11.0" +version = "0.11.1" [features] default = ["embedded-model"] diff --git a/examples/text-classification/Cargo.toml b/examples/text-classification/Cargo.toml index ff71273a89..5799ef099f 100644 --- a/examples/text-classification/Cargo.toml +++ b/examples/text-classification/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "text-classification" publish = false -version = "0.11.0" +version = "0.11.1" [features] default = ["burn/dataset", "burn/sqlite-bundled"] diff --git a/examples/text-generation/Cargo.toml b/examples/text-generation/Cargo.toml index e511de3015..b3d41b8348 100644 --- a/examples/text-generation/Cargo.toml +++ b/examples/text-generation/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "text-generation" publish = false -version = "0.11.0" +version = "0.11.1" [features] default = ["burn/dataset", "burn/sqlite-bundled"]