You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let submit_info = &[vk::SubmitInfoBuilder::new().command_buffers(&cmd_bufs)];
824
834
//all preparations except huge buffer allocation done. Now allocate huge buffer as a last step to minize chance of allocation failure for small structures
825
835
836
+
//by default load cpu for faster wait on platforms where cpu load shouldn't affect cpu speed.
837
+
let load_cpu_during_wait = physical_props.device_type == vk::PhysicalDeviceType::DISCRETE_GPU
838
+
&& std::env::consts::ARCH == "x86_64";
839
+
// but this may be override from environment var_os
840
+
let load_cpu_during_wait = env::var("MEMTEST_VULKAN_EMULATE_LOAD_CPU_DURING_WAIT")
0 commit comments