EXSWHTEC-283 - Introduce build dependencies for numerical accuracy tests #233

Change-Id: I5381beb47347c24a161113b986fa7f252057ffdb
This commit is contained in:
Mirza Halilčević
2023-12-28 14:36:01 +01:00
committed by Rakesh Roy
parent 044a59496c
commit 122403f464
8 changed files with 60 additions and 3 deletions
+5
View File
@@ -22,6 +22,9 @@ THE SOFTWARE.
#pragma once
#include <cstdint>
#include <limits>
struct CmdOptions {
int iterations = 10;
int warmups = 100;
@@ -29,6 +32,8 @@ struct CmdOptions {
int cg_iterations = 5;
bool no_display = false;
bool progress = false;
uint64_t accuracy_iterations = std::numeric_limits<uint32_t>::max() + 1ull;
int accuracy_max_memory = 80;
};
extern CmdOptions cmd_options;