Sep 02 05:55:56.255 INFO checking ocl-0.19.0 against try#952c7dbfa2628309f557b367929ffc17af20b332 for pr-53851 Sep 02 05:55:56.255 INFO running: cargo +952c7dbfa2628309f557b367929ffc17af20b332-alt check --frozen --all --all-targets Sep 02 05:55:56.255 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-2/pr-53851/try#952c7dbfa2628309f557b367929ffc17af20b332:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53851/worker-2/try#952c7dbfa2628309f557b367929ffc17af20b332:/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 +952c7dbfa2628309f557b367929ffc17af20b332-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:55:56.438 INFO blam! 022a7109c565dd486483c481559f74463a8b5d5fa3e540ca006ad704c6bdaba5 Sep 02 05:55:56.440 INFO running `"docker" "start" "-a" "022a7109c565dd486483c481559f74463a8b5d5fa3e540ca006ad704c6bdaba5"` Sep 02 05:55:57.259 INFO kablam! Checking qutex v0.1.1 Sep 02 05:55:57.260 INFO kablam! Compiling ocl-core v0.4.1 Sep 02 05:55:57.260 INFO kablam! Compiling ocl-core v0.10.0 Sep 02 05:55:57.263 INFO kablam! Checking chrono v0.2.25 Sep 02 05:56:05.820 INFO kablam! Checking ocl v0.13.1 Sep 02 05:56:07.378 INFO kablam! Checking ocl v0.19.0 (file:///source) Sep 02 05:56:13.575 INFO kablam! Checking ocl-extras v0.1.0 Sep 02 05:56:19.114 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 02 05:56:19.114 INFO kablam! --> examples/async_menagerie.rs:119:5 Sep 02 05:56:19.114 INFO kablam! | Sep 02 05:56:19.114 INFO kablam! 119 | / pub fn fill(&self, pattern: T, cmd_idx: usize, buf_pool: &SubBufferPool) { Sep 02 05:56:19.114 INFO kablam! 120 | | let buffer_id = match *self.cmd_graph.commands()[cmd_idx].details() { Sep 02 05:56:19.114 INFO kablam! 121 | | CommandDetails::Fill { target } => target, Sep 02 05:56:19.114 INFO kablam! 122 | | _ => panic!("Task::fill: Not a fill command."), Sep 02 05:56:19.114 INFO kablam! ... | Sep 02 05:56:19.114 INFO kablam! 133 | | self.cmd_graph.set_cmd_event(cmd_idx, ev).unwrap(); Sep 02 05:56:19.114 INFO kablam! 134 | | } Sep 02 05:56:19.114 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 02 05:56:19.115 INFO kablam! | Sep 02 05:56:19.116 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 02 05:56:19.116 INFO kablam! = note: required by `extras::SubBufferPool` Sep 02 05:56:19.117 INFO kablam! Sep 02 05:56:19.118 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 02 05:56:19.118 INFO kablam! --> examples/async_menagerie.rs:137:5 Sep 02 05:56:19.118 INFO kablam! | Sep 02 05:56:19.118 INFO kablam! 137 | / pub fn map(&self, cmd_idx: usize, buf_pool: &SubBufferPool) -> FutureMemMap Sep 02 05:56:19.118 INFO kablam! 138 | | { Sep 02 05:56:19.118 INFO kablam! 139 | | let (buffer_id, flags, is_write) = match *self.cmd_graph.commands()[cmd_idx].details(){ Sep 02 05:56:19.118 INFO kablam! 140 | | CommandDetails::Write { target } => (target, MapFlags::new().write_invalidate_region(), true), Sep 02 05:56:19.119 INFO kablam! ... | Sep 02 05:56:19.119 INFO kablam! 166 | | future_data Sep 02 05:56:19.119 INFO kablam! 167 | | } Sep 02 05:56:19.119 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 02 05:56:19.119 INFO kablam! | Sep 02 05:56:19.120 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 02 05:56:19.120 INFO kablam! = note: required by `extras::SubBufferPool` Sep 02 05:56:19.121 INFO kablam! Sep 02 05:56:19.122 INFO kablam! error[E0277]: the trait bound `T: ocl_core::traits::OclPrm` is not satisfied Sep 02 05:56:19.122 INFO kablam! --> examples/async_menagerie.rs:170:5 Sep 02 05:56:19.122 INFO kablam! | Sep 02 05:56:19.122 INFO kablam! 170 | / pub fn copy(&self, cmd_idx: usize, buf_pool: &SubBufferPool) { Sep 02 05:56:19.122 INFO kablam! 171 | | let (src_buf_id, tar_buf_id) = match *self.cmd_graph.commands()[cmd_idx].details(){ Sep 02 05:56:19.122 INFO kablam! 172 | | CommandDetails::Copy { source, target } => (source, target), Sep 02 05:56:19.122 INFO kablam! 173 | | _ => panic!("Task::copy: Not a copy command."), Sep 02 05:56:19.122 INFO kablam! ... | Sep 02 05:56:19.122 INFO kablam! 185 | | self.cmd_graph.set_cmd_event(cmd_idx, ev).unwrap(); Sep 02 05:56:19.122 INFO kablam! 186 | | } Sep 02 05:56:19.123 INFO kablam! | |_____^ the trait `ocl_core::traits::OclPrm` is not implemented for `T` Sep 02 05:56:19.123 INFO kablam! | Sep 02 05:56:19.124 INFO kablam! = help: consider adding a `where T: ocl_core::traits::OclPrm` bound Sep 02 05:56:19.124 INFO kablam! = note: required by `extras::SubBufferPool` Sep 02 05:56:19.125 INFO kablam! Sep 02 05:56:19.133 INFO kablam! error: aborting due to 3 previous errors Sep 02 05:56:19.133 INFO kablam! Sep 02 05:56:19.134 INFO kablam! For more information about this error, try `rustc --explain E0277`. Sep 02 05:56:19.148 INFO kablam! error: Could not compile `ocl`. Sep 02 05:56:19.149 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 05:56:20.012 INFO kablam! error[E0425]: cannot find function `scrambled_vec` in module `ocl_extras` Sep 02 05:56:20.012 INFO kablam! --> examples/event_callbacks.rs:105:32 Sep 02 05:56:20.012 INFO kablam! | Sep 02 05:56:20.012 INFO kablam! 105 | let seed_vec = ocl_extras::scrambled_vec((0u32, 500u32), dataset_len); Sep 02 05:56:20.012 INFO kablam! | ^^^^^^^^^^^^^ not found in `ocl_extras` Sep 02 05:56:20.012 INFO kablam! Sep 02 05:56:20.599 INFO kablam! error[E0425]: cannot find function `scrambled_vec` in module `ocl_extras` Sep 02 05:56:20.599 INFO kablam! --> examples/buffer_sink.rs:58:21 Sep 02 05:56:20.600 INFO kablam! | Sep 02 05:56:20.600 INFO kablam! 58 | ocl_extras::scrambled_vec((0, 20), ocl_pq.dims().to_len()) Sep 02 05:56:20.600 INFO kablam! | ^^^^^^^^^^^^^ not found in `ocl_extras` Sep 02 05:56:20.600 INFO kablam! Sep 02 05:56:20.766 INFO kablam! error[E0277]: the size for values of type `[_]` cannot be known at compilation time Sep 02 05:56:20.766 INFO kablam! --> examples/event_callbacks.rs:105:9 Sep 02 05:56:20.766 INFO kablam! | Sep 02 05:56:20.766 INFO kablam! 105 | let seed_vec = ocl_extras::scrambled_vec((0u32, 500u32), dataset_len); Sep 02 05:56:20.766 INFO kablam! | ^^^^^^^^ doesn't have a size known at compile-time Sep 02 05:56:20.766 INFO kablam! | Sep 02 05:56:20.766 INFO kablam! = help: the trait `std::marker::Sized` is not implemented for `[_]` Sep 02 05:56:20.766 INFO kablam! = note: to learn more, visit Sep 02 05:56:20.766 INFO kablam! = note: all local variables must have a statically known size Sep 02 05:56:20.766 INFO kablam! = help: unsized locals are gated as an unstable feature Sep 02 05:56:20.767 INFO kablam! Sep 02 05:56:21.050 INFO kablam! error[E0599]: no method named `as_slice` found for type `[_]` in the current scope Sep 02 05:56:21.050 INFO kablam! --> examples/event_callbacks.rs:144:32 Sep 02 05:56:21.050 INFO kablam! | Sep 02 05:56:21.050 INFO kablam! 144 | seed_vec: seed_vec.as_slice() as *const [u32], Sep 02 05:56:21.050 INFO kablam! | ^^^^^^^^ Sep 02 05:56:21.050 INFO kablam! Sep 02 05:56:21.208 INFO kablam! error: aborting due to 3 previous errors Sep 02 05:56:21.209 INFO kablam! Sep 02 05:56:21.209 INFO kablam! Some errors occurred: E0277, E0425, E0599. Sep 02 05:56:21.210 INFO kablam! For more information about an error, try `rustc --explain E0277`. Sep 02 05:56:21.258 INFO kablam! error: Could not compile `ocl`. Sep 02 05:56:21.259 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 05:56:21.270 INFO kablam! error[E0425]: cannot find function `scrambled_vec` in module `ocl_extras` Sep 02 05:56:21.270 INFO kablam! --> examples/timed.rs:50:32 Sep 02 05:56:21.271 INFO kablam! | Sep 02 05:56:21.271 INFO kablam! 50 | let vec_init = ocl_extras::scrambled_vec(INIT_VAL_RANGE, ocl_pq.dims().to_len()); Sep 02 05:56:21.271 INFO kablam! | ^^^^^^^^^^^^^ not found in `ocl_extras` Sep 02 05:56:21.271 INFO kablam! Sep 02 05:56:21.277 INFO kablam! error[E0277]: the size for values of type `[i32]` cannot be known at compilation time Sep 02 05:56:21.277 INFO kablam! --> examples/buffer_sink.rs:71:13 Sep 02 05:56:21.277 INFO kablam! | Sep 02 05:56:21.277 INFO kablam! 71 | let source_data = source_datas[i].clone(); Sep 02 05:56:21.277 INFO kablam! | ^^^^^^^^^^^ doesn't have a size known at compile-time Sep 02 05:56:21.277 INFO kablam! | Sep 02 05:56:21.277 INFO kablam! = help: the trait `std::marker::Sized` is not implemented for `[i32]` Sep 02 05:56:21.277 INFO kablam! = note: to learn more, visit Sep 02 05:56:21.277 INFO kablam! = note: all local variables must have a statically known size Sep 02 05:56:21.277 INFO kablam! = help: unsized locals are gated as an unstable feature Sep 02 05:56:21.277 INFO kablam! Sep 02 05:56:21.318 INFO kablam! error: aborting due to 2 previous errors Sep 02 05:56:21.318 INFO kablam! Sep 02 05:56:21.318 INFO kablam! Some errors occurred: E0277, E0425. Sep 02 05:56:21.318 INFO kablam! For more information about an error, try `rustc --explain E0277`. Sep 02 05:56:21.338 INFO kablam! error: Could not compile `ocl`. Sep 02 05:56:21.339 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 05:56:21.572 INFO kablam! error[E0277]: the size for values of type `[_]` cannot be known at compilation time Sep 02 05:56:21.572 INFO kablam! --> examples/timed.rs:50:9 Sep 02 05:56:21.573 INFO kablam! | Sep 02 05:56:21.573 INFO kablam! 50 | let vec_init = ocl_extras::scrambled_vec(INIT_VAL_RANGE, ocl_pq.dims().to_len()); Sep 02 05:56:21.573 INFO kablam! | ^^^^^^^^ doesn't have a size known at compile-time Sep 02 05:56:21.573 INFO kablam! | Sep 02 05:56:21.573 INFO kablam! = help: the trait `std::marker::Sized` is not implemented for `[_]` Sep 02 05:56:21.573 INFO kablam! = note: to learn more, visit Sep 02 05:56:21.573 INFO kablam! = note: all local variables must have a statically known size Sep 02 05:56:21.573 INFO kablam! = help: unsized locals are gated as an unstable feature Sep 02 05:56:21.573 INFO kablam! Sep 02 05:56:22.196 INFO kablam! error[E0308]: mismatched types Sep 02 05:56:22.196 INFO kablam! --> examples/timed.rs:123:20 Sep 02 05:56:22.196 INFO kablam! | Sep 02 05:56:22.196 INFO kablam! 123 | verify_results(&vec_init, &vec_result, KERNEL_RUN_ITERS)?; Sep 02 05:56:22.196 INFO kablam! | ^^^^^^^^^ expected struct `std::vec::Vec`, found slice Sep 02 05:56:22.196 INFO kablam! | Sep 02 05:56:22.196 INFO kablam! = note: expected type `&std::vec::Vec` Sep 02 05:56:22.196 INFO kablam! found type `&[_]` Sep 02 05:56:22.196 INFO kablam! Sep 02 05:56:22.435 INFO kablam! error[E0308]: mismatched types Sep 02 05:56:22.435 INFO kablam! --> examples/timed.rs:143:20 Sep 02 05:56:22.435 INFO kablam! | Sep 02 05:56:22.435 INFO kablam! 143 | verify_results(&vec_init, &vec_result, KERNEL_AND_BUFFER_ITERS + KERNEL_RUN_ITERS)?; Sep 02 05:56:22.435 INFO kablam! | ^^^^^^^^^ expected struct `std::vec::Vec`, found slice Sep 02 05:56:22.436 INFO kablam! | Sep 02 05:56:22.436 INFO kablam! = note: expected type `&std::vec::Vec` Sep 02 05:56:22.436 INFO kablam! found type `&[_]` Sep 02 05:56:22.437 INFO kablam! Sep 02 05:56:22.658 INFO kablam! error[E0308]: mismatched types Sep 02 05:56:22.658 INFO kablam! --> examples/timed.rs:174:20 Sep 02 05:56:22.658 INFO kablam! | Sep 02 05:56:22.658 INFO kablam! 174 | verify_results(&vec_init, &vec_result, Sep 02 05:56:22.659 INFO kablam! | ^^^^^^^^^ expected struct `std::vec::Vec`, found slice Sep 02 05:56:22.659 INFO kablam! | Sep 02 05:56:22.660 INFO kablam! = note: expected type `&std::vec::Vec` Sep 02 05:56:22.660 INFO kablam! found type `&[_]` Sep 02 05:56:22.660 INFO kablam! Sep 02 05:56:22.876 INFO kablam! error[E0308]: mismatched types Sep 02 05:56:22.877 INFO kablam! --> examples/timed.rs:200:20 Sep 02 05:56:22.877 INFO kablam! | Sep 02 05:56:22.877 INFO kablam! 200 | verify_results(&vec_init, &vec_result, Sep 02 05:56:22.877 INFO kablam! | ^^^^^^^^^ expected struct `std::vec::Vec`, found slice Sep 02 05:56:22.877 INFO kablam! | Sep 02 05:56:22.877 INFO kablam! = note: expected type `&std::vec::Vec` Sep 02 05:56:22.877 INFO kablam! found type `&[_]` Sep 02 05:56:22.877 INFO kablam! Sep 02 05:56:22.941 INFO kablam! error: aborting due to 6 previous errors Sep 02 05:56:22.941 INFO kablam! Sep 02 05:56:22.942 INFO kablam! Some errors occurred: E0277, E0308, E0425. Sep 02 05:56:22.942 INFO kablam! For more information about an error, try `rustc --explain E0277`. Sep 02 05:56:22.955 INFO kablam! error: Could not compile `ocl`. Sep 02 05:56:22.956 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 05:56:28.795 INFO kablam! error: build failed Sep 02 05:56:28.797 INFO kablam! su: No module specific data is present Sep 02 05:56:29.208 INFO running `"docker" "rm" "-f" "022a7109c565dd486483c481559f74463a8b5d5fa3e540ca006ad704c6bdaba5"` Sep 02 05:56:29.353 INFO blam! 022a7109c565dd486483c481559f74463a8b5d5fa3e540ca006ad704c6bdaba5