Skip to content

Commit

Permalink
Proxy Dev: make cpu more efficient
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 9, 2024
1 parent 7768bde commit 922d2af
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -41,8 +41,8 @@ public BurnerMessage magicIdentityCheck(

long startTime = System.currentTimeMillis();

// some variation: is more fun!
int funSize = (int) (matrixSize * (1.0 + (random.nextDouble() * 3.3)));
// no variation: is no fun!
int funSize = matrixSize;

log.info("Calculate magic matrix identity for matrix size [{}].", funSize);

Expand Down

0 comments on commit 922d2af

Please sign in to comment.