diff --git a/eval/Locality.cpp b/eval/Locality.cpp
index 80a337afc680cda25917b0fa8a902d6db3e34f81..f7fc64346b765a2488a33476f8f52eeca87bea15 100644
--- a/eval/Locality.cpp
+++ b/eval/Locality.cpp
@@ -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;