Oct 27 05:35:47.810 INFO checking drakeor/rust-neural-net against try#19f01b935b91481fd445b16b533d2f87661bf12e for pr-55192-2 Oct 27 05:35:47.812 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192-2/worker-3/try#19f01b935b91481fd445b16b533d2f87661bf12e:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-3/pr-55192-2/try#19f01b935b91481fd445b16b533d2f87661bf12e:/source:ro,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" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +19f01b935b91481fd445b16b533d2f87661bf12e-alt check --frozen --all --all-targets" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 27 05:35:48.229 INFO blam! f9ba5ccfd53fa5dc7ad7593068edbaf0d16a1873a521eda027a13ddd6c2594b6 Oct 27 05:35:48.235 INFO running `"docker" "start" "-a" "f9ba5ccfd53fa5dc7ad7593068edbaf0d16a1873a521eda027a13ddd6c2594b6"` Oct 27 05:35:49.675 INFO kablam! usermod: no changes Oct 27 05:35:49.757 INFO kablam! Checking rand v0.5.0 Oct 27 05:35:49.758 INFO kablam! Checking rulinalg v0.4.2 Oct 27 05:35:53.905 INFO kablam! Checking rust_neuralnet v0.1.0 (/source) Oct 27 05:35:54.819 INFO kablam! warning: field is never used: `inputLayerSize` Oct 27 05:35:54.819 INFO kablam! --> src/main.rs:10:5 Oct 27 05:35:54.819 INFO kablam! | Oct 27 05:35:54.819 INFO kablam! 10 | inputLayerSize : i32, Oct 27 05:35:54.819 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.819 INFO kablam! | Oct 27 05:35:54.819 INFO kablam! = note: #[warn(dead_code)] on by default Oct 27 05:35:54.819 INFO kablam! Oct 27 05:35:54.819 INFO kablam! warning: field is never used: `outputLayerSize` Oct 27 05:35:54.819 INFO kablam! --> src/main.rs:11:5 Oct 27 05:35:54.819 INFO kablam! | Oct 27 05:35:54.819 INFO kablam! 11 | outputLayerSize : i32, Oct 27 05:35:54.819 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.819 INFO kablam! Oct 27 05:35:54.819 INFO kablam! warning: field is never used: `hiddenLayerSize` Oct 27 05:35:54.819 INFO kablam! --> src/main.rs:12:5 Oct 27 05:35:54.819 INFO kablam! | Oct 27 05:35:54.819 INFO kablam! 12 | hiddenLayerSize : i32, Oct 27 05:35:54.819 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.819 INFO kablam! Oct 27 05:35:54.824 INFO kablam! warning: structure field `inputLayerSize` should have a snake case name such as `input_layer_size` Oct 27 05:35:54.824 INFO kablam! --> src/main.rs:10:5 Oct 27 05:35:54.824 INFO kablam! | Oct 27 05:35:54.824 INFO kablam! 10 | inputLayerSize : i32, Oct 27 05:35:54.824 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.824 INFO kablam! | Oct 27 05:35:54.824 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 27 05:35:54.824 INFO kablam! Oct 27 05:35:54.824 INFO kablam! warning: structure field `outputLayerSize` should have a snake case name such as `output_layer_size` Oct 27 05:35:54.824 INFO kablam! --> src/main.rs:11:5 Oct 27 05:35:54.824 INFO kablam! | Oct 27 05:35:54.824 INFO kablam! 11 | outputLayerSize : i32, Oct 27 05:35:54.824 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.824 INFO kablam! Oct 27 05:35:54.824 INFO kablam! warning: structure field `hiddenLayerSize` should have a snake case name such as `hidden_layer_size` Oct 27 05:35:54.824 INFO kablam! --> src/main.rs:12:5 Oct 27 05:35:54.824 INFO kablam! | Oct 27 05:35:54.824 INFO kablam! 12 | hiddenLayerSize : i32, Oct 27 05:35:54.824 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.824 INFO kablam! Oct 27 05:35:54.824 INFO kablam! warning: method `costFunctionPrime` should have a snake case name such as `cost_function_prime` Oct 27 05:35:54.824 INFO kablam! --> src/main.rs:45:5 Oct 27 05:35:54.824 INFO kablam! | Oct 27 05:35:54.824 INFO kablam! 45 | / pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 27 05:35:54.824 INFO kablam! 46 | | let yHat = self.forward(X.clone()); Oct 27 05:35:54.824 INFO kablam! 47 | | Oct 27 05:35:54.824 INFO kablam! 48 | | let delta3 = self.z3.clone().apply(&sigmoid_prime); Oct 27 05:35:54.824 INFO kablam! ... | Oct 27 05:35:54.824 INFO kablam! 55 | | (djdw2, djdw1) Oct 27 05:35:54.824 INFO kablam! 56 | | } Oct 27 05:35:54.824 INFO kablam! | |_____^ Oct 27 05:35:54.824 INFO kablam! Oct 27 05:35:54.824 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 27 05:35:54.824 INFO kablam! --> src/main.rs:45:41 Oct 27 05:35:54.824 INFO kablam! | Oct 27 05:35:54.824 INFO kablam! 45 | pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 27 05:35:54.824 INFO kablam! | ^ Oct 27 05:35:54.824 INFO kablam! Oct 27 05:35:54.824 INFO kablam! warning: variable `yHat` should have a snake case name such as `y_hat` Oct 27 05:35:54.824 INFO kablam! --> src/main.rs:46:13 Oct 27 05:35:54.824 INFO kablam! | Oct 27 05:35:54.824 INFO kablam! 46 | let yHat = self.forward(X.clone()); Oct 27 05:35:54.824 INFO kablam! | ^^^^ Oct 27 05:35:54.824 INFO kablam! Oct 27 05:35:54.835 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 27 05:35:54.835 INFO kablam! --> src/main.rs:78:9 Oct 27 05:35:54.835 INFO kablam! | Oct 27 05:35:54.835 INFO kablam! 78 | let X = Matrix::new(3, 2, vec![ Oct 27 05:35:54.835 INFO kablam! | ^ Oct 27 05:35:54.835 INFO kablam! Oct 27 05:35:54.839 INFO kablam! warning: field is never used: `inputLayerSize` Oct 27 05:35:54.839 INFO kablam! --> src/main.rs:10:5 Oct 27 05:35:54.839 INFO kablam! | Oct 27 05:35:54.839 INFO kablam! 10 | inputLayerSize : i32, Oct 27 05:35:54.839 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.839 INFO kablam! | Oct 27 05:35:54.839 INFO kablam! = note: #[warn(dead_code)] on by default Oct 27 05:35:54.839 INFO kablam! Oct 27 05:35:54.839 INFO kablam! warning: field is never used: `outputLayerSize` Oct 27 05:35:54.839 INFO kablam! --> src/main.rs:11:5 Oct 27 05:35:54.839 INFO kablam! | Oct 27 05:35:54.839 INFO kablam! 11 | outputLayerSize : i32, Oct 27 05:35:54.840 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.840 INFO kablam! Oct 27 05:35:54.840 INFO kablam! warning: field is never used: `hiddenLayerSize` Oct 27 05:35:54.840 INFO kablam! --> src/main.rs:12:5 Oct 27 05:35:54.840 INFO kablam! | Oct 27 05:35:54.840 INFO kablam! 12 | hiddenLayerSize : i32, Oct 27 05:35:54.840 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.840 INFO kablam! Oct 27 05:35:54.843 INFO kablam! warning: structure field `inputLayerSize` should have a snake case name such as `input_layer_size` Oct 27 05:35:54.843 INFO kablam! --> src/main.rs:10:5 Oct 27 05:35:54.843 INFO kablam! | Oct 27 05:35:54.843 INFO kablam! 10 | inputLayerSize : i32, Oct 27 05:35:54.843 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.843 INFO kablam! | Oct 27 05:35:54.843 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 27 05:35:54.843 INFO kablam! Oct 27 05:35:54.844 INFO kablam! warning: structure field `outputLayerSize` should have a snake case name such as `output_layer_size` Oct 27 05:35:54.844 INFO kablam! --> src/main.rs:11:5 Oct 27 05:35:54.844 INFO kablam! | Oct 27 05:35:54.844 INFO kablam! 11 | outputLayerSize : i32, Oct 27 05:35:54.844 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.844 INFO kablam! Oct 27 05:35:54.844 INFO kablam! warning: structure field `hiddenLayerSize` should have a snake case name such as `hidden_layer_size` Oct 27 05:35:54.844 INFO kablam! --> src/main.rs:12:5 Oct 27 05:35:54.844 INFO kablam! | Oct 27 05:35:54.844 INFO kablam! 12 | hiddenLayerSize : i32, Oct 27 05:35:54.844 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 27 05:35:54.844 INFO kablam! Oct 27 05:35:54.844 INFO kablam! warning: method `costFunctionPrime` should have a snake case name such as `cost_function_prime` Oct 27 05:35:54.844 INFO kablam! --> src/main.rs:45:5 Oct 27 05:35:54.844 INFO kablam! | Oct 27 05:35:54.844 INFO kablam! 45 | / pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 27 05:35:54.844 INFO kablam! 46 | | let yHat = self.forward(X.clone()); Oct 27 05:35:54.844 INFO kablam! 47 | | Oct 27 05:35:54.844 INFO kablam! 48 | | let delta3 = self.z3.clone().apply(&sigmoid_prime); Oct 27 05:35:54.844 INFO kablam! ... | Oct 27 05:35:54.844 INFO kablam! 55 | | (djdw2, djdw1) Oct 27 05:35:54.844 INFO kablam! 56 | | } Oct 27 05:35:54.844 INFO kablam! | |_____^ Oct 27 05:35:54.844 INFO kablam! Oct 27 05:35:54.844 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 27 05:35:54.844 INFO kablam! --> src/main.rs:45:41 Oct 27 05:35:54.844 INFO kablam! | Oct 27 05:35:54.844 INFO kablam! 45 | pub fn costFunctionPrime(&mut self, X : Matrix, y : Matrix) -> (Matrix, Matrix) { Oct 27 05:35:54.844 INFO kablam! | ^ Oct 27 05:35:54.844 INFO kablam! Oct 27 05:35:54.844 INFO kablam! warning: variable `yHat` should have a snake case name such as `y_hat` Oct 27 05:35:54.844 INFO kablam! --> src/main.rs:46:13 Oct 27 05:35:54.844 INFO kablam! | Oct 27 05:35:54.844 INFO kablam! 46 | let yHat = self.forward(X.clone()); Oct 27 05:35:54.844 INFO kablam! | ^^^^ Oct 27 05:35:54.844 INFO kablam! Oct 27 05:35:54.853 INFO kablam! warning: variable `X` should have a snake case name such as `x` Oct 27 05:35:54.853 INFO kablam! --> src/main.rs:78:9 Oct 27 05:35:54.853 INFO kablam! | Oct 27 05:35:54.853 INFO kablam! 78 | let X = Matrix::new(3, 2, vec![ Oct 27 05:35:54.853 INFO kablam! | ^ Oct 27 05:35:54.853 INFO kablam! Oct 27 05:35:54.865 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 5.16s Oct 27 05:35:54.870 INFO kablam! su: No module specific data is present Oct 27 05:35:55.144 INFO running `"docker" "rm" "-f" "f9ba5ccfd53fa5dc7ad7593068edbaf0d16a1873a521eda027a13ddd6c2594b6"` Oct 27 05:35:55.261 INFO blam! f9ba5ccfd53fa5dc7ad7593068edbaf0d16a1873a521eda027a13ddd6c2594b6