From d0cec20d8a9029d9d290e088388ca2187c32ea10 Mon Sep 17 00:00:00 2001 From: PancakeTAS Date: Mon, 5 Jan 2026 22:11:45 +0100 Subject: [PATCH] fix: cli: do not set irreversible benchmark defaults --- lsfg-vk-cli/src/tools/benchmark.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lsfg-vk-cli/src/tools/benchmark.hpp b/lsfg-vk-cli/src/tools/benchmark.hpp index 91fe38e..18dbe1c 100644 --- a/lsfg-vk-cli/src/tools/benchmark.hpp +++ b/lsfg-vk-cli/src/tools/benchmark.hpp @@ -10,13 +10,13 @@ namespace lsfgvk::cli::benchmark { /// options for the "benchmark" command struct Options { std::optional dll; - bool allow_fp16{true}; + bool allow_fp16{false}; int width{1920}; int height{1080}; - float flow{0.85F}; + float flow{1.0F}; int multiplier{2}; - bool performance_mode{true}; + bool performance_mode{false}; std::optional gpu; int duration{10};