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

com.komputation.cuda.optimization.CudaUpdateRule.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.cuda.optimization

import jcuda.Pointer

interface CudaUpdateRule {

    fun denseUpdate(
        count : Int,
        pointerToParameters: Pointer,
        pointerToGradient: Pointer)

    fun sparseUpdate(
        maximumParameters : Int,
        pointerToIndices: Pointer,
        pointerToCounts: Pointer,
        pointerToParameters: Pointer,
        pointerToGradient: Pointer)


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy