diff --git a/components/script/dom/gpuqueue.rs b/components/script/dom/gpuqueue.rs index 3acecce9c3e..bcc60eb5dd2 100644 --- a/components/script/dom/gpuqueue.rs +++ b/components/script/dom/gpuqueue.rs @@ -2,19 +2,22 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +use std::rc::Rc; + use dom_struct::dom_struct; use ipc_channel::ipc::IpcSharedMemory; use webgpu::identity::WebGPUOpResult; -use webgpu::{wgt, WebGPU, WebGPUQueue, WebGPURequest}; +use webgpu::{wgt, WebGPU, WebGPUQueue, WebGPURequest, WebGPUResponse}; use super::bindings::codegen::Bindings::WebGPUBinding::{GPUImageCopyTexture, GPUImageDataLayout}; +use super::gpu::{response_async, AsyncWGPUListener}; use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::WebGPUBinding::{ GPUExtent3D, GPUQueueMethods, GPUSize64, }; use crate::dom::bindings::codegen::UnionTypes::ArrayBufferViewOrArrayBuffer as BufferSource; use crate::dom::bindings::error::{Error, Fallible}; -use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; +use crate::dom::bindings::reflector::{reflect_dom_object, DomObject, Reflector}; use crate::dom::bindings::root::{Dom, DomRoot}; use crate::dom::bindings::str::USVString; use crate::dom::globalscope::GlobalScope; @@ -25,6 +28,7 @@ use crate::dom::gpuconvert::{ convert_texture_size_to_wgt, }; use crate::dom::gpudevice::GPUDevice; +use crate::dom::promise::Promise; #[dom_struct] pub struct GPUQueue { @@ -191,4 +195,39 @@ impl GPUQueueMethods for GPUQueue { Ok(()) } + + /// + fn OnSubmittedWorkDone(&self) -> Rc { + let global = self.global(); + let promise = Promise::new(&global); + let sender = response_async(&promise, self); + if let Err(e) = self.channel.0.send(( + self.device.borrow().as_ref().unwrap().use_current_scope(), + WebGPURequest::QueueOnSubmittedWorkDone { + sender, + queue_id: self.queue.0, + }, + )) { + warn!("QueueOnSubmittedWorkDone failed with {e}") + } + promise + } +} + +impl AsyncWGPUListener for GPUQueue { + fn handle_response( + &self, + response: Option>, + promise: &Rc, + ) { + match response { + Some(Ok(WebGPUResponse::SubmittedWorkDone)) => { + promise.resolve_native(&()); + }, + _ => { + warn!("GPUQueue received wrong WebGPUResponse"); + promise.reject_error(Error::Operation); + }, + } + } } diff --git a/components/script/dom/webidls/WebGPU.webidl b/components/script/dom/webidls/WebGPU.webidl index 2bf60db8b27..d80ce7e2b27 100644 --- a/components/script/dom/webidls/WebGPU.webidl +++ b/components/script/dom/webidls/WebGPU.webidl @@ -991,8 +991,7 @@ dictionary GPURenderBundleEncoderDescriptor : GPURenderPassLayout { interface GPUQueue { undefined submit(sequence buffers); - //TODO: - //Promise onSubmittedWorkDone(); + Promise onSubmittedWorkDone(); [Throws] undefined writeBuffer( diff --git a/components/webgpu/lib.rs b/components/webgpu/lib.rs index 14210d1e683..c1c6aafa1df 100644 --- a/components/webgpu/lib.rs +++ b/components/webgpu/lib.rs @@ -3,6 +3,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use log::{error, warn}; +use wgpu::device::queue::SubmittedWorkDoneClosure; use wgpu::gfx_select; pub use {wgpu_core as wgpu, wgpu_types as wgt}; @@ -69,6 +70,7 @@ pub enum WebGPUResponse { descriptor: wgt::DeviceDescriptor>, }, BufferMapAsync(IpcSharedMemory), + SubmittedWorkDone, } pub type WebGPUResponseResult = Result; @@ -257,6 +259,10 @@ pub enum WebGPURequest { size: wgt::Extent3d, data: IpcSharedMemory, }, + QueueOnSubmittedWorkDone { + sender: IpcSender>, + queue_id: id::QueueId, + }, } struct BufferMapInfo<'a, T> { @@ -1249,6 +1255,18 @@ impl<'a> WGPU<'a> { )); self.send_result(queue_id, scope_id, result); }, + WebGPURequest::QueueOnSubmittedWorkDone { sender, queue_id } => { + let global = &self.global; + + let callback = SubmittedWorkDoneClosure::from_rust(Box::from(move || { + if let Err(e) = sender.send(Some(Ok(WebGPUResponse::SubmittedWorkDone))) + { + warn!("Could not send SubmittedWorkDone Response ({})", e); + } + })); + let result = gfx_select!(queue_id => global.queue_on_submitted_work_done(queue_id, callback)); + self.send_result(queue_id, scope_id, result); + }, } } } diff --git a/tests/wpt/webgpu/meta/webgpu/cts.https.html.ini b/tests/wpt/webgpu/meta/webgpu/cts.https.html.ini index d4e77925bde..4afbdc81000 100644 --- a/tests/wpt/webgpu/meta/webgpu/cts.https.html.ini +++ b/tests/wpt/webgpu/meta/webgpu/cts.https.html.ini @@ -2373,8 +2373,6 @@ [cts.https.html?q=webgpu:api,operation,memory_sync,buffer,multiple_buffers:rw:*] [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -2389,12 +2387,8 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -2409,8 +2403,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -2561,8 +2553,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -2577,16 +2567,10 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -2601,12 +2585,8 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -2795,8 +2775,6 @@ [cts.https.html?q=webgpu:api,operation,memory_sync,buffer,multiple_buffers:wr:*] [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -2811,12 +2789,8 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -2831,8 +2805,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -2983,8 +2955,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -2999,16 +2969,10 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -3023,12 +2987,8 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -3217,8 +3177,6 @@ [cts.https.html?q=webgpu:api,operation,memory_sync,buffer,multiple_buffers:ww:*] [:boundary="command-buffer";writeOps=["b2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["b2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -3233,8 +3191,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["b2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["storage","b2b-copy"\];contexts=["compute-pass-encoder","command-encoder"\]] expected: @@ -3265,8 +3221,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["t2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["t2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -3281,8 +3235,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["t2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="dispatch";writeOps=["storage","storage"\];contexts=["compute-pass-encoder","compute-pass-encoder"\]] expected: @@ -3293,8 +3245,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -3309,12 +3259,8 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","write-buffer"\];contexts=["command-encoder","queue"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["storage","b2b-copy"\];contexts=["compute-pass-encoder","command-encoder"\]] expected: @@ -3357,8 +3303,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -3373,16 +3317,10 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","write-buffer"\];contexts=["command-encoder","queue"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","b2b-copy"\];contexts=["queue","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","storage"\];contexts=["queue","compute-pass-encoder"\]] expected: @@ -3397,18 +3335,12 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","t2b-copy"\];contexts=["queue","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","write-buffer"\];contexts=["queue","queue"\]] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,memory_sync,buffer,single_buffer:rw:*] [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -3423,12 +3355,8 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -3443,8 +3371,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -3595,32 +3521,20 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="render-bundle-encoder"] expected: if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="render-pass-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -3635,12 +3549,8 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -3663,8 +3573,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="constant-uniform";readContext="render-pass-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="input-index";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -3799,8 +3707,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="storage-read";readContext="compute-pass-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="storage-read";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -3823,8 +3729,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="storage-read";readContext="render-pass-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,memory_sync,buffer,single_buffer:two_dispatches_in_the_same_compute_pass:*] @@ -3847,8 +3751,6 @@ [cts.https.html?q=webgpu:api,operation,memory_sync,buffer,single_buffer:wr:*] [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -3863,12 +3765,8 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -3883,8 +3781,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -4035,32 +3931,20 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="render-bundle-encoder"] expected: if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="storage";writeContext="render-pass-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2b-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="b2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="storage";writeContext="compute-pass-encoder"] expected: @@ -4075,12 +3959,8 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="t2b-copy";writeContext="command-encoder"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="b2t-copy";readContext="command-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="constant-uniform";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -4103,8 +3983,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="constant-uniform";readContext="render-pass-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="input-index";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -4239,8 +4117,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="storage-read";readContext="compute-pass-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="storage-read";readContext="render-bundle-encoder";writeOp="b2b-copy";writeContext="command-encoder"] expected: @@ -4263,14 +4139,10 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";readOp="storage-read";readContext="render-pass-encoder";writeOp="write-buffer";writeContext="queue"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,memory_sync,buffer,single_buffer:ww:*] [:boundary="command-buffer";writeOps=["b2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["b2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -4285,8 +4157,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["b2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["storage","b2b-copy"\];contexts=["compute-pass-encoder","command-encoder"\]] expected: @@ -4317,8 +4187,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["t2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["t2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -4333,8 +4201,6 @@ if os == "linux" and not debug: FAIL [:boundary="command-buffer";writeOps=["t2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="dispatch";writeOps=["storage","storage"\];contexts=["compute-pass-encoder","compute-pass-encoder"\]] expected: @@ -4345,8 +4211,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -4361,12 +4225,8 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["b2b-copy","write-buffer"\];contexts=["command-encoder","queue"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["storage","b2b-copy"\];contexts=["compute-pass-encoder","command-encoder"\]] expected: @@ -4409,8 +4269,6 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","b2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","storage"\];contexts=["command-encoder","compute-pass-encoder"\]] expected: @@ -4425,36 +4283,22 @@ if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","t2b-copy"\];contexts=["command-encoder","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["t2b-copy","write-buffer"\];contexts=["command-encoder","queue"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","b2b-copy"\];contexts=["queue","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","storage"\];contexts=["queue","compute-pass-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","storage"\];contexts=["queue","render-bundle-encoder"\]] expected: if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","storage"\];contexts=["queue","render-pass-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","t2b-copy"\];contexts=["queue","command-encoder"\]] - expected: - if os == "linux" and not debug: FAIL [:boundary="queue-op";writeOps=["write-buffer","write-buffer"\];contexts=["queue","queue"\]] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,memory_sync,texture,readonly_depth_stencil:sampling_while_testing:*] @@ -4975,32 +4819,22 @@ [cts.https.html?q=webgpu:api,operation,onSubmittedWorkDone:many,parallel:*] [:] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,onSubmittedWorkDone:many,parallel_order:*] [:] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,onSubmittedWorkDone:many,serial:*] [:] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,onSubmittedWorkDone:with_work:*] [:] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,onSubmittedWorkDone:without_work:*] [:] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:api,operation,pipeline,default_layout:getBindGroupLayout_js_object:*] @@ -15451,11 +15285,11 @@ [:limitTest="overMaximum";testValueName="atLimit";async=false;pointList=false;frontFacing=false;sampleIndex=false;sampleMaskIn=false;sampleMaskOut=false] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:limitTest="overMaximum";testValueName="atLimit";async=false;pointList=false;frontFacing=false;sampleIndex=false;sampleMaskIn=false;sampleMaskOut=true] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: TIMEOUT [:limitTest="overMaximum";testValueName="atLimit";async=false;pointList=false;frontFacing=false;sampleIndex=false;sampleMaskIn=true;sampleMaskOut=false] expected: @@ -19010,7 +18844,34 @@ [cts.https.html?q=webgpu:api,validation,capability_checks,limits,maxTextureArrayLayers:createTexture,at_over:*] expected: - if os == "linux" and not debug: CRASH + if os == "linux" and not debug: [TIMEOUT, CRASH] + [:limitTest="atDefault";testValueName="atLimit"] + + [:limitTest="atDefault";testValueName="overLimit"] + + [:limitTest="atMaximum";testValueName="atLimit"] + + [:limitTest="atMaximum";testValueName="overLimit"] + + [:limitTest="betweenDefaultAndMaximum";testValueName="atLimit"] + + [:limitTest="betweenDefaultAndMaximum";testValueName="overLimit"] + + [:limitTest="overMaximum";testValueName="atLimit"] + expected: + if os == "linux" and not debug: [PASS, FAIL] + + [:limitTest="overMaximum";testValueName="overLimit"] + expected: + if os == "linux" and not debug: [PASS, TIMEOUT] + + [:limitTest="underDefault";testValueName="atLimit"] + expected: + if os == "linux" and not debug: [PASS, FAIL] + + [:limitTest="underDefault";testValueName="overLimit"] + expected: + if os == "linux" and not debug: [PASS, FAIL] [cts.https.html?q=webgpu:api,validation,capability_checks,limits,maxTextureDimension1D:createTexture,at_over:*] @@ -68793,8 +68654,6 @@ [cts.https.html?q=webgpu:examples:gpu,async:*] [:] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:examples:gpu,buffers:*] @@ -68932,27 +68791,23 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,af_addition:scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_addition:scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,binary,af_addition:vector:*] @@ -68970,19 +68825,17 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,af_addition:vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_comparison:equals:*] @@ -69142,107 +68995,99 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,af_matrix_addition:matrix:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_matrix_subtraction:matrix:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_multiplication:scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_multiplication:scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_multiplication:vector:*] @@ -69260,19 +69105,17 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,af_multiplication:vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_remainder:scalar:*] @@ -69324,27 +69167,23 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,af_subtraction:scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_subtraction:scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,af_subtraction:vector:*] @@ -69362,811 +69201,773 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,af_subtraction:vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise:bitwise_and:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise:bitwise_and_compound:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise:bitwise_exclusive_or:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise:bitwise_exclusive_or_compound:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise:bitwise_or:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise:bitwise_or_compound:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise_shift:shift_left_concrete:*] @@ -70176,8 +69977,6 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise_shift:shift_left_concrete_compound:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: if os == "linux" and not debug: FAIL @@ -70195,380 +69994,364 @@ if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise_shift:shift_right_concrete:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bitwise_shift:shift_right_concrete_compound:*] - expected: - if os == "linux" and not debug: ERROR [:type="i32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:type="i32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="i32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:type="u32";inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bool_logical:and:*] @@ -70589,8 +70372,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -70605,8 +70386,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -70621,8 +70400,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -70655,8 +70432,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -70671,8 +70446,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -70687,8 +70460,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -70709,16 +70480,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,bool_logical:equals:*] @@ -70739,8 +70504,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -70755,8 +70518,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -70771,8 +70532,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -70805,8 +70564,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -70821,8 +70578,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -70837,8 +70592,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -70871,8 +70624,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -70887,8 +70638,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -70903,8 +70652,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -70937,8 +70684,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -70953,8 +70698,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -70969,8 +70712,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -70991,16 +70732,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f16_addition:scalar:*] @@ -72932,143 +72667,119 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_addition:scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_addition:scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_addition:scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_addition:vector:*] @@ -73085,8 +72796,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: @@ -73097,8 +72806,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: @@ -73109,8 +72816,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: @@ -73122,107 +72827,97 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_addition:vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";dim=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";dim=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";dim=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_addition:vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_comparison:equals:*] @@ -73243,8 +72938,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -73259,8 +72952,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -73275,8 +72966,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -73309,8 +72998,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -73325,8 +73012,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -73341,8 +73026,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -73375,8 +73058,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -73391,8 +73072,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -73407,8 +73086,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -73441,8 +73118,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -73457,8 +73132,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -73473,8 +73146,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -73507,8 +73178,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -73523,8 +73192,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -73539,8 +73206,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -73573,8 +73238,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -73589,8 +73252,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -73605,8 +73266,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -73627,16 +73286,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_division:scalar_compound:*] @@ -73657,8 +73310,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -73673,8 +73324,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -73689,8 +73338,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -73720,7 +73367,7 @@ [:inputSource="storage_r";dim=2] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_r";dim=3] expected: @@ -73732,7 +73379,7 @@ [:inputSource="storage_rw";dim=2] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw";dim=3] expected: @@ -73744,7 +73391,7 @@ [:inputSource="uniform";dim=2] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="uniform";dim=3] expected: @@ -73769,8 +73416,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: @@ -73781,8 +73426,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: @@ -73793,8 +73436,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: @@ -73819,8 +73460,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=3] expected: @@ -73831,8 +73470,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=3] expected: @@ -73843,8 +73480,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=3] expected: @@ -73869,8 +73504,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=3] expected: @@ -73881,8 +73514,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=3] expected: @@ -73893,8 +73524,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=3] expected: @@ -73906,411 +73535,371 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_addition:matrix:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_addition:matrix_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_matrix_multiplication:matrix_matrix:*] expected: - if os == "linux" and not debug: ERROR + if os == "linux" and not debug: [OK, TIMEOUT] [:inputSource="const";common_dim=2;x_rows=2;y_cols=2] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=3;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=2;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=3;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=2;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=3;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=2;x_rows=2;y_cols=2] expected: @@ -74322,11 +73911,11 @@ [:inputSource="storage_r";common_dim=2;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=2;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=2;x_rows=3;y_cols=3] expected: @@ -74334,19 +73923,19 @@ [:inputSource="storage_r";common_dim=2;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=2;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=2;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=2;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=3;x_rows=2;y_cols=2] expected: @@ -74358,11 +73947,11 @@ [:inputSource="storage_r";common_dim=3;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=3;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=3;x_rows=3;y_cols=3] expected: @@ -74370,55 +73959,55 @@ [:inputSource="storage_r";common_dim=3;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=3;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=3;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=3;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=2;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=3;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=2;x_rows=2;y_cols=2] expected: @@ -74430,11 +74019,11 @@ [:inputSource="storage_rw";common_dim=2;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=2;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=2;x_rows=3;y_cols=3] expected: @@ -74442,19 +74031,19 @@ [:inputSource="storage_rw";common_dim=2;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=2;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=2;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=2;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=3;x_rows=2;y_cols=2] expected: @@ -74466,11 +74055,11 @@ [:inputSource="storage_rw";common_dim=3;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=3;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=3;x_rows=3;y_cols=3] expected: @@ -74478,55 +74067,55 @@ [:inputSource="storage_rw";common_dim=3;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=3;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=3;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=3;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=2;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=3;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=2;y_cols=2] expected: @@ -74534,15 +74123,15 @@ [:inputSource="uniform";common_dim=2;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=3;y_cols=3] expected: @@ -74550,19 +74139,19 @@ [:inputSource="uniform";common_dim=2;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=2;y_cols=2] expected: @@ -74570,15 +74159,15 @@ [:inputSource="uniform";common_dim=3;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=3;y_cols=3] expected: @@ -74586,95 +74175,93 @@ [:inputSource="uniform";common_dim=3;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=2;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=2;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=2;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=3;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=3;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=3;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=4;y_cols=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=4;y_cols=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=4;y_cols=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_matrix_multiplication:matrix_matrix_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";common_dim=2;x_rows=2] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=2;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=3;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";common_dim=4;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=2;x_rows=2] expected: @@ -74686,7 +74273,7 @@ [:inputSource="storage_r";common_dim=2;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=3;x_rows=2] expected: @@ -74698,19 +74285,19 @@ [:inputSource="storage_r";common_dim=3;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";common_dim=4;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=2;x_rows=2] expected: @@ -74722,7 +74309,7 @@ [:inputSource="storage_rw";common_dim=2;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=3;x_rows=2] expected: @@ -74734,19 +74321,19 @@ [:inputSource="storage_rw";common_dim=3;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";common_dim=4;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=2] expected: @@ -74754,15 +74341,15 @@ [:inputSource="uniform";common_dim=2;x_rows=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=2;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=3;x_rows=3] expected: @@ -74770,1247 +74357,1105 @@ [:inputSource="uniform";common_dim=3;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";common_dim=4;x_rows=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_scalar_multiplication:matrix_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_scalar_multiplication:matrix_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_scalar_multiplication:scalar_matrix:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_subtraction:matrix:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_subtraction:matrix_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_vector_multiplication:matrix_vector:*] - expected: - if os == "linux" and not debug: [TIMEOUT, ERROR] [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_vector_multiplication:vector_matrix:*] - expected: - if os == "linux" and not debug: [TIMEOUT, ERROR] [:inputSource="const";cols=2;rows=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";cols=2;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";cols=2;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=2;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="uniform";cols=2;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=2;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=3;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=3;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=3;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=4;rows=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=4;rows=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";cols=4;rows=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_matrix_vector_multiplication:vector_matrix_compound:*] - expected: - if os == "linux" and not debug: [TIMEOUT, ERROR] [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_multiplication:scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_multiplication:scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_multiplication:scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_multiplication:vector:*] @@ -76027,8 +75472,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: @@ -76039,8 +75482,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: @@ -76051,8 +75492,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: @@ -76064,107 +75503,91 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_multiplication:vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_multiplication:vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_remainder:scalar:*] @@ -76173,16 +75596,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_remainder:scalar_compound:*] @@ -76203,8 +75620,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -76219,8 +75634,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -76235,8 +75648,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -76265,8 +75676,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=3] expected: @@ -76277,8 +75686,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=3] expected: @@ -76289,8 +75696,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=3] expected: @@ -76315,8 +75720,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: @@ -76327,8 +75730,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: @@ -76339,8 +75740,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: @@ -76365,8 +75764,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=3] expected: @@ -76377,8 +75774,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=3] expected: @@ -76389,8 +75784,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=3] expected: @@ -76415,8 +75808,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=3] expected: @@ -76427,8 +75818,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=3] expected: @@ -76439,8 +75828,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=3] expected: @@ -76452,143 +75839,119 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_subtraction:scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_subtraction:scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_subtraction:scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_subtraction:vector:*] @@ -76605,8 +75968,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: @@ -76617,8 +75978,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: @@ -76629,8 +75988,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: @@ -76642,107 +75999,91 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_subtraction:vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,f32_subtraction:vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";dim=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform";dim=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:addition:*] @@ -76763,8 +76104,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -76779,8 +76118,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -76829,8 +76166,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -76845,8 +76180,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -76878,159 +76211,141 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:addition_scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_rhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:addition_vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:addition_vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:division:*] @@ -77166,159 +76481,153 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:division_scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_rhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:division_vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:division_vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:multiplication:*] @@ -77340,7 +76649,7 @@ [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_r";vectorize=2] expected: @@ -77356,7 +76665,7 @@ [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw";vectorize=2] expected: @@ -77405,8 +76714,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -77421,8 +76728,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -77454,71 +76759,63 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:multiplication_scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_rhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:multiplication_vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] expected: @@ -77526,11 +76823,11 @@ [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] expected: @@ -77538,75 +76835,69 @@ [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:multiplication_vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:remainder:*] @@ -77742,159 +77033,153 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:remainder_scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_rhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:remainder_vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:remainder_vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:subtraction:*] @@ -77915,8 +77200,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -77931,8 +77214,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -77982,7 +77263,7 @@ [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_r";vectorize=2] expected: @@ -77998,7 +77279,7 @@ [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw";vectorize=2] expected: @@ -78030,71 +77311,67 @@ [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:subtraction_scalar_vector:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_rhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize_rhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize_rhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize_rhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:subtraction_vector_scalar:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: [PASS, FAIL, TIMEOUT] [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="storage_r";vectorize_lhs=2] expected: @@ -78102,11 +77379,11 @@ [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="storage_rw";vectorize_lhs=2] expected: @@ -78114,75 +77391,69 @@ [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: [PASS, FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_arithmetic:subtraction_vector_scalar_compound:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize_lhs=2] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize_lhs=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,binary,i32_comparison:equals:*] @@ -78203,8 +77474,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78219,8 +77488,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78235,8 +77502,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78269,8 +77534,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78285,8 +77548,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78301,8 +77562,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78335,8 +77594,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78351,8 +77608,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78367,8 +77622,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78401,8 +77654,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78417,8 +77668,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78433,8 +77682,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78467,8 +77714,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78483,8 +77728,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78499,8 +77742,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78533,8 +77774,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78549,8 +77788,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78565,8 +77802,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78599,8 +77834,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78615,8 +77848,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78631,8 +77862,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78665,8 +77894,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -78681,8 +77908,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -78697,8 +77922,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -78727,8 +77950,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=3] expected: @@ -78739,8 +77960,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=3] expected: @@ -78777,8 +77996,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: @@ -78789,8 +78006,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: @@ -78827,8 +78042,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: @@ -78839,8 +78052,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: @@ -79163,8 +78374,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -79179,8 +78388,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -79195,8 +78402,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -79229,8 +78434,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -79245,8 +78448,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -79261,8 +78462,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -79291,8 +78490,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=3] expected: @@ -79303,8 +78500,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=3] expected: @@ -79341,8 +78536,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: @@ -79353,8 +78546,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: @@ -79391,8 +78582,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: @@ -79403,8 +78592,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: @@ -79727,8 +78914,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -79743,8 +78928,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -79759,8 +78942,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -79793,8 +78974,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -79809,8 +78988,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -79825,8 +79002,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -79855,8 +79030,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_rhs=3] expected: @@ -79867,8 +79040,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_rhs=3] expected: @@ -79905,8 +79076,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: @@ -79917,8 +79086,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: @@ -79955,8 +79122,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize_lhs=3] expected: @@ -79967,8 +79132,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize_lhs=3] expected: @@ -80009,8 +79172,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80025,8 +79186,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80041,8 +79200,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -80075,8 +79232,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80091,8 +79246,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80107,8 +79260,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -80141,8 +79292,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80157,8 +79306,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80173,8 +79320,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -80273,8 +79418,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80289,8 +79432,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80305,8 +79446,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -80340,7 +79479,7 @@ [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_r";vectorize=2] expected: @@ -80356,7 +79495,7 @@ [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw";vectorize=2] expected: @@ -80372,7 +79511,7 @@ [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="uniform";vectorize=2] expected: @@ -80491,8 +79630,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80507,8 +79644,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80523,8 +79658,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -80557,8 +79690,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80573,8 +79704,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80589,8 +79718,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -80623,8 +79750,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80639,8 +79764,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80655,8 +79778,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -80757,8 +79878,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80773,8 +79892,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80891,8 +80008,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -80907,8 +80022,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -80957,8 +80070,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";overload="vec2"] expected: @@ -80973,8 +80084,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";overload="vec2"] expected: @@ -80989,8 +80098,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";overload="vec2"] expected: @@ -81023,8 +80130,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";overload="vec2"] expected: @@ -81039,8 +80144,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";overload="vec2"] expected: @@ -81055,8 +80158,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";overload="vec2"] expected: @@ -82133,8 +81234,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -82149,8 +81248,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -82267,8 +81364,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -82283,8 +81378,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -82299,8 +81392,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -82384,8 +81475,6 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,atan2:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: if os == "linux" and not debug: FAIL @@ -82403,52 +81492,48 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,atan:abstract_float:*] @@ -82537,8 +81622,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -82553,8 +81636,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -82671,8 +81752,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -82687,8 +81766,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -88735,8 +87812,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -88767,8 +87842,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -88865,8 +87938,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -88897,8 +87968,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -88995,8 +88064,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -89027,8 +88094,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -89143,8 +88208,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -89175,8 +88238,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -89207,8 +88268,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=true] expected: @@ -89273,8 +88332,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -89305,8 +88362,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -89337,8 +88392,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=true] expected: @@ -89403,8 +88456,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -89435,8 +88486,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -89467,8 +88516,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=true] expected: @@ -89551,8 +88598,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -89583,8 +88628,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -89615,8 +88658,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=true] expected: @@ -89681,8 +88722,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -89713,8 +88752,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -89745,8 +88782,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=true] expected: @@ -89811,8 +88846,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";alias=true] expected: @@ -89843,8 +88876,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";alias=true] expected: @@ -89875,8 +88906,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=false] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";alias=true] expected: @@ -90187,8 +89216,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -90203,8 +89230,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -90236,23 +89261,21 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,clamp:abstract_float:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,clamp:abstract_int:*] @@ -90324,207 +89347,193 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,clamp:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,clamp:i32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,clamp:u32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,cos:abstract_float:*] @@ -90596,71 +89605,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,cos:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,cosh:abstract_float:*] @@ -90750,7 +89753,7 @@ [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_r";vectorize=2] expected: @@ -90766,7 +89769,7 @@ [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw";vectorize=2] expected: @@ -90782,7 +89785,7 @@ [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="uniform";vectorize=2] expected: @@ -90815,8 +89818,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -90831,8 +89832,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -90847,8 +89846,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -90881,8 +89878,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -90897,8 +89892,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -90913,8 +89906,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -90947,8 +89938,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -90963,8 +89952,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -90979,8 +89966,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -91013,8 +89998,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -91029,8 +90012,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -91045,8 +90026,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -91079,8 +90058,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -91095,8 +90072,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -91111,8 +90086,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -91145,8 +90118,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -91161,8 +90132,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -91177,8 +90146,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -91194,11 +90161,9 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,cross:abstract_float:*] - expected: - if os == "linux" and not debug: [TIMEOUT, ERROR] [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,cross:f16:*] @@ -91212,23 +90177,15 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,cross:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,degrees:abstract_float:*] @@ -91301,8 +90258,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -91317,8 +90272,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -91333,8 +90286,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -91415,36 +90366,24 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";dim=4] expected: if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";dim=4] expected: if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";dim=4] expected: @@ -91526,23 +90465,17 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,distance:f32:*] - expected: - if os == "linux" and not debug: [TIMEOUT, ERROR] [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,distance:f32_vec2:*] @@ -91553,16 +90486,10 @@ if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform"] - expected: - if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,distance:f32_vec3:*] @@ -91573,16 +90500,10 @@ if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: [FAIL, TIMEOUT, NOTRUN] [:inputSource="uniform"] - expected: - if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,distance:f32_vec4:*] @@ -91593,16 +90514,10 @@ if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform"] - expected: - if os == "linux" and not debug: [FAIL, TIMEOUT, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,dot4I8Packed:basic:*] @@ -91692,63 +90607,39 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,dot:f32_vec2:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,dot:f32_vec3:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,dot:f32_vec4:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,dot:i32:*] @@ -92044,71 +90935,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,exp2:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,exp:abstract_float:*] @@ -92180,71 +91065,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,exp:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,extractBits:i32:*] @@ -92436,31 +91315,23 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,faceForward:f32_vec2:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,faceForward:f32_vec3:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] expected: @@ -92472,15 +91343,13 @@ [:inputSource="uniform"] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,faceForward:f32_vec4:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] expected: @@ -92492,7 +91361,7 @@ [:inputSource="uniform"] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,firstLeadingBit:i32:*] @@ -92513,8 +91382,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -92529,8 +91396,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -92579,8 +91444,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -92595,8 +91458,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -92611,8 +91472,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -92645,8 +91504,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -92661,8 +91518,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -92677,8 +91532,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -92711,8 +91564,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -92727,8 +91578,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -92743,8 +91592,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -92829,8 +91676,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -92845,8 +91690,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -92878,23 +91721,21 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,fma:abstract_float:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,fma:f16:*] @@ -92932,71 +91773,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,fma:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,fract:abstract_float:*] @@ -93085,8 +91920,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -93101,8 +91934,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -93219,16 +92050,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,frexp:f32_fract:*] @@ -93237,16 +92062,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,frexp:f32_vec2_exp:*] @@ -93255,16 +92074,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,frexp:f32_vec2_fract:*] @@ -93273,16 +92086,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,frexp:f32_vec3_exp:*] @@ -93291,16 +92098,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,frexp:f32_vec3_fract:*] @@ -93309,16 +92110,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,frexp:f32_vec4_exp:*] @@ -93327,16 +92122,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,frexp:f32_vec4_fract:*] @@ -93345,16 +92134,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,fwidth:f32:*] @@ -93658,71 +92441,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,inversesqrt:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,ldexp:abstract_float:*] @@ -93811,8 +92588,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -93827,8 +92602,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -93939,16 +92712,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,length:f32_vec2:*] @@ -93975,16 +92742,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,length:f32_vec4:*] @@ -93993,16 +92754,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,log2:abstract_float:*] @@ -94074,71 +92829,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,log2:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,log:abstract_float:*] @@ -94210,91 +92959,87 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,log:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,max:abstract_float:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,max:abstract_int:*] @@ -94367,70 +93112,70 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,max:f32:*] expected: - if os == "linux" and not debug: ERROR + if os == "linux" and not debug: [OK, TIMEOUT, CRASH] [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [PASS, NOTRUN] [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: [FAIL, NOTRUN] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,max:i32:*] @@ -94451,8 +93196,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -94467,8 +93210,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -94483,8 +93224,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -94566,23 +93305,21 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,min:abstract_float:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,min:abstract_int:*] @@ -94655,70 +93392,66 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,min:f32:*] expected: - if os == "linux" and not debug: ERROR + if os == "linux" and not debug: [OK, TIMEOUT] [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,min:i32:*] @@ -94739,8 +93472,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -94755,8 +93486,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -94771,8 +93500,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -94805,8 +93532,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -94821,8 +93546,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -94837,8 +93560,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -94854,47 +93575,39 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:abstract_float_matching:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:abstract_float_nonmatching_vec2:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:abstract_float_nonmatching_vec3:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:abstract_float_nonmatching_vec4:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: [FAIL, TIMEOUT] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:f16_matching:*] @@ -94962,23 +93675,21 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:f32_matching:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] expected: @@ -94986,15 +93697,15 @@ [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] expected: @@ -95002,39 +93713,37 @@ [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:f32_nonmatching_vec2:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] expected: @@ -95046,15 +93755,13 @@ [:inputSource="uniform"] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:f32_nonmatching_vec3:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] expected: @@ -95066,15 +93773,13 @@ [:inputSource="uniform"] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,mix:f32_nonmatching_vec4:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] expected: @@ -95086,7 +93791,7 @@ [:inputSource="uniform"] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:abstract_fract:*] @@ -95223,16 +93928,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:f32_vec2_fract:*] @@ -95241,16 +93940,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:f32_vec2_whole:*] @@ -95260,15 +93953,15 @@ [:inputSource="storage_r"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="uniform"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:f32_vec3_fract:*] @@ -95277,16 +93970,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:f32_vec3_whole:*] @@ -95295,16 +93982,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:f32_vec4_fract:*] @@ -95313,16 +93994,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:f32_vec4_whole:*] @@ -95331,16 +94006,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,modf:f32_whole:*] @@ -95349,16 +94018,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,normalize:abstract_float:*] @@ -95431,16 +94094,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,normalize:f32_vec3:*] @@ -95449,16 +94106,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,normalize:f32_vec4:*] @@ -95467,24 +94118,16 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,pack2x16float:pack:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: [PASS, TIMEOUT] + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] expected: @@ -95496,7 +94139,7 @@ [:inputSource="uniform"] expected: - if os == "linux" and not debug: [PASS, NOTRUN] + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,pack2x16snorm:pack:*] @@ -95505,16 +94148,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,pack2x16unorm:pack:*] @@ -95523,56 +94160,34 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,pack4x8snorm:pack:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,pack4x8unorm:pack:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,pack4xI8:basic:*] @@ -95716,71 +94331,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,pow:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,quantizeToF16:f32:*] @@ -95919,8 +94528,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -95935,8 +94542,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -95951,8 +94556,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -96024,63 +94627,39 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,reflect:f32_vec2:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,reflect:f32_vec3:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,reflect:f32_vec4:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] - expected: - if os == "linux" and not debug: NOTRUN [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,refract:abstract_float:*] @@ -96140,63 +94719,45 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,refract:f32_vec2:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,refract:f32_vec3:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,refract:f32_vec4:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="uniform"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,reverseBits:i32:*] @@ -96217,8 +94778,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -96233,8 +94792,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -96249,8 +94806,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -96283,8 +94838,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -96299,8 +94852,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -96315,8 +94866,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -96401,8 +94950,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -96417,8 +94964,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -96433,8 +94978,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -96519,8 +95062,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -96535,8 +95076,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -96665,8 +95204,6 @@ [:inputSource="storage_r";component="af";overload="vec4"] [:inputSource="storage_r";component="b";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";component="b";overload="vec2"] expected: @@ -96745,8 +95282,6 @@ [:inputSource="storage_rw";component="af";overload="vec4"] [:inputSource="storage_rw";component="b";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";component="b";overload="vec2"] expected: @@ -96825,8 +95360,6 @@ [:inputSource="uniform";component="af";overload="vec4"] [:inputSource="uniform";component="b";overload="scalar"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";component="b";overload="vec2"] expected: @@ -96971,8 +95504,6 @@ [:inputSource="storage_r";component="af";overload="vec4"] [:inputSource="storage_r";component="b";overload="vec2"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";component="b";overload="vec3"] expected: @@ -97031,8 +95562,6 @@ [:inputSource="storage_rw";component="af";overload="vec4"] [:inputSource="storage_rw";component="b";overload="vec2"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";component="b";overload="vec3"] expected: @@ -97091,8 +95620,6 @@ [:inputSource="uniform";component="af";overload="vec4"] [:inputSource="uniform";component="b";overload="vec2"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";component="b";overload="vec3"] expected: @@ -97249,8 +95776,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -97265,8 +95790,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -97281,8 +95804,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -97315,8 +95836,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -97331,8 +95850,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -97347,8 +95864,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -97432,71 +95947,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,sin:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,sinh:abstract_float:*] @@ -97586,7 +96095,7 @@ [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_r";vectorize=2] expected: @@ -97602,7 +96111,7 @@ [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw";vectorize=2] expected: @@ -97618,7 +96127,7 @@ [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="uniform";vectorize=2] expected: @@ -97702,71 +96211,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,smoothstep:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,sqrt:abstract_float:*] @@ -97856,7 +96359,7 @@ [:inputSource="storage_r";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_r";vectorize=2] expected: @@ -97872,7 +96375,7 @@ [:inputSource="storage_rw";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="storage_rw";vectorize=2] expected: @@ -97888,7 +96391,7 @@ [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: FAIL + if os == "linux" and not debug: [PASS, FAIL] [:inputSource="uniform";vectorize=2] expected: @@ -97972,71 +96475,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,step:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,storageBarrier:barrier:*] @@ -98120,71 +96617,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,tan:f32:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,tanh:abstract_float:*] @@ -98273,8 +96764,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -98289,8 +96778,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -98305,8 +96792,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -99427,12 +97912,8 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=4] expected: @@ -99443,8 +97924,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=4] expected: @@ -99463,12 +97942,8 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=4] expected: @@ -99479,8 +97954,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=4] expected: @@ -99499,12 +97972,8 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=4] expected: @@ -99515,8 +97984,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=4] expected: @@ -99605,8 +98072,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -99621,8 +98086,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -99637,8 +98100,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -99659,16 +98120,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,unpack2x16snorm:unpack:*] @@ -99677,16 +98132,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,unpack2x16unorm:unpack:*] @@ -99695,16 +98144,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,unpack4x8snorm:unpack:*] @@ -99713,16 +98156,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,unpack4x8unorm:unpack:*] @@ -99731,16 +98168,10 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform"] - expected: - if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,call,builtin,unpack4xI8:basic:*] @@ -100074,31 +98505,27 @@ [cts.https.html?q=webgpu:shader,execution,expression,unary,af_arithmetic:negation:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,unary,af_assignment:abstract:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,unary,af_assignment:f16:*] @@ -100112,11 +98539,9 @@ [cts.https.html?q=webgpu:shader,execution,expression,unary,ai_assignment:abstract:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,unary,ai_assignment:i32:*] @@ -100149,8 +98574,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -100165,8 +98588,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -100181,8 +98602,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -100249,8 +98668,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -100265,8 +98682,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -100281,8 +98696,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -100315,8 +98728,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -100331,8 +98742,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -100347,8 +98756,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -100381,8 +98788,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -100397,8 +98802,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -100413,8 +98816,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -100447,8 +98848,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -100463,8 +98862,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -100479,8 +98876,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -100848,71 +99243,65 @@ [cts.https.html?q=webgpu:shader,execution,expression,unary,f32_arithmetic:negation:*] - expected: - if os == "linux" and not debug: ERROR [:inputSource="const";vectorize="_undef_"] expected: - if os == "linux" and not debug: TIMEOUT + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="const";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_r";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: NOTRUN [:inputSource="storage_rw";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=3] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=4] expected: - if os == "linux" and not debug: NOTRUN + if os == "linux" and not debug: FAIL [cts.https.html?q=webgpu:shader,execution,expression,unary,f32_conversion:bool:*] @@ -100933,8 +99322,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -100949,8 +99336,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -100965,8 +99350,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101107,8 +99490,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101123,8 +99504,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101139,8 +99518,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101193,12 +99570,8 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=2;rows=4] expected: @@ -101209,8 +99582,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";cols=3;rows=4] expected: @@ -101229,12 +99600,8 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=2;rows=4] expected: @@ -101245,8 +99612,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";cols=3;rows=4] expected: @@ -101265,12 +99630,8 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=2] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=2;rows=4] expected: @@ -101281,8 +99642,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=3] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";cols=3;rows=4] expected: @@ -101319,8 +99678,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101335,8 +99692,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101351,8 +99706,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101385,8 +99738,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101401,8 +99752,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101417,8 +99766,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101451,8 +99798,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101467,8 +99812,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101483,8 +99826,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101517,8 +99858,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101533,8 +99872,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101549,8 +99886,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101583,8 +99918,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101599,8 +99932,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101615,8 +99946,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101749,8 +100078,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101765,8 +100092,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101781,8 +100106,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101815,8 +100138,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -101831,8 +100152,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -101847,8 +100166,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -101881,8 +100198,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";scalarType="u32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";scalarType="u32";derefType="deref_pointer"] expected: @@ -101977,8 +100292,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";scalarType="u32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";scalarType="u32";derefType="deref_pointer"] expected: @@ -102073,8 +100386,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";scalarType="u32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";scalarType="u32";derefType="deref_pointer"] expected: @@ -102169,8 +100480,6 @@ [:inputSource="storage_r";vectorize="_undef_";scalarType="i32";derefType="address_of_identifier"] [:inputSource="storage_r";vectorize="_undef_";scalarType="i32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";scalarType="i32";derefType="deref_pointer"] expected: @@ -102265,8 +100574,6 @@ [:inputSource="storage_rw";vectorize="_undef_";scalarType="i32";derefType="address_of_identifier"] [:inputSource="storage_rw";vectorize="_undef_";scalarType="i32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";scalarType="i32";derefType="deref_pointer"] expected: @@ -102361,8 +100668,6 @@ [:inputSource="uniform";vectorize="_undef_";scalarType="i32";derefType="address_of_identifier"] [:inputSource="uniform";vectorize="_undef_";scalarType="i32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";scalarType="i32";derefType="deref_pointer"] expected: @@ -102459,8 +100764,6 @@ [:inputSource="storage_r";vectorize="_undef_";scalarType="i32";derefType="address_of_identifier"] [:inputSource="storage_r";vectorize="_undef_";scalarType="i32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_";scalarType="i32";derefType="deref_pointer"] expected: @@ -102555,8 +100858,6 @@ [:inputSource="storage_rw";vectorize="_undef_";scalarType="i32";derefType="address_of_identifier"] [:inputSource="storage_rw";vectorize="_undef_";scalarType="i32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_";scalarType="i32";derefType="deref_pointer"] expected: @@ -102651,8 +100952,6 @@ [:inputSource="uniform";vectorize="_undef_";scalarType="i32";derefType="address_of_identifier"] [:inputSource="uniform";vectorize="_undef_";scalarType="i32";derefType="deref_address_of_identifier"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_";scalarType="i32";derefType="deref_pointer"] expected: @@ -102751,8 +101050,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -102767,8 +101064,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -102783,8 +101078,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -102851,8 +101144,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -102867,8 +101158,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -102883,8 +101172,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -103017,8 +101304,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -103033,8 +101318,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -103049,8 +101332,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -103083,8 +101364,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_r";vectorize=2] expected: @@ -103099,8 +101378,6 @@ if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="storage_rw";vectorize=2] expected: @@ -103115,8 +101392,6 @@ if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize="_undef_"] - expected: - if os == "linux" and not debug: FAIL [:inputSource="uniform";vectorize=2] expected: @@ -108827,6 +107102,8 @@ [:canvasType="onscreen";prevFrameCallsite="requestAnimationFrame";getCurrentTextureAgain=false] [:canvasType="onscreen";prevFrameCallsite="requestAnimationFrame";getCurrentTextureAgain=true] + expected: + if os == "linux" and not debug: FAIL [:canvasType="onscreen";prevFrameCallsite="runInNewCanvasFrame";getCurrentTextureAgain=false] diff --git a/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_copy.https.html.ini b/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_copy.https.html.ini index 8926a767843..b409401c33d 100644 --- a/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_copy.https.html.ini +++ b/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_copy.https.html.ini @@ -1,3 +1,3 @@ [canvas_composite_alpha_rgba8unorm_opaque_copy.https.html] expected: - if os == "linux" and not debug: [CRASH, PASS] + if os == "linux" and not debug: [CRASH, PASS, FAIL] diff --git a/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_draw.https.html.ini b/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_draw.https.html.ini index 5c94c840149..3684ca84a50 100644 --- a/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_draw.https.html.ini +++ b/tests/wpt/webgpu/meta/webgpu/webgpu/web_platform/reftests/canvas_composite_alpha_rgba8unorm_opaque_draw.https.html.ini @@ -1,3 +1,3 @@ [canvas_composite_alpha_rgba8unorm_opaque_draw.https.html] expected: - if os == "linux" and not debug: PASS + if os == "linux" and not debug: [PASS, FAIL]