Skip to content
Snippets Groups Projects
Commit 59590572 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Eval config

parent ca92750d
No related branches found
No related tags found
No related merge requests found
......@@ -139,12 +139,12 @@ static void performRound(State& state,
if (fiberData[i] > 192) {
fiberData[i] -= (fiberArgs->roundData * 4);
}
*/
if (i == (bytesPerFiber * 0.75)) {
if (fiberData[i] < 128) {
break;
}
}
*/
}
......@@ -165,6 +165,7 @@ static void performRound(State& state,
delete [] fiberArgs;
}
/*
IGNORE_UNUSED_FUNCTION
static void printState(State& state) {
std::ostream& ostream = std::cout;
......@@ -183,6 +184,7 @@ static void printState(State& state) {
}
}
POP_DIAGNOSTIC
*/
static void run(Runtime& runtime,
unsigned int fiberCount,
......@@ -209,7 +211,7 @@ int main(UNUSED_ARG int argc, UNUSED_ARG char *argv[]) {
enableStacktraceOnAborts();
RuntimeVariant runtimeVariant = ws;
unsigned int rounds = 20;
unsigned int rounds = 10;
unsigned int seed = 4231;
int opt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment