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 Jan 20, 2025
1 parent 2ff43a7 commit 382bccc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
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 magik matrix identity for matrix size [{}].", funSize);

Expand Down

0 comments on commit 382bccc

Please sign in to comment.