fix: cli: do not set irreversible benchmark defaults
Some checks are pending
(CI) lsfg-vk / build (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (24.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (25.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-ui (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (23.08) (push) Waiting to run

This commit is contained in:
PancakeTAS 2026-01-05 22:11:45 +01:00
parent bc137ed310
commit d0cec20d8a
No known key found for this signature in database

View file

@ -10,13 +10,13 @@ namespace lsfgvk::cli::benchmark {
/// options for the "benchmark" command
struct Options {
std::optional<std::string> 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<std::string> gpu;
int duration{10};