2020-06-11 10:36:19 +03:00
|
|
|
package scientifik.kmath.nd4j
|
|
|
|
|
|
|
|
import org.nd4j.linalg.api.ndarray.INDArray
|
|
|
|
import org.nd4j.linalg.api.shape.Shape
|
|
|
|
|
|
|
|
internal sealed class INDArrayIteratorBase<T>(protected val iterateOver: INDArray) : Iterator<Pair<IntArray, T>> {
|
|
|
|
private var i: Int = 0
|
|
|
|
|
2020-06-28 13:33:09 +03:00
|
|
|
final override fun hasNext(): Boolean = i < iterateOver.length()
|
2020-06-11 10:36:19 +03:00
|
|
|
|
|
|
|
abstract fun getSingle(indices: LongArray): T
|
|
|
|
|
|
|
|
final override fun next(): Pair<IntArray, T> {
|
|
|
|
val la = if (iterateOver.ordering() == 'c')
|
|
|
|
Shape.ind2subC(iterateOver, i++.toLong())!!
|
|
|
|
else
|
|
|
|
Shape.ind2sub(iterateOver, i++.toLong())!!
|
|
|
|
|
|
|
|
return narrowToIntArray(la) to getSingle(la)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 22:50:34 +03:00
|
|
|
internal class INDArrayRealIterator(iterateOver: INDArray) : INDArrayIteratorBase<Double>(iterateOver) {
|
2020-06-11 10:36:19 +03:00
|
|
|
override fun getSingle(indices: LongArray): Double = iterateOver.getDouble(*indices)
|
|
|
|
}
|
|
|
|
|
2020-06-28 22:50:34 +03:00
|
|
|
internal fun INDArray.realIterator(): INDArrayRealIterator = INDArrayRealIterator(this)
|
|
|
|
|
2020-06-11 10:36:19 +03:00
|
|
|
internal class INDArrayLongIterator(iterateOver: INDArray) : INDArrayIteratorBase<Long>(iterateOver) {
|
|
|
|
override fun getSingle(indices: LongArray) = iterateOver.getLong(*indices)
|
|
|
|
}
|
|
|
|
|
2020-06-28 22:50:34 +03:00
|
|
|
// TODO
|
|
|
|
//internal fun INDArray.longI
|
|
|
|
|
2020-06-11 10:36:19 +03:00
|
|
|
internal class INDArrayIntIterator(iterateOver: INDArray) : INDArrayIteratorBase<Int>(iterateOver) {
|
|
|
|
override fun getSingle(indices: LongArray) = iterateOver.getInt(*narrowToIntArray(indices))
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class INDArrayFloatIterator(iterateOver: INDArray) : INDArrayIteratorBase<Float>(iterateOver) {
|
|
|
|
override fun getSingle(indices: LongArray) = iterateOver.getFloat(*indices)
|
|
|
|
}
|