Package | Description |
---|---|
org.apache.sysml.runtime.compress | |
org.apache.sysml.runtime.matrix.data |
Modifier and Type | Method and Description |
---|---|
Iterator<SparseRow> |
CompressedMatrixBlock.getSparseRowIterator(int rl,
int ru) |
Modifier and Type | Class and Description |
---|---|
class |
SparseRowScalar |
class |
SparseRowVector |
Modifier and Type | Method and Description |
---|---|
SparseRow |
SparseBlockCSR.get(int r) |
SparseRow |
SparseBlockMCSR.get(int r) |
SparseRow |
SparseBlockCOO.get(int r) |
abstract SparseRow |
SparseBlock.get(int r)
Get values of row r in the format of a sparse row.
|
SparseRow[] |
SparseBlockMCSR.getRows()
Helper function for MCSR -> {COO, CSR}
|
Modifier and Type | Method and Description |
---|---|
void |
MatrixBlock.appendRow(int r,
SparseRow row) |
void |
MatrixBlock.appendRow(int r,
SparseRow row,
boolean deep) |
void |
SparseRowVector.copy(SparseRow that) |
static SparseBlock |
SparseBlockFactory.createSparseBlock(SparseBlock.Type type,
SparseRow row) |
void |
SparseBlockCSR.set(int r,
SparseRow row,
boolean deep) |
void |
SparseBlockMCSR.set(int r,
SparseRow row,
boolean deep) |
void |
SparseBlockCOO.set(int r,
SparseRow row,
boolean deep) |
abstract void |
SparseBlock.set(int r,
SparseRow row,
boolean deep)
Set the values of row r to the given sparse row.
|
Constructor and Description |
---|
SparseBlockCOO(SparseRow[] rows,
int nnz)
Copy constructor old sparse row representation.
|
SparseBlockCSR(SparseRow[] rows,
int nnz)
Copy constructor old sparse row representation.
|
SparseBlockMCSR(SparseRow[] rows,
boolean deep)
Copy constructor old sparse row representation.
|
SparseRowVector(SparseRow that) |
Copyright © 2018 The Apache Software Foundation. All rights reserved.