cuda.symbols.Zero.cuh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of komputation Show documentation
Show all versions of komputation Show documentation
Komputation is a neural network framework for the JVM written in the Kotlin programming language.
__device__ void setToZero(float* destination, int start, int end) {
for(int index = start; index < end; index++) {
destination[index] = 0.0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy