Compare commits

..

No commits in common. "6114a98d542f38df7b16fe78ac115c42e34ec78c" and "3b216640948e38d3d8a475ffd653a5d71d8ac9a1" have entirely different histories.

11 changed files with 14 additions and 87 deletions

10
.gitignore vendored
View File

@ -1,13 +1,21 @@
# Scala + sbt build artifacts
target/ target/
project/target/ project/target/
project/project/ project/project/
.bloop/
# Metals + BSP cache
.metals/ .metals/
.bsp/ .bsp/
# Java / JVM artifacts
*.class *.class
*.log *.log
hs_err_pid* hs_err_pid*
# IntelliJ
.idea/ .idea/
*.iml *.iml
# VSCode
.vscode/ .vscode/

View File

@ -3,4 +3,3 @@ version := "1.0"
name := "torque" name := "torque"
organization := "com.nsrddyn" organization := "com.nsrddyn"
libraryDependencies += "dev.zio" %% "zio" % "2.1.22"

View File

@ -1,10 +0,0 @@
package com.nsrddyn
object Torque {
def main(args: Array[String]): Unit = {
println("--- TORQUE STRESS TESTING UTILITY ---")
}
}

View File

@ -1,6 +0,0 @@
package com.nsrddyn
class ALU {
}

View File

@ -1,13 +0,0 @@
package com.nsrddyn
import scala.util.hashing
class Hash {
def hashString(): Unit = {
println("Hello from hash function")
}
}

View File

@ -1,5 +0,0 @@
package com.nsrddyn
class Prime {
}

View File

@ -1,12 +0,0 @@
package com.nsrddyn
/*
* cpu object, only one instance of an object needed
*/
object Cpu {
val name = ""
}

View File

@ -1,28 +0,0 @@
package com.nsrddyn
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) {
}
}
}

View File

@ -1,6 +0,0 @@
package com.nsrddyn
class FPU {
}

View File

@ -1,5 +0,0 @@
package com.nsrddyn
class Matrix {
}

View File

@ -0,0 +1,5 @@
package com.nsrddyn
def main(args: Array[String]) : Unit = {
println("Hello World!")
}