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
On Windows11, tried to benchmark the trianglevulkan13 app by specifying --benchmark command line argument.
The app crashes at std::cout << "Benchmark finished" << "\n";
of the Benchmark::run(std::function<void()> renderFunc, VkPhysicalDeviceProperties deviceProps) function.
When I also specify --validation argument, it works fine since it invokes setupConsole("Vulkan example");
in vulkanexamplebase.cpp and std::cout becomes available
The text was updated successfully, but these errors were encountered:
While it shouldn't crash, explicitly opening a console in benchmark mode is not intended. Benchmark is supposed to be explicitly run from an existing console, so you get the benchmark result outputted to that console:
I'll try to find a way to make the sample not crash when doing benchmark and not explicitly being run from a terminal.
On Windows11, tried to benchmark the
trianglevulkan13
app by specifying --benchmark command line argument.The app crashes at
std::cout << "Benchmark finished" << "\n";
of the
Benchmark::run(std::function<void()> renderFunc, VkPhysicalDeviceProperties deviceProps)
function.When I also specify --validation argument, it works fine since it invokes
setupConsole("Vulkan example");
in
vulkanexamplebase.cpp
and std::cout becomes availableThe text was updated successfully, but these errors were encountered: