Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ See `example/hello_world` for a complete example.
## Build
To use the library you must compile the C++ executorch library yourself, as there are many configurations that
determines which modules, backends, and operations are supported. See the `executorch-sys` crate for more info.
Currently the supported Cpp executorch version is `1.0.0` (or `1.0.1`).
Currently the supported Cpp executorch version is `1.0.1` (or `1.0.0`).


## Cargo Features
Expand Down
4 changes: 2 additions & 2 deletions examples/data_map/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/etdump/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/hello_world/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/llama3/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/nano-gpt/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/no_ndarray/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/no_std/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/raw_tensor/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion executorch-sys/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion executorch-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "executorch-sys"
version = "0.8.0"
version = "0.8.1"
authors = ["Barak Ugav <barakugav@gmail.com>"]
edition = "2021"
rust-version = "1.77.0" # println!("cargo::...)
Expand Down
3 changes: 2 additions & 1 deletion executorch-sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
For a general description of the project, see the the `executorch` crate.

## Build
To build the library, you need to build the C++ library first.
To build the library, you need to build the C++ library yourself first.
Currently the supported Cpp executorch version is `1.0.1` (or `1.0.0`).
The C++ library allow for great flexibility with many flags, customizing which modules, kernels, and extensions are built.
Multiple static libraries are built, and the Rust library links to them.
In the following example we build the C++ library with the necessary flags to run example `hello_world`:
Expand Down
3 changes: 2 additions & 1 deletion executorch-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
//! a more detailed documentation can be found.
//!
//!
//! To build the library, you need to build the C++ library first.
//! To build the library, you need to build the C++ library yourself first.
//! Currently the supported Cpp executorch version is `1.0.1` (or `1.0.0`).
//! The C++ library allow for great flexibility with many flags, customizing which modules, kernels, and extensions are
//! built.
//! Multiple static libraries are built, and the Rust library links to them.
Expand Down
4 changes: 2 additions & 2 deletions executorch/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions executorch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "executorch"
version = "0.8.0"
version = "0.8.1"
authors = ["Barak Ugav <barakugav@gmail.com>"]
edition = "2021"
rust-version = "1.77.0" # executorch-sys
Expand All @@ -25,7 +25,7 @@ categories = [
include = ["Cargo.toml", "build.rs", "src/", "README.md", "LICENSE"]

[dependencies]
executorch-sys = { path = "../executorch-sys", version = "0.8.0", default-features = false }
executorch-sys = { path = "../executorch-sys", version = "0.8.1", default-features = false }
ndarray = { version = ">=0.16, <0.18", default-features = false, optional = true }
half = { version = "2.4", default-features = false, optional = true }
num-complex = { version = "0.4", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion executorch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ See `example/hello_world` for a complete example.
## Build
To use the library you must compile the C++ executorch library yourself, as there are many configurations that
determines which modules, backends, and operations are supported. See the `executorch-sys` crate for more info.
Currently the supported Cpp executorch version is `1.0.0` (or `1.0.1`).
Currently the supported Cpp executorch version is `1.0.1` (or `1.0.0`).


## Cargo Features
Expand Down
2 changes: 1 addition & 1 deletion executorch/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
//! ## Build
//! To use the library you must compile the C++ executorch library yourself, as there are many configurations that
//! determines which modules, backends, and operations are supported. See the `executorch-sys` crate for more info.
//! Currently the supported Cpp executorch version is `1.0.0` (or `1.0.1`).
//! Currently the supported Cpp executorch version is `1.0.1` (or `1.0.0`).
//!
//! ## Embedded Systems
//! The library is designed to be used both in `std` and `no_std` environments. The `no_std` environment is useful for
Expand Down
Loading