Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompIntDoubleMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -135,7 +135,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompIntDoubleMatrix res;
if (op.isInplace()) {
Expand All @@ -162,7 +162,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -194,7 +194,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompIntFloatMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -135,7 +135,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompIntFloatMatrix res;
if (op.isInplace()) {
Expand All @@ -162,7 +162,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -194,7 +194,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompIntIntMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -135,7 +135,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompIntIntMatrix res;
if (op.isInplace()) {
Expand All @@ -162,7 +162,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -193,7 +193,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompIntLongMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -135,7 +135,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompIntLongMatrix res;
if (op.isInplace()) {
Expand All @@ -162,7 +162,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -193,7 +193,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompLongDoubleMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -136,7 +136,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompLongDoubleMatrix res;
if (op.isInplace()) {
Expand All @@ -163,7 +163,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -194,7 +194,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompLongFloatMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -136,7 +136,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompLongFloatMatrix res;
if (op.isInplace()) {
Expand All @@ -163,7 +163,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -195,7 +195,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompLongIntMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -136,7 +136,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompLongIntMatrix res;
if (op.isInplace()) {
Expand All @@ -163,7 +163,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -194,7 +194,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBCompLongLongMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -136,7 +136,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBCompLongLongMatrix res;
if (op.isInplace()) {
Expand All @@ -163,7 +163,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -195,7 +195,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBIntDoubleMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -125,7 +125,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBIntDoubleMatrix res;
if (op.isInplace()) {
Expand All @@ -152,7 +152,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -183,7 +183,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBIntFloatMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -125,7 +125,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBIntFloatMatrix res;
if (op.isInplace()) {
Expand All @@ -152,7 +152,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -183,7 +183,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public Vector dot(Vector other) {
}

@Override
public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
public RowBasedMatrix calculate(int rowId, Vector other, Binary op) {
assert other != null;
RBIntIntMatrix res;
if (op.isInplace()) {
Expand Down Expand Up @@ -125,7 +125,7 @@ public RowBasedMatrix calulate(int rowId, Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Vector other, Binary op) {
public RowBasedMatrix calculate(Vector other, Binary op) {
assert other != null;
RBIntIntMatrix res;
if (op.isInplace()) {
Expand All @@ -152,7 +152,7 @@ public RowBasedMatrix calulate(Vector other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Matrix other, Binary op) {
public RowBasedMatrix calculate(Matrix other, Binary op) {
assert other instanceof RowBasedMatrix;

if (op.isInplace()) {
Expand Down Expand Up @@ -183,7 +183,7 @@ public RowBasedMatrix calulate(Matrix other, Binary op) {
}

@Override
public RowBasedMatrix calulate(Unary op) {
public RowBasedMatrix calculate(Unary op) {
if (op.isInplace()) {
for (Vector vec : rows) {
UnaryExecutor.apply(vec, op);
Expand Down
Loading