Oct 10 23:59:00.785 INFO testing drakeor/rust-neural-net against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling Oct 10 23:59:00.785 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen Oct 10 23:59:00.785 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 10 23:59:01.337 INFO blam! 8290b42290ec19bfb44bc7d503128f1a930073ad210d059e3bd31ed7240c89a9 Oct 10 23:59:01.339 INFO running `"docker" "start" "-a" "8290b42290ec19bfb44bc7d503128f1a930073ad210d059e3bd31ed7240c89a9"` Oct 10 23:59:03.216 INFO kablam! usermod: no changes Oct 10 23:59:03.332 INFO kablam! Compiling rulinalg v0.4.2 Oct 10 23:59:08.466 INFO kablam! Compiling rust_neuralnet v0.1.0 (/source) Oct 10 23:59:09.649 INFO kablam! warning: field is never used: `inputLayerSize` Oct 10 23:59:09.649 INFO kablam! --> src/main.rs:10:5 Oct 10 23:59:09.649 INFO kablam! | Oct 10 23:59:09.649 INFO kablam! 10 | inputLayerSize : i32, Oct 10 23:59:09.649 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:09.649 INFO kablam! | Oct 10 23:59:09.649 INFO kablam! = note: #[warn(dead_code)] on by default Oct 10 23:59:09.649 INFO kablam! Oct 10 23:59:09.649 INFO kablam! warning: field is never used: `outputLayerSize` Oct 10 23:59:09.649 INFO kablam! --> src/main.rs:11:5 Oct 10 23:59:09.649 INFO kablam! | Oct 10 23:59:09.649 INFO kablam! 11 | outputLayerSize : i32, Oct 10 23:59:09.649 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:09.649 INFO kablam! Oct 10 23:59:09.649 INFO kablam! warning: field is never used: `hiddenLayerSize` Oct 10 23:59:09.649 INFO kablam! --> src/main.rs:12:5 Oct 10 23:59:09.649 INFO kablam! | Oct 10 23:59:09.649 INFO kablam! 12 | hiddenLayerSize : i32, Oct 10 23:59:09.649 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:09.649 INFO kablam! Oct 10 23:59:09.661 INFO kablam! warning: structure field `inputLayerSize` should have a snake case name such as `input_layer_size` Oct 10 23:59:09.661 INFO kablam! --> src/main.rs:10:5 Oct 10 23:59:09.661 INFO kablam! | Oct 10 23:59:09.661 INFO kablam! 10 | inputLayerSize : i32, Oct 10 23:59:09.662 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:09.662 INFO kablam! | Oct 10 23:59:09.662 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 10 23:59:09.662 INFO kablam! Oct 10 23:59:09.662 INFO kablam! warning: structure field `outputLayerSize` should have a snake case name such as `output_layer_size` Oct 10 23:59:09.663 INFO kablam! --> src/main.rs:11:5 Oct 10 23:59:09.663 INFO kablam! | Oct 10 23:59:09.663 INFO kablam! 11 | outputLayerSize : i32, Oct 10 23:59:09.663 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:09.663 INFO kablam! Oct 10 23:59:09.664 INFO kablam! warning: structure field `hiddenLayerSize` should have a snake case name such as `hidden_layer_size` Oct 10 23:59:09.664 INFO kablam! --> src/main.rs:12:5 Oct 10 23:59:09.665 INFO kablam! | Oct 10 23:59:09.665 INFO kablam! 12 | hiddenLayerSize : i32, Oct 10 23:59:09.665 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:09.665 INFO kablam! Oct 10 23:59:09.665 INFO kablam! warning: method `costFunctionPrime` should have a snake case name such as `cost_function_prime` Oct 10 23:59:09.665 INFO kablam! --> src/main.rs:45:5 Oct 10 23:59:09.665 INFO kablam! | Oct 10 23:59:09.665 INFO kablam! 45 | / pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 10 23:59:09.665 INFO kablam! 46 | | let yHat = self.forward(X.clone()); Oct 10 23:59:09.665 INFO kablam! 47 | | Oct 10 23:59:09.665 INFO kablam! 48 | | let delta3 = self.z3.clone().apply(&sigmoid_prime); Oct 10 23:59:09.665 INFO kablam! ... | Oct 10 23:59:09.665 INFO kablam! 55 | | (djdw2, djdw1) Oct 10 23:59:09.665 INFO kablam! 56 | | } Oct 10 23:59:09.665 INFO kablam! | |_____^ Oct 10 23:59:09.665 INFO kablam! Oct 10 23:59:09.665 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 10 23:59:09.665 INFO kablam! --> src/main.rs:45:41 Oct 10 23:59:09.665 INFO kablam! | Oct 10 23:59:09.665 INFO kablam! 45 | pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 10 23:59:09.665 INFO kablam! | ^ Oct 10 23:59:09.665 INFO kablam! Oct 10 23:59:09.665 INFO kablam! warning: variable `yHat` should have a snake case name such as `y_hat` Oct 10 23:59:09.665 INFO kablam! --> src/main.rs:46:13 Oct 10 23:59:09.665 INFO kablam! | Oct 10 23:59:09.665 INFO kablam! 46 | let yHat = self.forward(X.clone()); Oct 10 23:59:09.665 INFO kablam! | ^^^^ Oct 10 23:59:09.665 INFO kablam! Oct 10 23:59:09.665 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 10 23:59:09.665 INFO kablam! --> src/main.rs:78:9 Oct 10 23:59:09.665 INFO kablam! | Oct 10 23:59:09.665 INFO kablam! 78 | let X = Matrix::new(3, 2, vec![ Oct 10 23:59:09.665 INFO kablam! | ^ Oct 10 23:59:09.665 INFO kablam! Oct 10 23:59:10.577 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 7.34s Oct 10 23:59:10.585 INFO kablam! su: No module specific data is present Oct 10 23:59:11.688 INFO running `"docker" "rm" "-f" "8290b42290ec19bfb44bc7d503128f1a930073ad210d059e3bd31ed7240c89a9"` Oct 10 23:59:12.088 INFO blam! 8290b42290ec19bfb44bc7d503128f1a930073ad210d059e3bd31ed7240c89a9 Oct 10 23:59:12.094 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run Oct 10 23:59:12.094 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 10 23:59:12.888 INFO blam! 2440d11348d5963865c90dca9b09f3d36cbdb77a0d947109bb5223e2fa3cd104 Oct 10 23:59:12.891 INFO running `"docker" "start" "-a" "2440d11348d5963865c90dca9b09f3d36cbdb77a0d947109bb5223e2fa3cd104"` Oct 10 23:59:14.124 INFO kablam! usermod: no changes Oct 10 23:59:14.193 INFO kablam! Compiling rust_neuralnet v0.1.0 (/source) Oct 10 23:59:15.600 INFO kablam! warning: field is never used: `inputLayerSize` Oct 10 23:59:15.600 INFO kablam! --> src/main.rs:10:5 Oct 10 23:59:15.600 INFO kablam! | Oct 10 23:59:15.600 INFO kablam! 10 | inputLayerSize : i32, Oct 10 23:59:15.600 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:15.600 INFO kablam! | Oct 10 23:59:15.600 INFO kablam! = note: #[warn(dead_code)] on by default Oct 10 23:59:15.600 INFO kablam! Oct 10 23:59:15.600 INFO kablam! warning: field is never used: `outputLayerSize` Oct 10 23:59:15.600 INFO kablam! --> src/main.rs:11:5 Oct 10 23:59:15.600 INFO kablam! | Oct 10 23:59:15.600 INFO kablam! 11 | outputLayerSize : i32, Oct 10 23:59:15.600 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:15.600 INFO kablam! Oct 10 23:59:15.600 INFO kablam! warning: field is never used: `hiddenLayerSize` Oct 10 23:59:15.600 INFO kablam! --> src/main.rs:12:5 Oct 10 23:59:15.600 INFO kablam! | Oct 10 23:59:15.600 INFO kablam! 12 | hiddenLayerSize : i32, Oct 10 23:59:15.600 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:15.601 INFO kablam! Oct 10 23:59:15.616 INFO kablam! warning: structure field `inputLayerSize` should have a snake case name such as `input_layer_size` Oct 10 23:59:15.616 INFO kablam! --> src/main.rs:10:5 Oct 10 23:59:15.616 INFO kablam! | Oct 10 23:59:15.616 INFO kablam! 10 | inputLayerSize : i32, Oct 10 23:59:15.616 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:15.616 INFO kablam! | Oct 10 23:59:15.616 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 10 23:59:15.616 INFO kablam! Oct 10 23:59:15.616 INFO kablam! warning: structure field `outputLayerSize` should have a snake case name such as `output_layer_size` Oct 10 23:59:15.616 INFO kablam! --> src/main.rs:11:5 Oct 10 23:59:15.617 INFO kablam! | Oct 10 23:59:15.617 INFO kablam! 11 | outputLayerSize : i32, Oct 10 23:59:15.617 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:15.617 INFO kablam! Oct 10 23:59:15.617 INFO kablam! warning: structure field `hiddenLayerSize` should have a snake case name such as `hidden_layer_size` Oct 10 23:59:15.617 INFO kablam! --> src/main.rs:12:5 Oct 10 23:59:15.617 INFO kablam! | Oct 10 23:59:15.617 INFO kablam! 12 | hiddenLayerSize : i32, Oct 10 23:59:15.617 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 10 23:59:15.617 INFO kablam! Oct 10 23:59:15.617 INFO kablam! warning: method `costFunctionPrime` should have a snake case name such as `cost_function_prime` Oct 10 23:59:15.617 INFO kablam! --> src/main.rs:45:5 Oct 10 23:59:15.617 INFO kablam! | Oct 10 23:59:15.617 INFO kablam! 45 | / pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 10 23:59:15.617 INFO kablam! 46 | | let yHat = self.forward(X.clone()); Oct 10 23:59:15.617 INFO kablam! 47 | | Oct 10 23:59:15.617 INFO kablam! 48 | | let delta3 = self.z3.clone().apply(&sigmoid_prime); Oct 10 23:59:15.617 INFO kablam! ... | Oct 10 23:59:15.617 INFO kablam! 55 | | (djdw2, djdw1) Oct 10 23:59:15.617 INFO kablam! 56 | | } Oct 10 23:59:15.617 INFO kablam! | |_____^ Oct 10 23:59:15.617 INFO kablam! Oct 10 23:59:15.617 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 10 23:59:15.617 INFO kablam! --> src/main.rs:45:41 Oct 10 23:59:15.617 INFO kablam! | Oct 10 23:59:15.617 INFO kablam! 45 | pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 10 23:59:15.617 INFO kablam! | ^ Oct 10 23:59:15.617 INFO kablam! Oct 10 23:59:15.617 INFO kablam! warning: variable `yHat` should have a snake case name such as `y_hat` Oct 10 23:59:15.617 INFO kablam! --> src/main.rs:46:13 Oct 10 23:59:15.617 INFO kablam! | Oct 10 23:59:15.617 INFO kablam! 46 | let yHat = self.forward(X.clone()); Oct 10 23:59:15.617 INFO kablam! | ^^^^ Oct 10 23:59:15.617 INFO kablam! Oct 10 23:59:15.628 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 10 23:59:15.628 INFO kablam! --> src/main.rs:78:9 Oct 10 23:59:15.628 INFO kablam! | Oct 10 23:59:15.628 INFO kablam! 78 | let X = Matrix::new(3, 2, vec![ Oct 10 23:59:15.628 INFO kablam! | ^ Oct 10 23:59:15.628 INFO kablam! Oct 10 23:59:16.420 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 2.27s Oct 10 23:59:16.420 INFO kablam! su: No module specific data is present Oct 10 23:59:17.364 INFO running `"docker" "rm" "-f" "2440d11348d5963865c90dca9b09f3d36cbdb77a0d947109bb5223e2fa3cd104"` Oct 10 23:59:17.688 INFO blam! 2440d11348d5963865c90dca9b09f3d36cbdb77a0d947109bb5223e2fa3cd104 Oct 10 23:59:17.692 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen Oct 10 23:59:17.692 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 10 23:59:18.219 INFO blam! 44bda91d0b21961c6bba46a96b814f9e50bfc31f5a84d5a326296954ba2b1fdb Oct 10 23:59:18.220 INFO running `"docker" "start" "-a" "44bda91d0b21961c6bba46a96b814f9e50bfc31f5a84d5a326296954ba2b1fdb"` Oct 10 23:59:20.544 INFO kablam! usermod: no changes Oct 10 23:59:20.644 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.07s Oct 10 23:59:20.644 INFO kablam! Running /target/debug/deps/rust_neuralnet-97fd724af49af0ef Oct 10 23:59:20.644 INFO blam! Oct 10 23:59:20.644 INFO blam! running 1 test Oct 10 23:59:20.652 INFO blam! test test_sigmoid ... ok Oct 10 23:59:20.652 INFO blam! Oct 10 23:59:20.652 INFO blam! test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 10 23:59:20.652 INFO blam! Oct 10 23:59:20.653 INFO kablam! su: No module specific data is present Oct 10 23:59:21.728 INFO running `"docker" "rm" "-f" "44bda91d0b21961c6bba46a96b814f9e50bfc31f5a84d5a326296954ba2b1fdb"` Oct 10 23:59:22.033 INFO blam! 44bda91d0b21961c6bba46a96b814f9e50bfc31f5a84d5a326296954ba2b1fdb