Sep 04 09:18:30.187 INFO checking ocl-0.18.0 against master#28bcffead74d5e17c6cb1f7de432e37f93a6b50c for pr-53893 Sep 04 09:18:30.187 INFO running: cargo +28bcffead74d5e17c6cb1f7de432e37f93a6b50c-alt check --frozen --all --all-targets Sep 04 09:18:30.187 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-3/pr-53893/master#28bcffead74d5e17c6cb1f7de432e37f93a6b50c:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53893/worker-3/master#28bcffead74d5e17c6cb1f7de432e37f93a6b50c:/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 +28bcffead74d5e17c6cb1f7de432e37f93a6b50c-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "2G" "crater"` Sep 04 09:18:30.346 INFO blam! 662854d5415daff4773b20e91afd40daaa9ba6dd7a1a8e58a455668d374b4935 Sep 04 09:18:30.348 INFO running `"docker" "start" "-a" "662854d5415daff4773b20e91afd40daaa9ba6dd7a1a8e58a455668d374b4935"` Sep 04 09:18:31.183 INFO kablam! Checking qutex v0.1.1 Sep 04 09:18:31.184 INFO kablam! Compiling ocl-core v0.4.1 Sep 04 09:18:31.184 INFO kablam! Compiling ocl-core v0.9.0 Sep 04 09:18:41.108 INFO kablam! Checking ocl v0.13.1 Sep 04 09:18:42.513 INFO kablam! Checking ocl v0.18.0 (file:///source) Sep 04 09:18:48.660 INFO kablam! Checking ocl-extras v0.1.0 Sep 04 09:19:00.457 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 04 09:19:00.457 INFO kablam! --> examples/async_menagerie.rs:119:5 Sep 04 09:19:00.457 INFO kablam! | Sep 04 09:19:00.457 INFO kablam! 119 | / pub fn fill(&self, pattern: T, cmd_idx: usize, buf_pool: &SubBufferPool) { Sep 04 09:19:00.457 INFO kablam! 120 | | let buffer_id = match *self.cmd_graph.commands()[cmd_idx].details() { Sep 04 09:19:00.457 INFO kablam! 121 | | CommandDetails::Fill { target } => target, Sep 04 09:19:00.457 INFO kablam! 122 | | _ => panic!("Task::fill: Not a fill command."), Sep 04 09:19:00.457 INFO kablam! ... | Sep 04 09:19:00.457 INFO kablam! 133 | | self.cmd_graph.set_cmd_event(cmd_idx, ev).unwrap(); Sep 04 09:19:00.458 INFO kablam! 134 | | } Sep 04 09:19:00.458 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 04 09:19:00.458 INFO kablam! | Sep 04 09:19:00.458 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 04 09:19:00.458 INFO kablam! = note: required by `extras::SubBufferPool` Sep 04 09:19:00.458 INFO kablam! Sep 04 09:19:00.460 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 04 09:19:00.460 INFO kablam! --> examples/async_menagerie.rs:137:5 Sep 04 09:19:00.460 INFO kablam! | Sep 04 09:19:00.460 INFO kablam! 137 | / pub fn map(&self, cmd_idx: usize, buf_pool: &SubBufferPool) -> FutureMemMap Sep 04 09:19:00.460 INFO kablam! 138 | | { Sep 04 09:19:00.460 INFO kablam! 139 | | let (buffer_id, flags, is_write) = match *self.cmd_graph.commands()[cmd_idx].details(){ Sep 04 09:19:00.460 INFO kablam! 140 | | CommandDetails::Write { target } => (target, MapFlags::new().write_invalidate_region(), true), Sep 04 09:19:00.460 INFO kablam! ... | Sep 04 09:19:00.460 INFO kablam! 166 | | future_data Sep 04 09:19:00.460 INFO kablam! 167 | | } Sep 04 09:19:00.460 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 04 09:19:00.461 INFO kablam! | Sep 04 09:19:00.461 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 04 09:19:00.462 INFO kablam! = note: required by `extras::SubBufferPool` Sep 04 09:19:00.462 INFO kablam! Sep 04 09:19:00.463 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 04 09:19:00.463 INFO kablam! --> examples/async_menagerie.rs:170:5 Sep 04 09:19:00.463 INFO kablam! | Sep 04 09:19:00.463 INFO kablam! 170 | / pub fn copy(&self, cmd_idx: usize, buf_pool: &SubBufferPool) { Sep 04 09:19:00.463 INFO kablam! 171 | | let (src_buf_id, tar_buf_id) = match *self.cmd_graph.commands()[cmd_idx].details(){ Sep 04 09:19:00.463 INFO kablam! 172 | | CommandDetails::Copy { source, target } => (source, target), Sep 04 09:19:00.463 INFO kablam! 173 | | _ => panic!("Task::copy: Not a copy command."), Sep 04 09:19:00.463 INFO kablam! ... | Sep 04 09:19:00.464 INFO kablam! 185 | | self.cmd_graph.set_cmd_event(cmd_idx, ev).unwrap(); Sep 04 09:19:00.464 INFO kablam! 186 | | } Sep 04 09:19:00.464 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 04 09:19:00.464 INFO kablam! | Sep 04 09:19:00.465 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 04 09:19:00.465 INFO kablam! = note: required by `extras::SubBufferPool` Sep 04 09:19:00.466 INFO kablam! Sep 04 09:19:00.475 INFO kablam! error: aborting due to 3 previous errors Sep 04 09:19:00.476 INFO kablam! Sep 04 09:19:00.476 INFO kablam! For more information about this error, try `rustc --explain E0277`. Sep 04 09:19:00.491 INFO kablam! error: Could not compile `ocl`. Sep 04 09:19:00.491 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 04 09:19:00.728 INFO kablam! error[E0425]: cannot find function `scrambled_vec` in module `ocl_extras` Sep 04 09:19:00.728 INFO kablam! --> examples/basics.rs:35:34 Sep 04 09:19:00.728 INFO kablam! | Sep 04 09:19:00.728 INFO kablam! 35 | let vec_source = ocl_extras::scrambled_vec((0.0, 20.0), ocl_pq.dims().to_len()); Sep 04 09:19:00.728 INFO kablam! | ^^^^^^^^^^^^^ not found in `ocl_extras` Sep 04 09:19:00.728 INFO kablam! Sep 04 09:19:00.891 INFO kablam! error[E0425]: cannot find function `scrambled_vec` in module `ocl_extras` Sep 04 09:19:00.891 INFO kablam! --> examples/event_callbacks.rs:105:32 Sep 04 09:19:00.891 INFO kablam! | Sep 04 09:19:00.891 INFO kablam! 105 | let seed_vec = ocl_extras::scrambled_vec((0u32, 500u32), dataset_len); Sep 04 09:19:00.891 INFO kablam! | ^^^^^^^^^^^^^ not found in `ocl_extras` Sep 04 09:19:00.891 INFO kablam! Sep 04 09:19:00.893 INFO kablam! error[E0277]: the size for values of type `[_]` cannot be known at compilation time Sep 04 09:19:00.893 INFO kablam! --> examples/basics.rs:35:9 Sep 04 09:19:00.893 INFO kablam! | Sep 04 09:19:00.893 INFO kablam! 35 | let vec_source = ocl_extras::scrambled_vec((0.0, 20.0), ocl_pq.dims().to_len()); Sep 04 09:19:00.893 INFO kablam! | ^^^^^^^^^^ doesn't have a size known at compile-time Sep 04 09:19:00.893 INFO kablam! | Sep 04 09:19:00.893 INFO kablam! = help: the trait `std::marker::Sized` is not implemented for `[_]` Sep 04 09:19:00.893 INFO kablam! = note: to learn more, visit Sep 04 09:19:00.893 INFO kablam! = note: all local variables must have a statically known size Sep 04 09:19:00.893 INFO kablam! = help: unsized locals are gated as an unstable feature Sep 04 09:19:00.893 INFO kablam! Sep 04 09:19:00.998 INFO kablam! error: aborting due to 2 previous errors Sep 04 09:19:00.998 INFO kablam! Sep 04 09:19:00.998 INFO kablam! Some errors occurred: E0277, E0425. Sep 04 09:19:00.999 INFO kablam! For more information about an error, try `rustc --explain E0277`. Sep 04 09:19:01.012 INFO kablam! error: Could not compile `ocl`. Sep 04 09:19:01.012 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 04 09:19:01.300 INFO kablam! error[E0277]: the size for values of type `[_]` cannot be known at compilation time Sep 04 09:19:01.300 INFO kablam! --> examples/event_callbacks.rs:105:9 Sep 04 09:19:01.300 INFO kablam! | Sep 04 09:19:01.300 INFO kablam! 105 | let seed_vec = ocl_extras::scrambled_vec((0u32, 500u32), dataset_len); Sep 04 09:19:01.300 INFO kablam! | ^^^^^^^^ doesn't have a size known at compile-time Sep 04 09:19:01.300 INFO kablam! | Sep 04 09:19:01.300 INFO kablam! = help: the trait `std::marker::Sized` is not implemented for `[_]` Sep 04 09:19:01.300 INFO kablam! = note: to learn more, visit Sep 04 09:19:01.300 INFO kablam! = note: all local variables must have a statically known size Sep 04 09:19:01.300 INFO kablam! = help: unsized locals are gated as an unstable feature Sep 04 09:19:01.301 INFO kablam! Sep 04 09:19:01.422 INFO kablam! error[E0599]: no method named `as_slice` found for type `[_]` in the current scope Sep 04 09:19:01.422 INFO kablam! --> examples/event_callbacks.rs:144:32 Sep 04 09:19:01.422 INFO kablam! | Sep 04 09:19:01.422 INFO kablam! 144 | seed_vec: seed_vec.as_slice() as *const [u32], Sep 04 09:19:01.422 INFO kablam! | ^^^^^^^^ Sep 04 09:19:01.422 INFO kablam! Sep 04 09:19:01.468 INFO kablam! error: aborting due to 3 previous errors Sep 04 09:19:01.468 INFO kablam! Sep 04 09:19:01.468 INFO kablam! Some errors occurred: E0277, E0425, E0599. Sep 04 09:19:01.468 INFO kablam! For more information about an error, try `rustc --explain E0277`. Sep 04 09:19:01.481 INFO kablam! error: Could not compile `ocl`. Sep 04 09:19:01.481 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 04 09:19:05.834 INFO kablam! error: build failed Sep 04 09:19:05.836 INFO kablam! su: No module specific data is present Sep 04 09:19:06.204 INFO running `"docker" "rm" "-f" "662854d5415daff4773b20e91afd40daaa9ba6dd7a1a8e58a455668d374b4935"` Sep 04 09:19:06.301 INFO blam! 662854d5415daff4773b20e91afd40daaa9ba6dd7a1a8e58a455668d374b4935