Sep 02 05:56:00.024 INFO checking ocl-0.19.0 against master#1114ab684fbad001c4e580326d8eb4d8c4e917d3 for pr-53851 Sep 02 05:56:00.024 INFO running: cargo +1114ab684fbad001c4e580326d8eb4d8c4e917d3-alt check --frozen --all --all-targets Sep 02 05:56:00.024 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-0/pr-53851/master#1114ab684fbad001c4e580326d8eb4d8c4e917d3:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53851/worker-0/master#1114ab684fbad001c4e580326d8eb4d8c4e917d3:/target:rw,Z" "-v" "/home/ec2-user/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/home/ec2-user/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=500" "-e" "CMD=cargo +1114ab684fbad001c4e580326d8eb4d8c4e917d3-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "2G" "crater"` Sep 02 05:56:00.250 INFO blam! 289b3b3dda52e8768abd25d35f8e17632bad7be7a1298c735eb85cad953c0a21 Sep 02 05:56:00.252 INFO running `"docker" "start" "-a" "289b3b3dda52e8768abd25d35f8e17632bad7be7a1298c735eb85cad953c0a21"` Sep 02 05:56:01.075 INFO kablam! Checking qutex v0.1.1 Sep 02 05:56:01.076 INFO kablam! Compiling ocl-core v0.4.1 Sep 02 05:56:01.076 INFO kablam! Compiling ocl-core v0.10.0 Sep 02 05:56:01.082 INFO kablam! Checking chrono v0.2.25 Sep 02 05:56:10.427 INFO kablam! Checking ocl v0.13.1 Sep 02 05:56:11.500 INFO kablam! Checking ocl v0.19.0 (file:///source) Sep 02 05:56:17.903 INFO kablam! Checking ocl-extras v0.1.0 Sep 02 05:56:24.723 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 02 05:56:24.723 INFO kablam! --> examples/async_menagerie.rs:119:5 Sep 02 05:56:24.723 INFO kablam! | Sep 02 05:56:24.723 INFO kablam! 119 | / pub fn fill(&self, pattern: T, cmd_idx: usize, buf_pool: &SubBufferPool) { Sep 02 05:56:24.723 INFO kablam! 120 | | let buffer_id = match *self.cmd_graph.commands()[cmd_idx].details() { Sep 02 05:56:24.723 INFO kablam! 121 | | CommandDetails::Fill { target } => target, Sep 02 05:56:24.723 INFO kablam! 122 | | _ => panic!("Task::fill: Not a fill command."), Sep 02 05:56:24.723 INFO kablam! ... | Sep 02 05:56:24.723 INFO kablam! 133 | | self.cmd_graph.set_cmd_event(cmd_idx, ev).unwrap(); Sep 02 05:56:24.723 INFO kablam! 134 | | } Sep 02 05:56:24.723 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 02 05:56:24.726 INFO kablam! | Sep 02 05:56:24.726 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 02 05:56:24.726 INFO kablam! = note: required by `extras::SubBufferPool` Sep 02 05:56:24.726 INFO kablam! Sep 02 05:56:24.727 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 02 05:56:24.727 INFO kablam! --> examples/async_menagerie.rs:137:5 Sep 02 05:56:24.728 INFO kablam! | Sep 02 05:56:24.728 INFO kablam! 137 | / pub fn map(&self, cmd_idx: usize, buf_pool: &SubBufferPool) -> FutureMemMap Sep 02 05:56:24.728 INFO kablam! 138 | | { Sep 02 05:56:24.728 INFO kablam! 139 | | let (buffer_id, flags, is_write) = match *self.cmd_graph.commands()[cmd_idx].details(){ Sep 02 05:56:24.728 INFO kablam! 140 | | CommandDetails::Write { target } => (target, MapFlags::new().write_invalidate_region(), true), Sep 02 05:56:24.728 INFO kablam! ... | Sep 02 05:56:24.728 INFO kablam! 166 | | future_data Sep 02 05:56:24.728 INFO kablam! 167 | | } Sep 02 05:56:24.728 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 02 05:56:24.728 INFO kablam! | Sep 02 05:56:24.728 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 02 05:56:24.728 INFO kablam! = note: required by `extras::SubBufferPool` Sep 02 05:56:24.728 INFO kablam! Sep 02 05:56:24.729 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 02 05:56:24.729 INFO kablam! --> examples/async_menagerie.rs:170:5 Sep 02 05:56:24.729 INFO kablam! | Sep 02 05:56:24.729 INFO kablam! 170 | / pub fn copy(&self, cmd_idx: usize, buf_pool: &SubBufferPool) { Sep 02 05:56:24.729 INFO kablam! 171 | | let (src_buf_id, tar_buf_id) = match *self.cmd_graph.commands()[cmd_idx].details(){ Sep 02 05:56:24.729 INFO kablam! 172 | | CommandDetails::Copy { source, target } => (source, target), Sep 02 05:56:24.729 INFO kablam! 173 | | _ => panic!("Task::copy: Not a copy command."), Sep 02 05:56:24.729 INFO kablam! ... | Sep 02 05:56:24.729 INFO kablam! 185 | | self.cmd_graph.set_cmd_event(cmd_idx, ev).unwrap(); Sep 02 05:56:24.729 INFO kablam! 186 | | } Sep 02 05:56:24.729 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 02 05:56:24.729 INFO kablam! | Sep 02 05:56:24.729 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 02 05:56:24.729 INFO kablam! = note: required by `extras::SubBufferPool` Sep 02 05:56:24.729 INFO kablam! Sep 02 05:56:24.759 INFO kablam! error: aborting due to 3 previous errors Sep 02 05:56:24.759 INFO kablam! Sep 02 05:56:24.759 INFO kablam! For more information about this error, try `rustc --explain E0277`. Sep 02 05:56:24.810 INFO kablam! error: Could not compile `ocl`. Sep 02 05:56:24.810 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 05:56:25.631 INFO kablam! error[E0425]: cannot find function `scrambled_vec` in module `ocl_extras` Sep 02 05:56:25.631 INFO kablam! --> examples/event_callbacks.rs:105:32 Sep 02 05:56:25.631 INFO kablam! | Sep 02 05:56:25.631 INFO kablam! 105 | let seed_vec = ocl_extras::scrambled_vec((0u32, 500u32), dataset_len); Sep 02 05:56:25.631 INFO kablam! | ^^^^^^^^^^^^^ not found in `ocl_extras` Sep 02 05:56:25.650 INFO kablam! Sep 02 05:56:26.373 INFO kablam! error[E0277]: the size for values of type `[_]` cannot be known at compilation time Sep 02 05:56:26.373 INFO kablam! --> examples/event_callbacks.rs:105:9 Sep 02 05:56:26.373 INFO kablam! | Sep 02 05:56:26.373 INFO kablam! 105 | let seed_vec = ocl_extras::scrambled_vec((0u32, 500u32), dataset_len); Sep 02 05:56:26.373 INFO kablam! | ^^^^^^^^ doesn't have a size known at compile-time Sep 02 05:56:26.373 INFO kablam! | Sep 02 05:56:26.373 INFO kablam! = help: the trait `std::marker::Sized` is not implemented for `[_]` Sep 02 05:56:26.374 INFO kablam! = note: to learn more, visit Sep 02 05:56:26.374 INFO kablam! = note: all local variables must have a statically known size Sep 02 05:56:26.374 INFO kablam! = help: unsized locals are gated as an unstable feature Sep 02 05:56:26.374 INFO kablam! Sep 02 05:56:26.492 INFO kablam! error[E0599]: no method named `as_slice` found for type `[_]` in the current scope Sep 02 05:56:26.492 INFO kablam! --> examples/event_callbacks.rs:144:32 Sep 02 05:56:26.492 INFO kablam! | Sep 02 05:56:26.492 INFO kablam! 144 | seed_vec: seed_vec.as_slice() as *const [u32], Sep 02 05:56:26.492 INFO kablam! | ^^^^^^^^ Sep 02 05:56:26.493 INFO kablam! Sep 02 05:56:26.539 INFO kablam! error: aborting due to 3 previous errors Sep 02 05:56:26.539 INFO kablam! Sep 02 05:56:26.540 INFO kablam! Some errors occurred: E0277, E0425, E0599. Sep 02 05:56:26.541 INFO kablam! For more information about an error, try `rustc --explain E0277`. Sep 02 05:56:26.555 INFO kablam! error: Could not compile `ocl`. Sep 02 05:56:26.556 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 05:56:26.561 INFO kablam! error[E0425]: cannot find function `scrambled_vec` in module `ocl_extras` Sep 02 05:56:26.561 INFO kablam! --> examples/buffer_sink.rs:58:21 Sep 02 05:56:26.561 INFO kablam! | Sep 02 05:56:26.561 INFO kablam! 58 | ocl_extras::scrambled_vec((0, 20), ocl_pq.dims().to_len()) Sep 02 05:56:26.561 INFO kablam! | ^^^^^^^^^^^^^ not found in `ocl_extras` Sep 02 05:56:26.561 INFO kablam! Sep 02 05:56:26.874 INFO kablam! error[E0277]: the size for values of type `[i32]` cannot be known at compilation time Sep 02 05:56:26.874 INFO kablam! --> examples/buffer_sink.rs:71:13 Sep 02 05:56:26.874 INFO kablam! | Sep 02 05:56:26.874 INFO kablam! 71 | let source_data = source_datas[i].clone(); Sep 02 05:56:26.874 INFO kablam! | ^^^^^^^^^^^ doesn't have a size known at compile-time Sep 02 05:56:26.874 INFO kablam! | Sep 02 05:56:26.875 INFO kablam! = help: the trait `std::marker::Sized` is not implemented for `[i32]` Sep 02 05:56:26.875 INFO kablam! = note: to learn more, visit Sep 02 05:56:26.875 INFO kablam! = note: all local variables must have a statically known size Sep 02 05:56:26.875 INFO kablam! = help: unsized locals are gated as an unstable feature Sep 02 05:56:26.875 INFO kablam! Sep 02 05:56:26.934 INFO kablam! error: aborting due to 2 previous errors Sep 02 05:56:26.934 INFO kablam! Sep 02 05:56:26.934 INFO kablam! Some errors occurred: E0277, E0425. Sep 02 05:56:26.934 INFO kablam! For more information about an error, try `rustc --explain E0277`. Sep 02 05:56:26.947 INFO kablam! error: Could not compile `ocl`. Sep 02 05:56:26.947 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 05:56:33.108 INFO kablam! error: build failed Sep 02 05:56:33.110 INFO kablam! su: No module specific data is present Sep 02 05:56:33.607 INFO running `"docker" "rm" "-f" "289b3b3dda52e8768abd25d35f8e17632bad7be7a1298c735eb85cad953c0a21"` Sep 02 05:56:33.750 INFO blam! 289b3b3dda52e8768abd25d35f8e17632bad7be7a1298c735eb85cad953c0a21