2024-07-20 03:06:41 +00:00
|
|
|
//! Tester for WebGPU
|
|
|
|
//! It enumerates the available backends on the system,
|
|
|
|
//! and run the tests through them.
|
|
|
|
//!
|
|
|
|
//! Test requirements:
|
|
|
|
//! - all IDs have the backend `Empty`
|
|
|
|
//! - all expected buffers have `MAP_READ` usage
|
|
|
|
//! - last action is `Submit`
|
|
|
|
//! - no swapchain use
|
|
|
|
|
2023-06-10 18:35:46 +00:00
|
|
|
#![cfg(not(target_arch = "wasm32"))]
|
2020-07-17 03:56:47 +00:00
|
|
|
|
2024-01-29 14:37:57 +00:00
|
|
|
use player::GlobalPlay;
|
2020-07-17 03:56:47 +00:00
|
|
|
use std::{
|
|
|
|
fs::{read_to_string, File},
|
2020-08-29 23:03:10 +00:00
|
|
|
io::{Read, Seek, SeekFrom},
|
2020-07-17 03:56:47 +00:00
|
|
|
path::{Path, PathBuf},
|
2022-05-31 15:22:21 +00:00
|
|
|
slice,
|
2020-07-17 03:56:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
struct RawId {
|
|
|
|
index: u32,
|
|
|
|
epoch: u32,
|
|
|
|
}
|
|
|
|
|
2020-08-29 23:03:10 +00:00
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
enum ExpectedData {
|
|
|
|
Raw(Vec<u8>),
|
2021-06-27 09:20:53 +00:00
|
|
|
U64(Vec<u64>),
|
2020-08-29 23:03:10 +00:00
|
|
|
File(String, usize),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ExpectedData {
|
|
|
|
fn len(&self) -> usize {
|
|
|
|
match self {
|
|
|
|
ExpectedData::Raw(vec) => vec.len(),
|
2021-06-27 09:20:53 +00:00
|
|
|
ExpectedData::U64(vec) => vec.len() * std::mem::size_of::<u64>(),
|
2020-08-29 23:03:10 +00:00
|
|
|
ExpectedData::File(_, size) => *size,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 03:56:47 +00:00
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
struct Expectation {
|
|
|
|
name: String,
|
|
|
|
buffer: RawId,
|
|
|
|
offset: wgt::BufferAddress,
|
2020-08-29 23:03:10 +00:00
|
|
|
data: ExpectedData,
|
2020-07-17 03:56:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-20 16:31:05 +00:00
|
|
|
struct Test<'a> {
|
2020-07-17 03:56:47 +00:00
|
|
|
features: wgt::Features,
|
|
|
|
expectations: Vec<Expectation>,
|
2020-07-20 16:31:05 +00:00
|
|
|
actions: Vec<wgc::device::trace::Action<'a>>,
|
2020-07-17 03:56:47 +00:00
|
|
|
}
|
|
|
|
|
2022-10-13 19:41:52 +00:00
|
|
|
fn map_callback(status: Result<(), wgc::resource::BufferAccessError>) {
|
|
|
|
if let Err(e) = status {
|
|
|
|
panic!("Buffer map error: {}", e);
|
2020-07-17 03:56:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-20 16:31:05 +00:00
|
|
|
impl Test<'_> {
|
2020-07-17 14:59:02 +00:00
|
|
|
fn load(path: PathBuf, backend: wgt::Backend) -> Self {
|
|
|
|
let backend_name = match backend {
|
|
|
|
wgt::Backend::Vulkan => "Vulkan",
|
|
|
|
wgt::Backend::Metal => "Metal",
|
|
|
|
wgt::Backend::Dx12 => "Dx12",
|
|
|
|
wgt::Backend::Gl => "Gl",
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
let string = read_to_string(path).unwrap().replace("Empty", backend_name);
|
2024-01-28 01:42:02 +00:00
|
|
|
|
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
struct SerializedTest<'a> {
|
|
|
|
features: Vec<String>,
|
|
|
|
expectations: Vec<Expectation>,
|
|
|
|
actions: Vec<wgc::device::trace::Action<'a>>,
|
|
|
|
}
|
|
|
|
let SerializedTest {
|
|
|
|
features,
|
|
|
|
expectations,
|
|
|
|
actions,
|
|
|
|
} = ron::de::from_str(&string).unwrap();
|
|
|
|
let features = features
|
|
|
|
.iter()
|
|
|
|
.map(|feature| {
|
|
|
|
wgt::Features::from_name(feature)
|
|
|
|
.unwrap_or_else(|| panic!("Invalid feature flag {}", feature))
|
|
|
|
})
|
|
|
|
.fold(wgt::Features::empty(), |a, b| a | b);
|
|
|
|
Test {
|
|
|
|
features,
|
|
|
|
expectations,
|
|
|
|
actions,
|
|
|
|
}
|
2020-07-17 03:56:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 14:59:02 +00:00
|
|
|
fn run(
|
|
|
|
self,
|
|
|
|
dir: &Path,
|
2024-01-29 14:37:57 +00:00
|
|
|
global: &wgc::global::Global,
|
2020-07-17 14:59:02 +00:00
|
|
|
adapter: wgc::id::AdapterId,
|
2020-08-29 23:03:10 +00:00
|
|
|
test_num: u32,
|
2020-07-17 14:59:02 +00:00
|
|
|
) {
|
|
|
|
let backend = adapter.backend();
|
2024-01-29 09:56:04 +00:00
|
|
|
let device_id = wgc::id::Id::zip(test_num, 0, backend);
|
2024-08-02 11:54:32 +00:00
|
|
|
let queue_id = wgc::id::Id::zip(test_num, 0, backend);
|
2023-11-20 07:41:52 +00:00
|
|
|
let (_, _, error) = wgc::gfx_select!(adapter => global.adapter_request_device(
|
2020-07-17 14:59:02 +00:00
|
|
|
adapter,
|
|
|
|
&wgt::DeviceDescriptor {
|
2020-11-21 01:28:11 +00:00
|
|
|
label: None,
|
2023-11-29 13:26:56 +00:00
|
|
|
required_features: self.features,
|
2023-11-29 13:29:11 +00:00
|
|
|
required_limits: wgt::Limits::default(),
|
2024-07-08 12:49:44 +00:00
|
|
|
memory_hints: wgt::MemoryHints::default(),
|
2020-07-17 14:59:02 +00:00
|
|
|
},
|
|
|
|
None,
|
2024-01-29 14:37:57 +00:00
|
|
|
Some(device_id),
|
2024-08-02 11:54:32 +00:00
|
|
|
Some(queue_id)
|
2020-11-21 01:28:11 +00:00
|
|
|
));
|
2020-11-21 05:05:56 +00:00
|
|
|
if let Some(e) = error {
|
|
|
|
panic!("{:?}", e);
|
|
|
|
}
|
2020-07-17 14:59:02 +00:00
|
|
|
|
2023-11-20 07:41:52 +00:00
|
|
|
let mut command_buffer_id_manager = wgc::identity::IdentityManager::new();
|
2020-07-17 14:59:02 +00:00
|
|
|
println!("\t\t\tRunning...");
|
|
|
|
for action in self.actions {
|
2024-08-02 11:54:32 +00:00
|
|
|
wgc::gfx_select!(device_id => global.process(device_id, queue_id, action, dir, &mut command_buffer_id_manager));
|
2020-07-17 14:59:02 +00:00
|
|
|
}
|
|
|
|
println!("\t\t\tMapping...");
|
|
|
|
for expect in &self.expectations {
|
2024-01-29 09:56:04 +00:00
|
|
|
let buffer = wgc::id::Id::zip(expect.buffer.index, expect.buffer.epoch, backend);
|
2023-11-20 07:41:52 +00:00
|
|
|
wgc::gfx_select!(device_id => global.buffer_map_async(
|
2020-07-17 14:59:02 +00:00
|
|
|
buffer,
|
2024-02-09 08:48:00 +00:00
|
|
|
expect.offset,
|
|
|
|
Some(expect.data.len() as u64),
|
2020-07-17 14:59:02 +00:00
|
|
|
wgc::resource::BufferMapOperation {
|
|
|
|
host: wgc::device::HostMap::Read,
|
2023-11-20 07:41:52 +00:00
|
|
|
callback: Some(wgc::resource::BufferMapCallback::from_rust(
|
2022-05-31 15:22:21 +00:00
|
|
|
Box::new(map_callback)
|
2023-11-20 07:41:52 +00:00
|
|
|
)),
|
2020-07-17 14:59:02 +00:00
|
|
|
}
|
2020-07-18 08:48:14 +00:00
|
|
|
))
|
|
|
|
.unwrap();
|
2020-07-17 14:59:02 +00:00
|
|
|
}
|
2020-07-17 03:56:47 +00:00
|
|
|
|
2020-07-17 14:59:02 +00:00
|
|
|
println!("\t\t\tWaiting...");
|
2024-01-13 17:34:51 +00:00
|
|
|
wgc::gfx_select!(device_id => global.device_poll(device_id, wgt::Maintain::wait()))
|
|
|
|
.unwrap();
|
2020-07-17 14:59:02 +00:00
|
|
|
|
|
|
|
for expect in self.expectations {
|
|
|
|
println!("\t\t\tChecking {}", expect.name);
|
2024-01-29 09:56:04 +00:00
|
|
|
let buffer = wgc::id::Id::zip(expect.buffer.index, expect.buffer.epoch, backend);
|
2021-03-16 17:00:44 +00:00
|
|
|
let (ptr, size) =
|
2023-11-20 07:41:52 +00:00
|
|
|
wgc::gfx_select!(device_id => global.buffer_get_mapped_range(buffer, expect.offset, Some(expect.data.len() as wgt::BufferAddress)))
|
2020-07-18 08:48:14 +00:00
|
|
|
.unwrap();
|
2024-07-04 10:46:24 +00:00
|
|
|
let contents = unsafe { slice::from_raw_parts(ptr.as_ptr(), size as usize) };
|
2020-08-29 23:03:10 +00:00
|
|
|
let expected_data = match expect.data {
|
|
|
|
ExpectedData::Raw(vec) => vec,
|
|
|
|
ExpectedData::File(name, size) => {
|
|
|
|
let mut bin = vec![0; size];
|
|
|
|
let mut file = File::open(dir.join(name)).unwrap();
|
|
|
|
file.seek(SeekFrom::Start(expect.offset)).unwrap();
|
|
|
|
file.read_exact(&mut bin[..]).unwrap();
|
|
|
|
|
|
|
|
bin
|
|
|
|
}
|
2021-06-27 09:20:53 +00:00
|
|
|
ExpectedData::U64(vec) => vec
|
|
|
|
.into_iter()
|
|
|
|
.flat_map(|u| u.to_ne_bytes().to_vec())
|
|
|
|
.collect::<Vec<u8>>(),
|
2020-08-29 23:03:10 +00:00
|
|
|
};
|
|
|
|
|
2020-12-05 16:28:16 +00:00
|
|
|
if &expected_data[..] != contents {
|
2021-02-03 22:07:54 +00:00
|
|
|
panic!(
|
|
|
|
"Test expectation is not met!\nBuffer content was:\n{:?}\nbut expected:\n{:?}",
|
|
|
|
contents, expected_data
|
|
|
|
);
|
2020-12-05 16:28:16 +00:00
|
|
|
}
|
2020-07-17 14:59:02 +00:00
|
|
|
}
|
2020-07-17 03:56:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 14:59:02 +00:00
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
struct Corpus {
|
2021-06-30 18:43:36 +00:00
|
|
|
backends: wgt::Backends,
|
2020-07-17 14:59:02 +00:00
|
|
|
tests: Vec<String>,
|
|
|
|
}
|
2020-07-17 03:56:47 +00:00
|
|
|
|
2020-07-17 14:59:02 +00:00
|
|
|
const BACKENDS: &[wgt::Backend] = &[
|
|
|
|
wgt::Backend::Vulkan,
|
|
|
|
wgt::Backend::Metal,
|
|
|
|
wgt::Backend::Dx12,
|
|
|
|
wgt::Backend::Gl,
|
|
|
|
];
|
2020-07-17 03:56:47 +00:00
|
|
|
|
2020-07-17 14:59:02 +00:00
|
|
|
impl Corpus {
|
|
|
|
fn run_from(path: PathBuf) {
|
|
|
|
println!("Corpus {:?}", path);
|
|
|
|
let dir = path.parent().unwrap();
|
|
|
|
let corpus: Corpus = ron::de::from_reader(File::open(&path).unwrap()).unwrap();
|
|
|
|
|
|
|
|
for &backend in BACKENDS {
|
|
|
|
if !corpus.backends.contains(backend.into()) {
|
2020-07-17 03:56:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
2020-08-29 23:03:10 +00:00
|
|
|
let mut test_num = 0;
|
2020-07-17 14:59:02 +00:00
|
|
|
for test_path in &corpus.tests {
|
|
|
|
println!("\t\tTest '{:?}'", test_path);
|
2024-07-03 15:15:55 +00:00
|
|
|
|
|
|
|
let global = wgc::global::Global::new(
|
|
|
|
"test",
|
|
|
|
wgt::InstanceDescriptor {
|
|
|
|
backends: backend.into(),
|
|
|
|
flags: wgt::InstanceFlags::debugging(),
|
|
|
|
dx12_shader_compiler: wgt::Dx12Compiler::Fxc,
|
|
|
|
gles_minor_version: wgt::Gles3MinorVersion::default(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
let adapter = match global.request_adapter(
|
|
|
|
&wgc::instance::RequestAdapterOptions {
|
|
|
|
power_preference: wgt::PowerPreference::None,
|
|
|
|
force_fallback_adapter: false,
|
|
|
|
compatible_surface: None,
|
|
|
|
},
|
|
|
|
wgc::instance::AdapterInputs::IdSet(&[wgc::id::Id::zip(0, 0, backend)]),
|
|
|
|
) {
|
|
|
|
Ok(adapter) => adapter,
|
|
|
|
Err(_) => continue,
|
|
|
|
};
|
|
|
|
|
|
|
|
println!("\tBackend {:?}", backend);
|
|
|
|
let supported_features =
|
|
|
|
wgc::gfx_select!(adapter => global.adapter_features(adapter)).unwrap();
|
|
|
|
let downlevel_caps =
|
|
|
|
wgc::gfx_select!(adapter => global.adapter_downlevel_capabilities(adapter))
|
|
|
|
.unwrap();
|
|
|
|
|
2020-07-17 14:59:02 +00:00
|
|
|
let test = Test::load(dir.join(test_path), adapter.backend());
|
|
|
|
if !supported_features.contains(test.features) {
|
|
|
|
println!(
|
|
|
|
"\t\tSkipped due to missing features {:?}",
|
|
|
|
test.features - supported_features
|
|
|
|
);
|
|
|
|
continue;
|
|
|
|
}
|
2023-06-10 18:35:46 +00:00
|
|
|
if !downlevel_caps
|
|
|
|
.flags
|
|
|
|
.contains(wgt::DownlevelFlags::COMPUTE_SHADERS)
|
|
|
|
{
|
|
|
|
println!("\t\tSkipped due to missing compute shader capability");
|
|
|
|
continue;
|
|
|
|
}
|
2020-08-29 23:03:10 +00:00
|
|
|
test.run(dir, &global, adapter, test_num);
|
|
|
|
test_num += 1;
|
2020-07-17 14:59:02 +00:00
|
|
|
}
|
2020-07-17 03:56:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_api() {
|
2021-03-16 16:46:07 +00:00
|
|
|
env_logger::init();
|
2020-12-03 05:30:38 +00:00
|
|
|
|
2020-07-17 14:59:02 +00:00
|
|
|
Corpus::run_from(PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/data/all.ron"))
|
2020-07-17 03:56:47 +00:00
|
|
|
}
|