core
Types
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
interface F64MatrixLike
Read-only matrix contract. Anything that only reads a matrix should take this.
Link copied to clipboard
The matrix storages koblas itself defines, F64DenseMatrix and F64SparseMatrix.
Link copied to clipboard
Compressed-sparse-column form: column j occupies colPtr(j) until colPtr(j + 1) of rowIdx and values, rows strictly ascending. A stored zero is preserved, and a 64-bit-index host library needs a widening copy.
Link copied to clipboard
Indices are strictly ascending and in range, validated by the constructor; of sorts and sums instead.
Link copied to clipboard
interface F64VectorLike
Read-only vector contract. Anything that only reads a vector should take this.
Link copied to clipboard
The vector storages koblas itself defines, F64DenseVector and F64SparseVector.