Oct 10 13:23:02.401 INFO testing tkyk0317/deeplearning_by_rust against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling Oct 10 13:23:02.402 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen Oct 10 13:23:02.403 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-6/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 13:23:02.918 INFO blam! 44d1e1cc51329a53d3001de867798f79d0abab5899ad20f71043d86c0b2dd5ff Oct 10 13:23:02.936 INFO running `"docker" "start" "-a" "44d1e1cc51329a53d3001de867798f79d0abab5899ad20f71043d86c0b2dd5ff"` Oct 10 13:23:04.360 INFO kablam! usermod: no changes Oct 10 13:23:04.454 INFO kablam! Compiling mnist v0.4.0 Oct 10 13:23:04.454 INFO kablam! Compiling generic-array v0.2.1 Oct 10 13:23:05.708 INFO kablam! Compiling nalgebra v0.12.3 Oct 10 13:23:33.849 INFO kablam! Compiling deeplearning_from_scratch v0.1.0 (/source) Oct 10 13:23:34.696 INFO kablam! warning: unused imports: `AxesCommon`, `Caption`, `Color`, `Figure`, `Fix` Oct 10 13:23:34.696 INFO kablam! --> src/main.rs:7:15 Oct 10 13:23:34.696 INFO kablam! | Oct 10 13:23:34.696 INFO kablam! 7 | use gnuplot::{Figure, Caption, Color, AxesCommon, Fix}; Oct 10 13:23:34.696 INFO kablam! | ^^^^^^ ^^^^^^^ ^^^^^ ^^^^^^^^^^ ^^^ Oct 10 13:23:34.696 INFO kablam! | Oct 10 13:23:34.696 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 10 13:23:34.696 INFO kablam! Oct 10 13:23:34.696 INFO kablam! warning: unused import: `std::vec::Vec` Oct 10 13:23:34.696 INFO kablam! --> src/main.rs:8:5 Oct 10 13:23:34.696 INFO kablam! | Oct 10 13:23:34.696 INFO kablam! 8 | use std::vec::Vec; Oct 10 13:23:34.696 INFO kablam! | ^^^^^^^^^^^^^ Oct 10 13:23:34.696 INFO kablam! Oct 10 13:23:34.697 INFO kablam! warning: unused import: `std::rc::Rc` Oct 10 13:23:34.697 INFO kablam! --> src/neuron.rs:3:5 Oct 10 13:23:34.697 INFO kablam! | Oct 10 13:23:34.697 INFO kablam! 3 | use std::rc::Rc; Oct 10 13:23:34.697 INFO kablam! | ^^^^^^^^^^^ Oct 10 13:23:34.697 INFO kablam! Oct 10 13:23:34.697 INFO kablam! warning: unused import: `std::cell::RefCell` Oct 10 13:23:34.697 INFO kablam! --> src/neuron.rs:4:5 Oct 10 13:23:34.697 INFO kablam! | Oct 10 13:23:34.697 INFO kablam! 4 | use std::cell::RefCell; Oct 10 13:23:34.697 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 10 13:23:34.697 INFO kablam! Oct 10 13:23:34.840 INFO kablam! warning: unused variable: `rows` Oct 10 13:23:34.840 INFO kablam! --> src/main.rs:87:16 Oct 10 13:23:34.840 INFO kablam! | Oct 10 13:23:34.840 INFO kablam! 87 | let (size, rows, cols) = (50_000, 28, 28); Oct 10 13:23:34.840 INFO kablam! | ^^^^ help: consider using `_rows` instead Oct 10 13:23:34.840 INFO kablam! | Oct 10 13:23:34.840 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 10 13:23:34.840 INFO kablam! Oct 10 13:23:34.840 INFO kablam! warning: unused variable: `cols` Oct 10 13:23:34.840 INFO kablam! --> src/main.rs:87:22 Oct 10 13:23:34.840 INFO kablam! | Oct 10 13:23:34.840 INFO kablam! 87 | let (size, rows, cols) = (50_000, 28, 28); Oct 10 13:23:34.840 INFO kablam! | ^^^^ help: consider using `_cols` instead Oct 10 13:23:34.840 INFO kablam! Oct 10 13:23:34.840 INFO kablam! warning: unused variable: `trn_lbl` Oct 10 13:23:34.840 INFO kablam! --> src/main.rs:88:26 Oct 10 13:23:34.840 INFO kablam! | Oct 10 13:23:34.840 INFO kablam! 88 | let Mnist { trn_img, trn_lbl, .. } = MnistBuilder::new().label_format_digit() Oct 10 13:23:34.841 INFO kablam! | ^^^^^^^ help: try ignoring the field: `trn_lbl: _` Oct 10 13:23:34.841 INFO kablam! Oct 10 13:23:34.864 INFO kablam! warning: method is never used: `step` Oct 10 13:23:34.864 INFO kablam! --> src/neuron.rs:26:5 Oct 10 13:23:34.864 INFO kablam! | Oct 10 13:23:34.864 INFO kablam! 26 | pub fn step(&self) -> DMatrix { Oct 10 13:23:34.864 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:34.864 INFO kablam! | Oct 10 13:23:34.864 INFO kablam! = note: #[warn(dead_code)] on by default Oct 10 13:23:34.864 INFO kablam! Oct 10 13:23:34.864 INFO kablam! warning: method is never used: `relu` Oct 10 13:23:34.864 INFO kablam! --> src/neuron.rs:41:5 Oct 10 13:23:34.864 INFO kablam! | Oct 10 13:23:34.864 INFO kablam! 41 | pub fn relu(&self) -> DMatrix { Oct 10 13:23:34.864 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:34.864 INFO kablam! Oct 10 13:23:34.872 INFO kablam! warning: method is never used: `numerical_diff` Oct 10 13:23:34.872 INFO kablam! --> src/gradient.rs:57:5 Oct 10 13:23:34.872 INFO kablam! | Oct 10 13:23:34.872 INFO kablam! 57 | pub fn numerical_diff f64>(x: f64, func: F) -> f64 { Oct 10 13:23:34.872 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:34.872 INFO kablam! Oct 10 13:23:34.872 INFO kablam! warning: function is never used: `sum_of_square` Oct 10 13:23:34.872 INFO kablam! --> src/loss_func.rs:6:1 Oct 10 13:23:34.872 INFO kablam! | Oct 10 13:23:34.872 INFO kablam! 6 | pub fn sum_of_square(result: &DMatrix, reference: &DMatrix) -> f64 { Oct 10 13:23:34.872 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:34.872 INFO kablam! Oct 10 13:23:36.110 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 31.72s Oct 10 13:23:36.114 INFO kablam! su: No module specific data is present Oct 10 13:23:36.785 INFO running `"docker" "rm" "-f" "44d1e1cc51329a53d3001de867798f79d0abab5899ad20f71043d86c0b2dd5ff"` Oct 10 13:23:37.012 INFO blam! 44d1e1cc51329a53d3001de867798f79d0abab5899ad20f71043d86c0b2dd5ff Oct 10 13:23:37.016 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run Oct 10 13:23:37.016 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-6/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 13:23:37.369 INFO blam! 925a4357f2231256797dff2e59e94591c535e72a8dae865e2a44c4e9bcb42ce0 Oct 10 13:23:37.371 INFO running `"docker" "start" "-a" "925a4357f2231256797dff2e59e94591c535e72a8dae865e2a44c4e9bcb42ce0"` Oct 10 13:23:38.560 INFO kablam! usermod: no changes Oct 10 13:23:38.653 INFO kablam! Compiling deeplearning_from_scratch v0.1.0 (/source) Oct 10 13:23:39.620 INFO kablam! warning: unused import: `std::rc::Rc` Oct 10 13:23:39.621 INFO kablam! --> src/neuron.rs:3:5 Oct 10 13:23:39.621 INFO kablam! | Oct 10 13:23:39.621 INFO kablam! 3 | use std::rc::Rc; Oct 10 13:23:39.622 INFO kablam! | ^^^^^^^^^^^ Oct 10 13:23:39.622 INFO kablam! | Oct 10 13:23:39.622 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 10 13:23:39.623 INFO kablam! Oct 10 13:23:39.623 INFO kablam! warning: unused import: `std::cell::RefCell` Oct 10 13:23:39.623 INFO kablam! --> src/neuron.rs:4:5 Oct 10 13:23:39.623 INFO kablam! | Oct 10 13:23:39.624 INFO kablam! 4 | use std::cell::RefCell; Oct 10 13:23:39.624 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 10 13:23:39.636 INFO kablam! Oct 10 13:23:39.800 INFO kablam! warning: unused variable: `rows` Oct 10 13:23:39.801 INFO kablam! --> src/main.rs:87:16 Oct 10 13:23:39.801 INFO kablam! | Oct 10 13:23:39.801 INFO kablam! 87 | let (size, rows, cols) = (50_000, 28, 28); Oct 10 13:23:39.802 INFO kablam! | ^^^^ help: consider using `_rows` instead Oct 10 13:23:39.802 INFO kablam! | Oct 10 13:23:39.802 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 10 13:23:39.802 INFO kablam! Oct 10 13:23:39.803 INFO kablam! warning: unused variable: `cols` Oct 10 13:23:39.803 INFO kablam! --> src/main.rs:87:22 Oct 10 13:23:39.803 INFO kablam! | Oct 10 13:23:39.804 INFO kablam! 87 | let (size, rows, cols) = (50_000, 28, 28); Oct 10 13:23:39.804 INFO kablam! | ^^^^ help: consider using `_cols` instead Oct 10 13:23:39.804 INFO kablam! Oct 10 13:23:39.804 INFO kablam! warning: unused variable: `trn_lbl` Oct 10 13:23:39.805 INFO kablam! --> src/main.rs:88:26 Oct 10 13:23:39.805 INFO kablam! | Oct 10 13:23:39.805 INFO kablam! 88 | let Mnist { trn_img, trn_lbl, .. } = MnistBuilder::new().label_format_digit() Oct 10 13:23:39.806 INFO kablam! | ^^^^^^^ help: try ignoring the field: `trn_lbl: _` Oct 10 13:23:39.806 INFO kablam! Oct 10 13:23:39.836 INFO kablam! warning: method is never used: `step` Oct 10 13:23:39.837 INFO kablam! --> src/neuron.rs:26:5 Oct 10 13:23:39.837 INFO kablam! | Oct 10 13:23:39.837 INFO kablam! 26 | pub fn step(&self) -> DMatrix { Oct 10 13:23:39.838 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:39.838 INFO kablam! | Oct 10 13:23:39.838 INFO kablam! = note: #[warn(dead_code)] on by default Oct 10 13:23:39.839 INFO kablam! Oct 10 13:23:39.839 INFO kablam! warning: method is never used: `relu` Oct 10 13:23:39.839 INFO kablam! --> src/neuron.rs:41:5 Oct 10 13:23:39.839 INFO kablam! | Oct 10 13:23:39.840 INFO kablam! 41 | pub fn relu(&self) -> DMatrix { Oct 10 13:23:39.840 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:39.840 INFO kablam! Oct 10 13:23:39.840 INFO kablam! warning: method is never used: `numerical_diff` Oct 10 13:23:39.841 INFO kablam! --> src/gradient.rs:57:5 Oct 10 13:23:39.841 INFO kablam! | Oct 10 13:23:39.841 INFO kablam! 57 | pub fn numerical_diff f64>(x: f64, func: F) -> f64 { Oct 10 13:23:39.842 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:39.842 INFO kablam! Oct 10 13:23:39.842 INFO kablam! warning: function is never used: `sum_of_square` Oct 10 13:23:39.842 INFO kablam! --> src/loss_func.rs:6:1 Oct 10 13:23:39.843 INFO kablam! | Oct 10 13:23:39.843 INFO kablam! 6 | pub fn sum_of_square(result: &DMatrix, reference: &DMatrix) -> f64 { Oct 10 13:23:39.843 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 10 13:23:39.843 INFO kablam! Oct 10 13:23:40.508 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.92s Oct 10 13:23:40.508 INFO kablam! su: No module specific data is present Oct 10 13:23:41.477 INFO running `"docker" "rm" "-f" "925a4357f2231256797dff2e59e94591c535e72a8dae865e2a44c4e9bcb42ce0"` Oct 10 13:23:41.753 INFO blam! 925a4357f2231256797dff2e59e94591c535e72a8dae865e2a44c4e9bcb42ce0 Oct 10 13:23:41.778 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen Oct 10 13:23:41.779 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-6/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 13:23:42.116 INFO blam! cb234b71c1703f9b2c93e50789de3f23f2f5ccb2088e632396599e2f34a72541 Oct 10 13:23:42.122 INFO running `"docker" "start" "-a" "cb234b71c1703f9b2c93e50789de3f23f2f5ccb2088e632396599e2f34a72541"` Oct 10 13:23:43.359 INFO kablam! usermod: no changes Oct 10 13:23:43.417 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.03s Oct 10 13:23:43.432 INFO kablam! Running /target/debug/deps/deeplearning_from_scratch-a29d0d1a1b776bca Oct 10 13:23:43.432 INFO blam! Oct 10 13:23:43.432 INFO blam! running 1 test Oct 10 13:23:43.456 INFO blam! test draw_active_function ... ok Oct 10 13:23:43.456 INFO blam! Oct 10 13:23:43.456 INFO blam! test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 10 13:23:43.456 INFO blam! Oct 10 13:23:43.460 INFO kablam! su: No module specific data is present Oct 10 13:23:44.219 INFO running `"docker" "rm" "-f" "cb234b71c1703f9b2c93e50789de3f23f2f5ccb2088e632396599e2f34a72541"` Oct 10 13:23:44.384 INFO blam! cb234b71c1703f9b2c93e50789de3f23f2f5ccb2088e632396599e2f34a72541