diff options
| author | nasr <nsrddyn@gmail.com> | 2025-11-20 21:43:16 +0100 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2025-11-20 21:43:16 +0100 |
| commit | 409b76a88e589cbd7a8dfd9d0aad8152bb00d0bb (patch) | |
| tree | 6c6648a8bc025901e57de36174068ebd5e4a5523 /src/main/scala/com/nsrddyn/FPU/CholeskyDecomposition.scala | |
| parent | e077e179d43e04c7365acf8d1cc5bcb55998e6bd (diff) | |
feature: implemented some basic benchmarking logic & enum for pass and test
Diffstat (limited to 'src/main/scala/com/nsrddyn/FPU/CholeskyDecomposition.scala')
| -rw-r--r-- | src/main/scala/com/nsrddyn/FPU/CholeskyDecomposition.scala | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/scala/com/nsrddyn/FPU/CholeskyDecomposition.scala b/src/main/scala/com/nsrddyn/FPU/CholeskyDecomposition.scala new file mode 100644 index 0000000..b42ade9 --- /dev/null +++ b/src/main/scala/com/nsrddyn/FPU/CholeskyDecomposition.scala @@ -0,0 +1,26 @@ +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) { + + + } + } +} |
