mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Adjust the MSL stack size lower bound
This commit is contained in:
@@ -3224,7 +3224,7 @@ fn test_stack_size() {
|
||||
let stack_size = addresses.end - addresses.start;
|
||||
// check the size (in debug only)
|
||||
// last observed macOS value: 20528 (CI)
|
||||
if !(14000..=25000).contains(&stack_size) {
|
||||
if !(11000..=25000).contains(&stack_size) {
|
||||
panic!("`put_expression` stack size {} has changed!", stack_size);
|
||||
}
|
||||
}
|
||||
@@ -3239,7 +3239,7 @@ fn test_stack_size() {
|
||||
let stack_size = addresses.end - addresses.start;
|
||||
// check the size (in debug only)
|
||||
// last observed macOS value: 19152 (CI)
|
||||
if !(13000..=20000).contains(&stack_size) {
|
||||
if !(11000..=20000).contains(&stack_size) {
|
||||
panic!("`put_block` stack size {} has changed!", stack_size);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user