Undo doing less bench iterations under cfg(test) (#6021)

This commit is contained in:
Andreas Reich 2024-07-24 08:56:14 +02:00 committed by GitHub
parent 0aca442d15
commit 9b680e6997
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 10 deletions

View File

@ -10,20 +10,14 @@ use rayon::iter::{IntoParallelIterator, ParallelIterator};
use crate::DeviceState;
#[cfg(not(test))]
const DISPATCH_COUNT: usize = 10_000;
#[cfg(test)]
const DISPATCH_COUNT: usize = 8; // Running with up to 8 threads.
// Currently bindless is _much_ slower than with regularly resources,
// since wgpu needs to issues barriers for all resources between each dispatch for all read/write textures & buffers.
// This is in fact so slow that it makes the benchmark unusable when we use the same amount of
// resources as the regular benchmark.
// For details see https://github.com/gfx-rs/wgpu/issues/5766
#[cfg(not(test))]
const DISPATCH_COUNT_BINDLESS: usize = 1_000;
#[cfg(test)]
const DISPATCH_COUNT_BINDLESS: usize = 8; // Running with up to 8 threads.
// Must match the number of textures in the computepass.wgsl shader
const TEXTURES_PER_DISPATCH: usize = 2;

View File

@ -10,10 +10,6 @@ use rayon::iter::{IntoParallelIterator, ParallelIterator};
use crate::DeviceState;
#[cfg(test)]
const DRAW_COUNT: usize = 8; // Running with up to 8 threads.
#[cfg(not(test))]
const DRAW_COUNT: usize = 10_000;
// Must match the number of textures in the renderpass.wgsl shader