| DistributedLanczosSolver solver = new DistributedLanczosSolver();
Path lanczosSeqFiles = new Path(outputCalc, "eigenvectors-" + (System.nanoTime() & 0xFF));
solver.runJob(conf,
L.getRowPath(),
new Path(outputTmp, "lanczos-" + (System.nanoTime() & 0xFF)),
L.numRows(),
L.numCols(),
true,
overshoot,
eigenVectors,
eigenValues,
|