Skip to content

Commit eba84e2

Browse files
authored
Merge pull request #353 from dskkato/eager_docs
Generate eager and ndarray docs when releasing.
2 parents 6a24078 + a35288c commit eba84e2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616

1717
# Prevent downloading or building TensorFlow when building docs on docs.rs.
1818
[package.metadata.docs.rs]
19-
features = ["private-docs-rs"]
19+
features = ["private-docs-rs", "tensorflow_unstable", "ndarray", "eager"]
2020

2121
[dependencies]
2222
libc = "0.2.98"

src/eager.rs

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
//!
33
//! WARNING: The underlying C-API for the eager execution is not guaranteed to be
44
//! stable and can be changed without notice, which could result in breaking.
5+
//!
6+
//! This API requires the `eager` feature to be enabled as follows:
7+
//!
8+
//! ```
9+
//! [dependencies]
10+
//! tensorflow = { version = "0.18", features = ["eager"] }
11+
//! ```
512
613
mod context;
714
pub use context::*;

test-all

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ run cargo test -vv -j 2 --features ndarray
5252
run cargo run --example regression
5353
run cargo run --example xor
5454
run cargo run --features tensorflow_unstable --example expressions
55-
run cargo doc -vv --features tensorflow_unstable
56-
run cargo doc -vv --features tensorflow_unstable,private-docs-rs
55+
run cargo doc -vv --features tensorflow_unstable,ndarray,eager
56+
run cargo doc -vv --features tensorflow_unstable,ndarray,eager,private-docs-rs
5757
# TODO(#66): Re-enable: (cd tensorflow-sys && cargo test -vv -j 1)
5858
(cd tensorflow-sys && run cargo run --example multiplication)
5959
(cd tensorflow-sys && run cargo run --example tf_version)

0 commit comments

Comments
 (0)