package com.nsrddyn.fpu class CholeskyDecomposition { /* * Floating point operation to stress the cpu * Calculate the number of KFLOPS / FLOPS * implementation of the Cholesky decomposition * More information on the Cholesky decomposition at: * https://en.wikipedia.org/wiki/Cholesky_decomposition * * Linpack uses the cholesky decomposition * https://www.netlib.org/linpack/ * * */ def choleskyDecomposition(n: Int): Unit = { for (w <- 0 to n) { } } }