We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5415e commit 08227efCopy full SHA for 08227ef
tests/src/native.rs
@@ -52,6 +52,14 @@ impl NativeTest {
52
std::env::set_var("MTL_DEBUG_LAYER", env_value);
53
std::env::set_var("MTL_SHADER_VALIDATION", env_value);
54
55
+ // Enable MoltenVK Debug for our failing test
56
+ if config.name.contains("subgroup_operations") {
57
+ std::env::set_var("MVK_CONFIG_LOG_LEVEL", "2");
58
+ std::env::set_var("MVK_DEBUG", "1");
59
+ std::env::set_var("MTL_DEBUG_LAYER", "1");
60
+ std::env::set_var("MTL_SHADER_VALIDATION", "1");
61
+ }
62
+
63
execute_test(config, Some(test_info), adapter_index).await;
64
}),
65
}
0 commit comments