All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.komputation.cpu.functions.Multiplication.kt Maven / Gradle / Ivy

Go to download

Komputation is a neural network framework for the JVM written in the Kotlin programming language.

There is a newer version: 0.12.5
Show newest version
package com.komputation.cpu.functions

import org.jblas.FloatMatrix
import org.jblas.SimpleBlas

fun multiply(A : FloatMatrix, B : FloatMatrix, result : FloatMatrix) {

    SimpleBlas.gemm(1.0f, A, B, 0.0f, result)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy